aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/manager.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-04-25 04:28:38 +0000
committerUlrich Drepper <drepper@redhat.com>2000-04-25 04:28:38 +0000
commit9bf4d6404e8f73c86ec4391fad107840a2e6341d (patch)
tree0c27e5e3c604c7d98279f72d79f68aea737dacff /linuxthreads/manager.c
parent4ded1f08748b8eb690aeff67ad4f4c4302995d30 (diff)
downloadglibc-9bf4d6404e8f73c86ec4391fad107840a2e6341d.zip
glibc-9bf4d6404e8f73c86ec4391fad107840a2e6341d.tar.gz
glibc-9bf4d6404e8f73c86ec4391fad107840a2e6341d.tar.bz2
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c
index 5d7014a..33c791c 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--;