Include sysdep-cancel.h again. Add LIBC_CANCEL_HANDLED ().

This commit is contained in:
Ulrich Drepper 2006-01-19 15:52:01 +00:00
parent 814ef022c6
commit 93c04024a6
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,7 @@
2006-01-19 Jakub Jelinek <jakub@redhat.com>
* misc/pselect.c (__pselect): Remove static.
Include sysdep-cancel.h again. Add LIBC_CANCEL_HANDLED ().
2006-01-18 Roland McGrath <roland@redhat.com>

View File

@ -22,6 +22,7 @@
#include <stddef.h> /* For NULL. */
#include <sys/time.h>
#include <sys/select.h>
#include <sysdep-cancel.h>
/* Check the first NFDS descriptors each in READFDS (if not NULL) for read
@ -63,3 +64,5 @@ __pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
}
weak_alias (__pselect, pselect)
strong_alias (__pselect, __libc_pselect)
/* __select handles cancellation. */
LIBC_CANCEL_HANDLED ();