diff options
Diffstat (limited to 'nptl/pthread_join.c')
-rw-r--r-- | nptl/pthread_join.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/pthread_join.c b/nptl/pthread_join.c index 3523b20fe5..c7ff5a393b 100644 --- a/nptl/pthread_join.c +++ b/nptl/pthread_join.c @@ -21,6 +21,7 @@ int __pthread_join (pthread_t threadid, void **thread_return) { - return __pthread_timedjoin_ex (threadid, thread_return, NULL, true); + return __pthread_clockjoin_ex (threadid, thread_return, 0 /* Ignored */, + NULL, true); } weak_alias (__pthread_join, pthread_join) |