parent
95503ec65a
commit
609bdf7079
@ -0,0 +1,22 @@
|
||||
//go:build windows
|
||||
// +build windows
|
||||
|
||||
package stario
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
func signal(sigtype rune) error {
|
||||
//todo: use win32api call signal
|
||||
switch sigtype {
|
||||
case 0x03:
|
||||
return errors.New("SIGNAL SIGINT RECIVED")
|
||||
case 0x1a:
|
||||
return errors.New("SIGNAL SIGSTOP RECIVED")
|
||||
case 0x1c:
|
||||
return errors.New("SIGNAL SIGQUIT RECIVED")
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
//go:build !windows
|
||||
// +build !windows
|
||||
|
||||
package stario
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"os"
|
||||
"syscall"
|
||||
)
|
||||
|
||||
func signal(sigtype rune) error {
|
||||
switch sigtype {
|
||||
case 0x03:
|
||||
syscall.Kill(os.Getpid(), syscall.SIGINT)
|
||||
return errors.New("SIGNAL SIGINT RECIVED")
|
||||
case 0x1a:
|
||||
syscall.Kill(os.Getpid(), syscall.SIGSTOP)
|
||||
return errors.New("SIGNAL SIGSTOP RECIVED")
|
||||
case 0x1c:
|
||||
syscall.Kill(os.Getpid(), syscall.SIGQUIT)
|
||||
return errors.New("SIGNAL SIGQUIT RECIVED")
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue