diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-25 04:28:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-25 04:28:38 +0000 |
commit | 9bf4d6404e8f73c86ec4391fad107840a2e6341d (patch) | |
tree | 0c27e5e3c604c7d98279f72d79f68aea737dacff /linuxthreads/manager.c | |
parent | 4ded1f08748b8eb690aeff67ad4f4c4302995d30 (diff) | |
download | glibc-9bf4d6404e8f73c86ec4391fad107840a2e6341d.tar.gz glibc-9bf4d6404e8f73c86ec4391fad107840a2e6341d.tar.xz glibc-9bf4d6404e8f73c86ec4391fad107840a2e6341d.zip |
Update.
2000-04-24 Ulrich Drepper <drepper@redhat.com> * manager.c (pthread_free): Use FREE_THREAD not FREE_THREAD_SELF. * sysdeps/i386/useldt.h: Use "q" constraint instead of "r" where necessary. * sysdeps/i386/i686/pt-machine.h: Include "../useldt.h".
Diffstat (limited to 'linuxthreads/manager.c')
-rw-r--r-- | linuxthreads/manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c index 5d7014ab72..33c791cdbb 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -510,8 +510,8 @@ static void pthread_free(pthread_descr th) handle->h_descr = NULL; handle->h_bottom = (char *)(-1L); __pthread_spin_unlock(&handle->h_lock); -#ifdef FREE_THREAD_SELF - FREE_THREAD_SELF(th, th->p_nr); +#ifdef FREE_THREAD + FREE_THREAD(th, th->p_nr); #endif /* One fewer threads in __pthread_handles */ __pthread_handles_num--; |