279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
|
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
-
|
*/
static void
StartNotifierThread(void)
{
pthread_mutex_lock(¬ifierInitMutex);
if (!notifierThreadRunning) {
fprintf(stderr, "=== StartNotifierThread()\n");
if (TclpThreadCreate(¬ifierThread, NotifierThreadProc, NULL,
TCL_THREAD_STACK_DEFAULT, TCL_THREAD_JOINABLE) != TCL_OK) {
Tcl_Panic("Tcl_InitNotifier: unable to start notifier thread");
}
pthread_mutex_lock(¬ifierMutex);
/*
|