man-pages/man2/sigwaitinfo.2

185 lines
5.0 KiB
Groff
Raw Normal View History

2007-10-22 06:55:51 +00:00
.\" Copyright (c) 2002 Michael Kerrisk <mtk.manpages@gmail.com>
2004-11-03 13:51:07 +00:00
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
2004-11-03 13:51:07 +00:00
.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.TH SIGWAITINFO 2 2008-10-04 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
sigwaitinfo, sigtimedwait \- synchronously wait for queued signals
.SH SYNOPSIS
.nf
2004-11-03 13:51:07 +00:00
.B #include <signal.h>
.sp
.BI "int sigwaitinfo(const sigset_t *" set ", siginfo_t *" info ");"
.sp
.BI "int sigtimedwait(const sigset_t *" set ", siginfo_t *" info ", "
.BI " const struct timespec *" timeout ");"
.fi
.sp
.in -4n
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.in
.sp
.BR sigwaitinfo (),
.BR sigtimedwait ():
_POSIX_C_SOURCE\ >=\ 199309L
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
.BR sigwaitinfo ()
suspends execution of the calling thread until one of the signals in
2004-11-03 13:51:07 +00:00
.I set
is delivered.
(If one of the signals in
.I set
is already pending for the calling thread,
2004-11-03 13:51:07 +00:00
.BR sigwaitinfo ()
will return immediately with information about that signal.)
.BR sigwaitinfo ()
removes the delivered signal from the set of pending
2004-11-03 13:51:07 +00:00
signals and returns the signal number as its function result.
If the
.I info
2005-11-02 13:55:25 +00:00
argument is not NULL,
2004-11-03 13:51:07 +00:00
then it returns a structure of type
.I siginfo_t
(see
.BR sigaction (2))
containing information about the signal.
.PP
Signals returned via
.BR sigwaitinfo ()
are delivered in the usual order; see
.BR signal (7)
for further details.
.PP
.BR sigtimedwait ()
operates in exactly the same way as
.BR sigwaitinfo ()
except that it has an additional argument,
.IR timeout ,
which enables an upper bound to be placed on the time for which
the thread is suspended.
2004-11-03 13:51:07 +00:00
This argument is of the following type:
.sp
.in +4n
2004-11-03 13:51:07 +00:00
.nf
struct timespec {
long tv_sec; /* seconds */
long tv_nsec; /* nanoseconds */
}
.fi
.in
2004-11-03 13:51:07 +00:00
.sp
If both fields of this structure are specified as 0, a poll is performed:
.BR sigtimedwait ()
returns immediately, either with information about a signal that
was pending for the caller, or with an error
if none of the signals in
.I set
was pending.
.SH "RETURN VALUE"
On success, both
.BR sigwaitinfo ()
and
.BR sigtimedwait ()
return a signal number (i.e., a value greater than zero).
On failure both calls return \-1, with
.I errno
set to indicate the error.
.SH ERRORS
.TP
.B EAGAIN
No signal in
.I set
was delivered within the
.I timeout
period specified to
.BR sigtimedwait ().
.TP
.B EINTR
The wait was interrupted by a signal handler; see
.BR signal (7).
2004-11-03 13:51:07 +00:00
(This handler was for a signal other than one of those in
.IR set .)
.TP
.B EINVAL
.I timeout
was invalid.
2007-05-18 16:30:46 +00:00
.SH "CONFORMING TO"
POSIX.1-2001.
2004-11-03 13:51:07 +00:00
.SH NOTES
In normal usage, the calling program blocks the signals in
2004-11-03 13:51:07 +00:00
.I set
via a prior call to
.BR sigprocmask (2)
2004-11-03 13:51:07 +00:00
(so that the default disposition for these signals does not occur if they
are delivered between successive calls to
.BR sigwaitinfo ()
2005-10-19 16:30:05 +00:00
or
2005-10-19 14:54:31 +00:00
.BR sigtimedwait ())
2004-11-03 13:51:07 +00:00
and does not establish handlers for these signals.
In a multithreaded program,
the signal should be blocked in all threads to prevent
the signal being delivered to a thread other than the one calling
.BR sigwaitinfo ()
or
.BR sigtimedwait ()).
The set of signals that is pending for a given thread is the
union of the set of signals that is pending specifically for that thread
and the set of signals that is pending for the process as a whole (see
.BR signal (7)).
If multiple threads of a process are blocked
waiting for the same signal(s) in
.BR sigwaitinfo ()
or
.BR sigtimedwait (),
then exactly one of the threads will actually receive the
signal if it is delivered to the process as a whole;
which of the threads receives the signal is indeterminate.
2005-11-02 13:55:25 +00:00
POSIX leaves the meaning of a NULL value for the
2004-11-03 13:51:07 +00:00
.I timeout
argument of
.BR sigtimedwait ()
unspecified, permitting the possibility that this has the same meaning
as a call to
.BR sigwaitinfo (),
and indeed this is what is done on Linux.
On Linux,
.BR sigwaitinfo ()
is a library function implemented on top of
.BR sigtimedwait ().
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR kill (2),
.BR sigaction (2),
.BR signal (2),
.BR signalfd (2),
2004-11-03 13:51:07 +00:00
.BR sigpending (2),
.BR sigprocmask (2),
.BR sigqueue (3),
2004-11-03 13:51:07 +00:00
.BR sigsetops (3),
2008-07-02 13:30:54 +00:00
.BR sigwait (3),
2008-06-23 08:48:25 +00:00
.BR signal (7),
.BR time (7)