* lib/pselect.c (pselect): Use plain name, without "rpl_".
[gnulib.git] / lib / pselect.c
1 /* pselect - synchronous I/O multiplexing
2
3    Copyright 2011 Free Software Foundation, Inc.
4
5    This file is part of gnulib.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License along
18    with this program; if not, write to the Free Software Foundation,
19    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
20
21 /* written by Paul Eggert */
22
23 #include <config.h>
24
25 #include <sys/select.h>
26
27 #include <errno.h>
28 #include <signal.h>
29
30 /* Examine the size-NFDS file descriptor sets in RFDS, WFDS, and XFDS
31    to see whether some of their descriptors are ready for reading,
32    ready for writing, or have exceptions pending.  Wait for at most
33    TIMEOUT seconds, and use signal mask SIGMASK while waiting.  A null
34    pointer parameter stands for no descriptors, an infinite timeout,
35    or an unaffected signal mask.  */
36
37 int
38 pselect (int nfds, fd_set *restrict rfds,
39          fd_set *restrict wfds, fd_set *restrict xfds,
40          struct timespec const *restrict timeout,
41          sigset_t const *restrict sigmask)
42 {
43   int select_result;
44   sigset_t origmask;
45   struct timeval tv, *tvp;
46
47   if (timeout)
48     {
49       if (! (0 <= timeout->tv_nsec && timeout->tv_nsec < 1000000000))
50         {
51           errno = EINVAL;
52           return -1;
53         }
54
55       tv.tv_sec = timeout->tv_sec;
56       tv.tv_usec = (timeout->tv_nsec + 999) / 1000;
57       tvp = &tv;
58     }
59   else
60     tvp = NULL;
61
62   /* Signal mask munging should be atomic, but this is the best we can
63      do in this emulation.  */
64   if (sigmask)
65     sigprocmask (SIG_SETMASK, sigmask, &origmask);
66
67   select_result = select (nfds, rfds, wfds, xfds, tvp);
68
69   if (sigmask)
70     {
71       int select_errno = errno;
72       sigprocmask (SIG_SETMASK, &origmask, NULL);
73       errno = select_errno;
74     }
75
76   return select_result;
77 }