htl: Fix making pthread_join check timeout value

This commit is contained in:
Samuel Thibault 2025-01-07 01:02:20 +01:00
parent 15b7a675bd
commit 7bc54f0965
1 changed files with 7 additions and 1 deletions

View File

@ -49,12 +49,18 @@ __pthread_join_common (pthread_t thread, void **status, int try,
/* Rely on pthread_cond_wait being a cancellation point to make
pthread_join one too. */
while (pthread->state == PTHREAD_JOINABLE && err != ETIMEDOUT)
while (pthread->state == PTHREAD_JOINABLE && err != ETIMEDOUT && err != EINVAL)
err = __pthread_cond_clockwait (&pthread->state_cond,
&pthread->state_lock,
clockid, abstime);
pthread_cleanup_pop (0);
if (err == EINVAL)
{
__pthread_mutex_unlock (&pthread->state_lock);
return err;
}
}
switch (pthread->state)