diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-18 13:36:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-18 13:36:59 +0000 |
commit | 52cda95831cdc685d74b99334a06fb1f69996dc4 (patch) | |
tree | 85dcdd0eaab16014fb605b707ea93746f277bb79 /linuxthreads/manager.c | |
parent | 80a18298f02005310cf0edc6163ae5eff5fad09a (diff) | |
download | glibc-52cda95831cdc685d74b99334a06fb1f69996dc4.tar.gz glibc-52cda95831cdc685d74b99334a06fb1f69996dc4.tar.xz glibc-52cda95831cdc685d74b99334a06fb1f69996dc4.zip |
Update.
1998-03-16 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * manager.c (__pthread_manager): Reduce first argument to select to include just the needed file descriptor.
Diffstat (limited to 'linuxthreads/manager.c')
-rw-r--r-- | linuxthreads/manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c index 7fe4d468f6..8844decab7 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -99,7 +99,7 @@ int __pthread_manager(void *arg) FD_SET(reqfd, &readfds); timeout.tv_sec = 2; timeout.tv_usec = 0; - n = __select(FD_SETSIZE, &readfds, NULL, NULL, &timeout); + n = __select(reqfd + 1, &readfds, NULL, NULL, &timeout); /* Check for termination of the main thread */ if (getppid() == 1) { |