|
NAMEsigqueue —
queue a signal to a process (REALTIME)
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <signal.h>
int
DESCRIPTIONThesigqueue () system call causes the signal specified
by signo to be sent with the value specified by
value to the process specified by
pid. If signo is zero (the null
signal), error checking is performed but no signal is actually sent. The null
signal can be used to check the validity of PID.
The conditions required for a process to have permission to queue
a signal to another process are the same as for the
kill(2)
system call. The The If the value of pid causes
signo to be generated for the sending process, and if
signo is not blocked for the calling thread and if no
other thread has signo unblocked or is waiting in a
RETURN VALUESUpon successful completion, the value 0 is returned; otherwise the value -1 is returned and the global variable errno is set to indicate the error.ERRORSThesigqueue () system call will fail if:
SEE ALSOkill(2), sigaction(2), sigpending(2), sigsuspend(2), sigtimedwait(2), sigwait(2), sigwaitinfo(2), pause(3), pthread_sigmask(3), siginfo(3)STANDARDSThesigqueue () system call conforms to
IEEE Std 1003.1-2004 (“POSIX.1”).
HISTORYSupport for POSIX realtime signal queue first appeared in FreeBSD 7.0.CAVEATSWhen usingsigqueue to send signals to a process which
might have a different ABI (for instance, one is 32-bit and the other 64-bit),
the sival_int member of value can
be delivered reliably, but the sival_ptr may be
truncated in endian dependent ways and must not be relied on. Further, many
pointer integrity schemes disallow sending pointers to other processes, and
this technique should not be used in programs intended to be portable.
Visit the GSP FreeBSD Man Page Interface. |