aboutsummaryrefslogtreecommitdiff
path: root/nptl/thrd_join.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/thrd_join.c')
-rw-r--r--nptl/thrd_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/thrd_join.c b/nptl/thrd_join.c
index 497d0d2173..10d9a72cc8 100644
--- a/nptl/thrd_join.c
+++ b/nptl/thrd_join.c
@@ -22,7 +22,7 @@ int
thrd_join (thrd_t thr, int *res)
{
void *pthread_res;
- int err_code = __pthread_timedjoin_ex (thr, &pthread_res, NULL, true);
+ int err_code = __pthread_clockjoin_ex (thr, &pthread_res, 0, NULL, true);
if (res)
*res = (int) (uintptr_t) pthread_res;