Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / sysv / linux / pselect.c
blobb4e77c16aa7434b61a972648376fa7926321f74f
1 /* Copyright (C) 2006-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2006.
5 The GNU C Library is free software; you can redistribute it and/or
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.
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
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <signal.h>
21 #include <time.h>
22 #include <sys/poll.h>
23 #include <kernel-features.h>
24 #include <sysdep-cancel.h>
27 #ifdef __NR_pselect6
28 # ifndef __ASSUME_PSELECT
29 static int __generic_pselect (int nfds, fd_set *readfds, fd_set *writefds,
30 fd_set *exceptfds,
31 const struct timespec *timeout,
32 const sigset_t *sigmask);
33 # endif
36 int
37 __pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
38 const struct timespec *timeout, const sigset_t *sigmask)
40 /* The Linux kernel can in some situations update the timeout value.
41 We do not want that so use a local variable. */
42 struct timespec tval;
43 if (timeout != NULL)
45 tval = *timeout;
46 timeout = &tval;
49 /* Note: the system call expects 7 values but on most architectures
50 we can only pass in 6 directly. If there is an architecture with
51 support for more parameters a new version of this file needs to
52 be created. */
53 struct
55 __syscall_ulong_t ss;
56 __syscall_ulong_t ss_len;
57 } data;
59 data.ss = (__syscall_ulong_t) (uintptr_t) sigmask;
60 data.ss_len = _NSIG / 8;
62 int result;
64 #ifndef CALL_PSELECT6
65 # define CALL_PSELECT6(nfds, readfds, writefds, exceptfds, timeout, data) \
66 INLINE_SYSCALL (pselect6, 6, nfds, readfds, writefds, exceptfds, \
67 timeout, data)
68 #endif
70 if (SINGLE_THREAD_P)
71 result = CALL_PSELECT6 (nfds, readfds, writefds, exceptfds, timeout,
72 &data);
73 else
75 int oldtype = LIBC_CANCEL_ASYNC ();
77 result = CALL_PSELECT6 (nfds, readfds, writefds, exceptfds, timeout,
78 &data);
80 LIBC_CANCEL_RESET (oldtype);
83 # ifndef __ASSUME_PSELECT
84 if (result == -1 && errno == ENOSYS)
85 result = __generic_pselect (nfds, readfds, writefds, exceptfds, timeout,
86 sigmask);
87 # endif
89 return result;
91 weak_alias (__pselect, pselect)
92 strong_alias (__pselect, __libc_pselect)
94 # ifndef __ASSUME_PSELECT
95 # define __pselect static __generic_pselect
96 # endif
97 #endif
99 #ifndef __ASSUME_PSELECT
100 # include <misc/pselect.c>
101 #endif