diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-22 10:10:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-22 10:10:00 (GMT) |
commit | 0c2e553e8f1cba16c82ea38a07526726af210249 (patch) | |
tree | d6c3d4b5acdbcdd535462c1ea01fbdf7d78a34f9 /unix/tclUnixNotfy.c | |
parent | 915c6abe668e021ca4c98a13b69054e163fa7208 (diff) | |
download | tcl-0c2e553e8f1cba16c82ea38a07526726af210249.zip tcl-0c2e553e8f1cba16c82ea38a07526726af210249.tar.gz tcl-0c2e553e8f1cba16c82ea38a07526726af210249.tar.bz2 |
Fix bug which hangs iocmd.tf-32.1
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r-- | unix/tclUnixNotfy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index 88e290e..6e8b5fa 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.c @@ -291,8 +291,8 @@ Tcl_InitNotifier(void) if (TclpThreadCreate(¬ifierThread, NotifierThreadProc, NULL, TCL_THREAD_STACK_DEFAULT, TCL_THREAD_JOINABLE) != TCL_OK) { Tcl_Panic("Tcl_InitNotifier: unable to start notifier thread"); - processIDInitialized = getpid(); } + processIDInitialized = getpid(); } notifierCount++; |