1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
\name{signals}
\alias{signals}
\alias{SIGALRM}
\alias{SIGCHLD}
\alias{SIGHUP}
\alias{SIGINFO}
\alias{SIGINT}
\alias{SIGKILL}
\alias{SIGQUIT}
\alias{SIGSTOP}
\alias{SIGTERM}
\alias{SIGUSR1}
\alias{SIGUSR2}
\title{
Signal constants (subset)
}
\description{
\code{SIGALRM} alarm clock
\code{SIGCHLD} to parent on child stop or exit
\code{SIGHUP} hangup
\code{SIGINFO} information request
\code{SIGINT} interrupt
\code{SIGKILL} kill (cannot be caught or ignored)
\code{SIGQUIT} quit
\code{SIGSTOP} sendable stop signal not from tty
\code{SIGTERM} software termination signal from kill
\code{SIGUSR1} user defined signal 1
\code{SIGUSR2} user defined signal 2
}
\details{
See \code{man signal} in your OS for details. The above codes can be
used in conjunction with the \code{\link{kill}} function to send
signals to processes.
}
\seealso{
\code{\link{kill}}
}
\author{Simon Urbanek}
\keyword{interface}
|