diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-25 08:29:56 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-25 08:29:56 (GMT) |
commit | 69fbd6c489ee246d40067e6a6394419ecb9a6b07 (patch) | |
tree | 4193949102fcd09226fa65f46f26d36b6da1b01f | |
parent | 420d55eddd9dfa6bfce1d6977a83e8f97ff4a8e7 (diff) | |
download | tcl-69fbd6c489ee246d40067e6a6394419ecb9a6b07.zip tcl-69fbd6c489ee246d40067e6a6394419ecb9a6b07.tar.gz tcl-69fbd6c489ee246d40067e6a6394419ecb9a6b07.tar.bz2 |
Make sure that the notifierMutex and notifierCV in a forked child cannot block anything, even though the initialization of the Notifier Thread in the parent is not finished yet.
-rw-r--r-- | unix/tclUnixNotfy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index f414c3f..ec721ca 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.c @@ -1335,6 +1335,8 @@ AtForkParent(void) static void AtForkChild(void) { + notifierMutex = NULL; + notifierCV = NULL; Tcl_InitNotifier(); } #endif /* HAVE_PTHREAD_ATFORK */ |