287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
-
+
|
close(triggerPipe);
triggerPipe = -1;
}
if (notifierCount == 0) {
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++;
/*
* Wait for the notifier pipe to be created.
*/
|