* thread.cc (pthread::init_mainthread): Initialize thread mutex to
type PTHREAD_MUTEX_RECURSIVE, just as for any other thread.
This commit is contained in:
@ -358,6 +358,10 @@ pthread::init_mainthread ()
|
||||
if (!thread->create_cancel_event ())
|
||||
api_fatal ("couldn't create cancel event for main thread");
|
||||
VerifyHandle (thread->win32_obj_id);
|
||||
/* Make sure the pthread mutex is recursive. See comment in
|
||||
pthread::precreate (called only for subsequent pthreads)
|
||||
for a description. */
|
||||
thread->mutex.set_type (PTHREAD_MUTEX_RECURSIVE);
|
||||
thread->postcreate ();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user