aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/manager.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-05-01 14:14:28 +0000
committerUlrich Drepper <drepper@redhat.com>1998-05-01 14:14:28 +0000
commitf9119f49a610d9bcec19c607c19d33b4148a7a0f (patch)
tree2b56b86e0fcbd2e488d46d7f483ee2653ee23578 /linuxthreads/manager.c
parent52ec8aabc38887cf701ca0c77837c48571351533 (diff)
downloadglibc-f9119f49a610d9bcec19c607c19d33b4148a7a0f.tar
glibc-f9119f49a610d9bcec19c607c19d33b4148a7a0f.tar.gz
glibc-f9119f49a610d9bcec19c607c19d33b4148a7a0f.tar.bz2
glibc-f9119f49a610d9bcec19c607c19d33b4148a7a0f.zip
Update.
1998-05-01 Ulrich Drepper <drepper@cygnus.com> * manager.c (pthread_free): Unmap guard before the stack. Patch by Matthias Urlichs.
Diffstat (limited to 'linuxthreads/manager.c')
-rw-r--r--linuxthreads/manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c
index 81674399a1..e7de399cde 100644
--- a/linuxthreads/manager.c
+++ b/linuxthreads/manager.c
@@ -336,9 +336,9 @@ static void pthread_free(pthread_descr th)
if (!th->p_userstack)
{
/* Free the stack and thread descriptor area */
- munmap((caddr_t) ((char *)(th+1) - STACK_SIZE), STACK_SIZE);
if (th->p_guardsize != 0)
munmap(th->p_guardaddr, th->p_guardsize);
+ munmap((caddr_t) ((char *)(th+1) - STACK_SIZE), STACK_SIZE);
}
}