github.com/rsampaio/docker@v0.7.2-0.20150827203920-fdc73cc3fc31/pkg/signal/signal_unix.go (about)

     1  // +build !windows
     2  
     3  package signal
     4  
     5  import (
     6  	"syscall"
     7  )
     8  
     9  // Signals used in api/client (no windows equivalent, use
    10  // invalid signals so they don't get handled)
    11  
    12  // SIGCHLD is a signal sent to a process when a child process terminates, is interrupted, or resumes after being interrupted.
    13  const SIGCHLD = syscall.SIGCHLD
    14  
    15  // SIGWINCH is a signal sent to a process when its controlling terminal changes its size
    16  const SIGWINCH = syscall.SIGWINCH