]> git.ipfire.org Git - thirdparty/glibc.git/blame - misc/pselect.c
Use <> for include of kernel-features.h.
[thirdparty/glibc.git] / misc / pselect.c
CommitLineData
68a3f91f 1/* Copyright (C) 1996-1998,2001-2003,2006,2011 Free Software Foundation, Inc.
478b92f0
UD
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
503054c0 4
478b92f0 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
503054c0 9
478b92f0
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
503054c0 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
503054c0
RM
19
20#include <errno.h>
cb0509a8 21#include <signal.h>
8be918b7 22#include <stddef.h> /* For NULL. */
842907c6 23#include <sys/time.h>
503054c0 24#include <sys/select.h>
93c04024 25#include <sysdep-cancel.h>
b59b200e 26
503054c0
RM
27
28/* Check the first NFDS descriptors each in READFDS (if not NULL) for read
29 readiness, in WRITEFDS (if not NULL) for write readiness, and in EXCEPTFDS
30 (if not NULL) for exceptional conditions. If TIMEOUT is not NULL, time out
cb0509a8
UD
31 after waiting the interval specified therein. Additionally set the sigmask
32 SIGMASK for this call. Returns the number of ready descriptors, or -1 for
33 errors. */
814ef022 34int
b59b200e
UD
35__pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
36 const struct timespec *timeout, const sigset_t *sigmask)
503054c0
RM
37{
38 struct timeval tval;
39 int retval;
cb0509a8 40 sigset_t savemask;
503054c0 41
db7ffaa3 42 /* Change nanosecond number to microseconds. This might mean losing
503054c0
RM
43 precision and therefore the `pselect` should be available. But
44 for now it is hardly found. */
45 if (timeout != NULL)
68a3f91f
UD
46 {
47 /* Catch bugs which would be hidden by the TIMESPEC_TO_TIMEVAL
48 computations. The division by 1000 truncates values. */
49 if (__builtin_expect (timeout->tv_nsec < 0, 0))
50 {
51 __set_errno (EINVAL);
52 return -1;
53 }
54
55 TIMESPEC_TO_TIMEVAL (&tval, timeout);
56 }
503054c0 57
cb0509a8
UD
58 /* The setting and restoring of the signal mask and the select call
59 should be an atomic operation. This can't be done without kernel
60 help. */
db7ffaa3
UD
61 if (sigmask != NULL)
62 __sigprocmask (SIG_SETMASK, sigmask, &savemask);
63
7a114794
UD
64 /* Note the pselect() is a cancellation point. But since we call
65 select() which itself is a cancellation point we do not have
66 to do anything here. */
503054c0
RM
67 retval = __select (nfds, readfds, writefds, exceptfds,
68 timeout != NULL ? &tval : NULL);
db7ffaa3
UD
69
70 if (sigmask != NULL)
71 __sigprocmask (SIG_SETMASK, &savemask, NULL);
503054c0
RM
72
73 return retval;
74}
7c65e900 75#ifndef __pselect
503054c0 76weak_alias (__pselect, pselect)
e5e45b53 77strong_alias (__pselect, __libc_pselect)
93c04024
UD
78/* __select handles cancellation. */
79LIBC_CANCEL_HANDLED ();
7c65e900 80#endif