diff options
Diffstat (limited to 'nptl/pthread_cancel.c')
-rw-r--r-- | nptl/pthread_cancel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_cancel.c b/nptl/pthread_cancel.c index 1fa20e087c..a189b6eac9 100644 --- a/nptl/pthread_cancel.c +++ b/nptl/pthread_cancel.c @@ -46,7 +46,7 @@ pthread_cancel (th) { /* The cancellation handler will take care of marking the thread as canceled. */ - pthread_kill (th, SIGCANCEL); + __pthread_kill (th, SIGCANCEL); break; } |