diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-08-23 23:25:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-08-23 23:25:34 +0000 |
commit | b4a09d83d1568672b94fe91b678194409983b824 (patch) | |
tree | 89e0bc03c51c7158e5222801600935456ac328d6 /libc/sysdeps/linux/common/pselect.c | |
parent | aabaf1b78632327a9549b6901074565f4c54d95b (diff) |
psm updates: add __libc symbols for signal cancellation
Diffstat (limited to 'libc/sysdeps/linux/common/pselect.c')
-rw-r--r-- | libc/sysdeps/linux/common/pselect.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/pselect.c b/libc/sysdeps/linux/common/pselect.c index 93a85a622..3a958fcfc 100644 --- a/libc/sysdeps/linux/common/pselect.c +++ b/libc/sysdeps/linux/common/pselect.c @@ -23,6 +23,8 @@ #include <sys/time.h> #include <sys/select.h> +extern __typeof(pselect) __libc_pselect; + libc_hidden_proto(sigprocmask) libc_hidden_proto(select) @@ -34,7 +36,7 @@ libc_hidden_proto(select) SIGMASK for this call. Returns the number of ready descriptors, or -1 for errors. */ int -pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, +__libc_pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timespec *timeout, const sigset_t *sigmask) { struct timeval tval; @@ -64,3 +66,4 @@ pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, return retval; } +weak_alias(__libc_pselect,pselect) |