diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-05-18 13:04:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-05-18 13:04:17 +0000 |
commit | 2acd8fcfc4b8c76f34a304087c7a539102eddb6b (patch) | |
tree | 7d912631f862a2637b1f148f6d737f43a5839d43 /linuxthreads | |
parent | 37206c3adce3faf72869d34ca5605e4e16ebb007 (diff) | |
download | glibc-2acd8fcfc4b8c76f34a304087c7a539102eddb6b.tar.gz glibc-2acd8fcfc4b8c76f34a304087c7a539102eddb6b.tar.xz glibc-2acd8fcfc4b8c76f34a304087c7a539102eddb6b.zip |
Update.
1999-05-18 Thorsten Kukuk <kukuk@suse.de> * nis/nis_lookup.c (nis_lookup): If we run out of memory, close RPC connection.
Diffstat (limited to 'linuxthreads')
-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 eee4b5c1e1..f390aa13e8 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -193,7 +193,7 @@ static int pthread_start_thread(void *arg) __sched_setscheduler(THREAD_GETMEM(self, p_pid), THREAD_GETMEM(self, p_start_args.schedpolicy), &self->p_start_args.schedparam); -else if (__pthread_manager_thread.p_priority > 0) + else if (__pthread_manager_thread.p_priority > 0) /* Default scheduling required, but thread manager runs in realtime scheduling: switch new thread to SCHED_OTHER policy */ { |