You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depending on the pthread implementation, the thread:alive() method may not work.
Existing implementations vary on the result of a pthread_kill() with a thread ID indicating an inactive thread (a terminated thread that has not been detached or joined). Some indicate success on such a call, while others give an error of [ESRCH].
The glibc seems to return success since 2.34
The text was updated successfully, but these errors were encountered:
Depending on the pthread implementation, the
thread:alive()
method may not work.The glibc seems to return success since 2.34
The text was updated successfully, but these errors were encountered: