diff --git a/signal/signal_unix.go b/signal/signal_unix.go index 5d058fd..10f2009 100644 --- a/signal/signal_unix.go +++ b/signal/signal_unix.go @@ -16,6 +16,4 @@ const ( SIGWINCH = syscall.SIGWINCH // SIGPIPE is a signal sent to a process when a pipe is written to before the other end is open for reading SIGPIPE = syscall.SIGPIPE - // DefaultStopSignal is the syscall signal used to stop a container in unix systems. - DefaultStopSignal = "SIGTERM" ) diff --git a/signal/signal_windows.go b/signal/signal_windows.go index 1b4ba3d..cb459d1 100644 --- a/signal/signal_windows.go +++ b/signal/signal_windows.go @@ -12,8 +12,6 @@ const ( SIGCHLD = syscall.Signal(0xff) SIGWINCH = syscall.Signal(0xff) SIGPIPE = syscall.Signal(0xff) - // DefaultStopSignal is the syscall signal used to stop a container in windows systems. - DefaultStopSignal = "15" ) // SignalMap is a map of "supported" signals. As per the comment in GOLang's