summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-07-22 10:10:00 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-07-22 10:10:00 (GMT)
commit978b54229dc68812a5ccaa0050324d215db91520 (patch)
treed6c3d4b5acdbcdd535462c1ea01fbdf7d78a34f9 /unix/tclUnixNotfy.c
parentec06295d4ed7d6f865b8d73925bfb24d8f478f45 (diff)
downloadtcl-978b54229dc68812a5ccaa0050324d215db91520.zip
tcl-978b54229dc68812a5ccaa0050324d215db91520.tar.gz
tcl-978b54229dc68812a5ccaa0050324d215db91520.tar.bz2
Fix bug which hangs iocmd.tf-32.1
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r--unix/tclUnixNotfy.c2
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(&notifierThread, 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++;