1 /* Copyright (C) 2006 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 #include <kernel-features.h>
25 #include <sysdep-cancel.h>
29 static int __generic_pselect (int nfds
, fd_set
*readfds
, fd_set
*writefds
,
31 const struct timespec
*timeout
,
32 const sigset_t
*sigmask
);
36 __pselect (int nfds
, fd_set
*readfds
, fd_set
*writefds
, fd_set
*exceptfds
,
37 const struct timespec
*timeout
, const sigset_t
*sigmask
)
39 /* The Linux kernel can in some situations update the timeout value.
40 We do not want that so use a local variable. */
48 /* Note: the system call expects 7 values but on most architectures
49 we can only pass in 6 directly. If there is an architecture with
50 support for more parameters a new version of this file needs to
59 data
.ss_len
= _NSIG
/ 8;
64 # define CALL_PSELECT6(nfds, readfds, writefds, exceptfds, timeout, data) \
65 INLINE_SYSCALL (pselect6, 6, nfds, readfds, writefds, exceptfds, \
70 result
= CALL_PSELECT6 (nfds
, readfds
, writefds
, exceptfds
, timeout
,
74 int oldtype
= LIBC_CANCEL_ASYNC ();
76 result
= CALL_PSELECT6 (nfds
, readfds
, writefds
, exceptfds
, timeout
,
79 LIBC_CANCEL_RESET (oldtype
);
82 # ifndef __ASSUME_PSELECT
83 if (result
== -1 && errno
== ENOSYS
)
84 result
= __generic_pselect (nfds
, readfds
, writefds
, exceptfds
, timeout
,
90 weak_alias (__pselect
, pselect
)
91 strong_alias (__pselect
, __libc_pselect
)
93 # ifndef __ASSUME_PSELECT
94 # define __pselect static __generic_pselect
98 #ifndef __ASSUME_PSELECT
99 # include <misc/pselect.c>