diff options
Diffstat (limited to 'nptl/pthread_exit.c')
-rw-r--r-- | nptl/pthread_exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_exit.c b/nptl/pthread_exit.c index 5822a2e038..82065576a1 100644 --- a/nptl/pthread_exit.c +++ b/nptl/pthread_exit.c @@ -27,5 +27,5 @@ pthread_exit (value) { THREAD_SETMEM (THREAD_SELF, result, value); - __do_cancel (CURRENT_STACK_FRAME); + __do_cancel (); } |