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
std::thread's ctor allocates a __thread_struct, and stuffs it in a thread local variable. std::notify_all_at_thread_exit tries to use that __thread_struct.
If a thread is created with pthread_create instead of std::thread, then the __thread_struct never gets allocated, and std::notify_all_at_thread_exit seg faults.
The text was updated successfully, but these errors were encountered:
Extended Description
std::thread's ctor allocates a __thread_struct, and stuffs it in a thread local variable. std::notify_all_at_thread_exit tries to use that __thread_struct.
If a thread is created with pthread_create instead of std::thread, then the __thread_struct never gets allocated, and std::notify_all_at_thread_exit seg faults.
The text was updated successfully, but these errors were encountered: