The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

 NAME

sigqueue - queue a signal to a process (REALTIME)

 SYNOPSIS



#include <sys/types.h>
#include <signal.h>

int sigqueue(pid_t pid, int signo, const union sigval value);

 DESCRIPTION

The sigqueue() function 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() function.

The sigqueue() function returns immediately. If SA_SIGINFO is set for signo and if the resources were available to queue the signal, the signal is queued and sent to the receiving process. If SA_SIGINFO is not set for signo, then signo is sent at least once to the receiving process; it is unspecified whether value will be sent to the receiving process as a result of this call.

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 sigwait() function for signo, either signo or at least the pending, unblocked signal will be delivered to the calling thread before the sigqueue() function returns. Should any of multiple pending signals in the range SIGRTMIN to SIGRTMAX be selected for delivery, it will be the lowest numbered one. The selection order between realtime and non-realtime signals, or between multiple pending non-realtime signals, is unspecified.

 RETURN VALUE

Upon successful completion, the specified signal will have been queued, and the sigqueue() function returns a value of zero. Otherwise, the function returns a value of -1 and sets errno to indicate the error.

 ERRORS

The sigqueue() function will fail if:
[EAGAIN]
No resources available to queue the signal. The process has already queued SIGQUEUE_MAX signals that are still pending at the receiver(s), or a system-wide resource limit has been exceeded.
[EINVAL]
The value of the signo argument is an invalid or unsupported signal number.
[ENOSYS]
The function sigqueue() is not supported by this implementation.
[EPERM]
The process does not have the appropriate privilege to send the signal to the receiving process.
[ESRCH]
The process pid does not exist.

 EXAMPLES

None.

 APPLICATION USAGE

None.

 FUTURE DIRECTIONS

None.

 SEE ALSO

<signal.h>.

DERIVATION

Derived from the POSIX Realtime Extension (1003.1b-1993/1003.1i-1995) and the POSIX Threads Extension (1003.1c-1995)

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]