On Posix systems, ProcessSignal is used to send a specific signal
to a child process, see Process.kill.
Some ProcessSignals can also be watched, as a way to intercept the default signal handler and implement another. See ProcessSignal.watch for more information.
Constants
- SIGABRT → ProcessSignal
-
const
const ProcessSignal._(6, "SIGABRT") - SIGALRM → ProcessSignal
-
const
const ProcessSignal._(14, "SIGALRM") - SIGBUS → ProcessSignal
-
const
const ProcessSignal._(7, "SIGBUS") - SIGCHLD → ProcessSignal
-
const
const ProcessSignal._(17, "SIGCHLD") - SIGCONT → ProcessSignal
-
const
const ProcessSignal._(18, "SIGCONT") - SIGFPE → ProcessSignal
-
const
const ProcessSignal._(8, "SIGFPE") - SIGHUP → ProcessSignal
-
const
const ProcessSignal._(1, "SIGHUP") - SIGILL → ProcessSignal
-
const
const ProcessSignal._(4, "SIGILL") - SIGINT → ProcessSignal
-
const
const ProcessSignal._(2, "SIGINT") - SIGKILL → ProcessSignal
-
const
const ProcessSignal._(9, "SIGKILL") - SIGPIPE → ProcessSignal
-
const
const ProcessSignal._(13, "SIGPIPE") - SIGPOLL → ProcessSignal
-
const
const ProcessSignal._(29, "SIGPOLL") - SIGPROF → ProcessSignal
-
const
const ProcessSignal._(27, "SIGPROF") - SIGQUIT → ProcessSignal
-
const
const ProcessSignal._(3, "SIGQUIT") - SIGSEGV → ProcessSignal
-
const
const ProcessSignal._(11, "SIGSEGV") - SIGSTOP → ProcessSignal
-
const
const ProcessSignal._(19, "SIGSTOP") - SIGSYS → ProcessSignal
-
const
const ProcessSignal._(31, "SIGSYS") - SIGTERM → ProcessSignal
-
const
const ProcessSignal._(15, "SIGTERM") - SIGTRAP → ProcessSignal
-
const
const ProcessSignal._(5, "SIGTRAP") - SIGTSTP → ProcessSignal
-
const
const ProcessSignal._(20, "SIGTSTP") - SIGTTIN → ProcessSignal
-
const
const ProcessSignal._(21, "SIGTTIN") - SIGTTOU → ProcessSignal
-
const
const ProcessSignal._(22, "SIGTTOU") - SIGURG → ProcessSignal
-
const
const ProcessSignal._(23, "SIGURG") - SIGUSR1 → ProcessSignal
-
const
const ProcessSignal._(10, "SIGUSR1") - SIGUSR2 → ProcessSignal
-
const
const ProcessSignal._(12, "SIGUSR2") - SIGVTALRM → ProcessSignal
-
const
const ProcessSignal._(26, "SIGVTALRM") - SIGWINCH → ProcessSignal
-
const
const ProcessSignal._(28, "SIGWINCH") - SIGXCPU → ProcessSignal
-
const
const ProcessSignal._(24, "SIGXCPU") - SIGXFSZ → ProcessSignal
-
const
const ProcessSignal._(25, "SIGXFSZ")
Properties
- hashCode → int
-
Get a hash code for this object.…
read-only, inherited - runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Operators
-
operator ==(
other) → bool -
The equality operator.…
inherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.…
inherited -
toString(
) → String -
Returns a string representation of this object.
-
watch(
) → Stream<ProcessSignal> -
Watch for process signals.…