diff options
Diffstat (limited to 'libgo/go/os/exec.go')
-rw-r--r-- | libgo/go/os/exec.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libgo/go/os/exec.go b/libgo/go/os/exec.go index 6681acfd43bf..5aea3098b542 100644 --- a/libgo/go/os/exec.go +++ b/libgo/go/os/exec.go @@ -63,14 +63,6 @@ type Signal interface { Signal() // to distinguish from other Stringers } -// The only signal values guaranteed to be present on all systems -// are Interrupt (send the process an interrupt) and -// Kill (force the process to exit). -var ( - Interrupt Signal = syscall.SIGINT - Kill Signal = syscall.SIGKILL -) - // Getpid returns the process id of the caller. func Getpid() int { return syscall.Getpid() } |