diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2014-07-21 16:32:09 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2014-07-21 16:32:09 +0000 |
commit | 3be2cd04054844e63d05ace2f31b90f8c76ff925 (patch) | |
tree | 156c2197396905cb909d798a9824bbcfa4929009 /winsup/cygwin/thread.cc | |
parent | 7cc124b0e5cefbe90e23a4477ce99c70adb6ce8d (diff) | |
download | cygnal-3be2cd04054844e63d05ace2f31b90f8c76ff925.tar.gz cygnal-3be2cd04054844e63d05ace2f31b90f8c76ff925.tar.bz2 cygnal-3be2cd04054844e63d05ace2f31b90f8c76ff925.zip |
* thread.cc (pthread::init_mainthread): Initialize thread mutex to
type PTHREAD_MUTEX_RECURSIVE, just as for any other thread.
Diffstat (limited to 'winsup/cygwin/thread.cc')
-rw-r--r-- | winsup/cygwin/thread.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc index fc70c3752..dc4faac7c 100644 --- a/winsup/cygwin/thread.cc +++ b/winsup/cygwin/thread.cc @@ -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 (); } |