Mono.Unix.Native.Stdlib.signal Method
Register a handler for a given signal.

Syntax

[System.CLSCompliant(false)]
[System.Obsolete("This is not safe; use Mono.Unix.UnixSignal for signal delivery or SetSignalAction()")]
public static SignalHandler signal (Signum signum, SignalHandler handler)

See Also

Stdlib.SetSignalAction
Mono.Unix.UnixSignal

Parameters

signum
The signal to handle.
handler
The handler to invoke when the process receives a signum signal.

Returns

The previous value of the signal handler, or Stdlib.SIG_ERR on error and Stdlib.GetLastError indicates the error.

Usage

The following errors are specified:

ErrorDetails
Errno.EINVAL The signum argument is not a valid signal number.
Errno.EINVAL An attempt is made to ignore or supply a handler for Signum.SIGKILL or Signum.SIGSTOP.

Remarks

Note:

This method should not be used in new code, as the Platform Invoke mechanism is not signal-safe, yet the Platform Invoke mechanism is required for unmanaged code to invoke managed code.

New code should use the replacement method Stdlib.SetSignalAction or the type Mono.Unix.UnixSignal.

This signal() facility is a simplified interface to the more general Syscall.sigaction(2) facility.

Signals allow the manipulation of a process from outside its domain as well as allowing the process to manipulate itself or copies of itself (children). There are two general types of signals: those that cause termination of a process and those that do not. Signals which cause termination of a program might result from an irrecoverable error or might be the result of a user at a terminal typing the 'interrupt' character. Signals are used when a process is stopped because it wishes to access its control terminal while in the background (see tty(4)). Signals are optionally generated when a process resumes after being stopped, when the status of child processes changes, or when input is ready at the control terminal. Most signals result in the termination of the process receiving them if no action is taken; some signals instead cause the process receiving them to be stopped, or are simply discarded if the process has not requested otherwise. Except for the Signum.SIGKILL and Signum.SIGSTOP signals, the signal() function allows for a signal to be caught, to be ignored, or to generate an interrupt.

The sig argument specifies which signal was received. The func procedure allows a user to choose the action upon receipt of a signal. To set the default action of the signal to occur as listed above, func should be Stdlib.SIG_DFL. A Stdlib.SIG_DFL resets the default action. To ignore the signal func should be Stdlib.SIG_IGN. This will cause subsequent instances of the signal to be ignored and pending instances to be discarded. If Stdlib.SIG_IGN is not used, further occurrences of the signal are automatically blocked and func is called.

The handled signal is unblocked when the function returns and the process continues from where it left off when the signal occurred.

For some system calls, if a signal is caught while the call is executing and the call is prematurely terminated, the call is automatically restarted. (The handler is installed using the SA_RESTART flag with Syscall.sigaction(2).) The affected system calls include Syscall.read(2), Syscall.write(2), Syscall.sendto(2), Syscall.recvfrom(2), Syscall.sendmsg(2) and Syscall.recvmsg(2) on a communications channel or a low speed device and during a Syscall.ioctl(2) or Syscall.wait(2). However, calls that have already committed are not restarted, but instead return a partial success (for example, a short read count). These semantics could be changed with Syscall.siginterrupt(3)

When a process which has installed signal handlers forks, the child process inherits the signals. All caught signals may be reset to their default action by a call to the Syscall.execve(2) function; ignored signals remain ignored.

If a process explicitly specifies Stdlib.SIG_IGN as the action for the signal Stdlib.SIGCHLD, the system will not create zombie processes when children of the calling process exit. As a consequence, the system will discard the exit status from the child processes. If the calling process subsequently issues a call to Syscall.wait(2) or equivalent, it will block until all of the calling process's children terminate, and then return a value of -1 with Stdlib.GetLastError returning Errno.ECHILD.

Requirements

Namespace: Mono.Unix.Native
Assembly: Mono.Posix (in Mono.Posix.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0