1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
-
+
|
/*
* tclWinThread.c --
*
* This file implements the Windows-specific thread operations.
*
* Copyright (c) 1998 by Sun Microsystems, Inc.
* Copyright (c) 1999 by Scriptics Corporation
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* RCS: @(#) $Id: tclWinThrd.c,v 1.22 2002/11/26 22:35:21 davygrvy Exp $
* RCS: @(#) $Id: tclWinThrd.c,v 1.23 2002/12/10 00:34:15 hobbs Exp $
*/
#include "tclWinInt.h"
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
|
| ︙ | | |
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
-
|
#if defined(_MSC_VER) || defined(__MSVCRT__) || defined(__BORLANDC__)
_endthreadex((unsigned) status);
#else
ExitThread((DWORD) status);
#endif
}
/*
*----------------------------------------------------------------------
*
* Tcl_GetCurrentThread --
*
* This procedure returns the ID of the currently running thread.
|
| ︙ | | |
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
236
237
238
239
240
241
242
243
244
245
246
247
248
249
|
-
|
*/
Tcl_ThreadId
Tcl_GetCurrentThread()
{
return (Tcl_ThreadId)GetCurrentThreadId();
}
/*
*----------------------------------------------------------------------
*
* TclpInitLock
*
* This procedure is used to grab a lock that serializes initialization
|
| ︙ | | |
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
|
273
274
275
276
277
278
279
280
281
282
283
284
285
286
|
-
|
init = 1;
InitializeCriticalSection(&joinLock);
InitializeCriticalSection(&initLock);
InitializeCriticalSection(&masterLock);
}
EnterCriticalSection(&initLock);
}
/*
*----------------------------------------------------------------------
*
* TclpInitUnlock
*
* This procedure is used to release a lock that serializes initialization
|
| ︙ | | |
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
-
|
*/
void
TclpInitUnlock()
{
LeaveCriticalSection(&initLock);
}
/*
*----------------------------------------------------------------------
*
* TclpMasterLock
*
* This procedure is used to grab a lock that serializes creation
|
| ︙ | | |
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
|
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
|
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
init = 1;
InitializeCriticalSection(&joinLock);
InitializeCriticalSection(&initLock);
InitializeCriticalSection(&masterLock);
}
EnterCriticalSection(&masterLock);
}
/*
*----------------------------------------------------------------------
*
* TclpMasterUnlock
*
* This procedure is used to release a lock that serializes creation
* and deletion of synchronization objects.
*
* Results:
* None.
*
* Side effects:
* Release the master mutex.
*
*----------------------------------------------------------------------
*/
void
TclpMasterUnlock()
{
LeaveCriticalSection(&masterLock);
}
/*
*----------------------------------------------------------------------
*
* Tcl_GetAllocMutex
*
* This procedure returns a pointer to a statically initialized
|
| ︙ | | |
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
|
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|
#ifdef TCL_THREADS
/* locally used prototype */
static void FinalizeConditionEvent(ClientData data);
/*
*----------------------------------------------------------------------
*
* TclpMasterUnlock
*
* This procedure is used to release a lock that serializes creation
* and deletion of synchronization objects.
*
* Results:
* None.
*
* Side effects:
* Release the master mutex.
*
*----------------------------------------------------------------------
*/
void
TclpMasterUnlock()
{
LeaveCriticalSection(&masterLock);
}
/*
*----------------------------------------------------------------------
*
* Tcl_MutexLock --
*
* This procedure is invoked to lock a mutex. This is a self
|
| ︙ | | |
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
|
442
443
444
445
446
447
448
449
450
451
452
453
454
455
|
-
|
TclRememberMutex(mutexPtr);
}
MASTER_UNLOCK;
}
csPtr = *((CRITICAL_SECTION **)mutexPtr);
EnterCriticalSection(csPtr);
}
/*
*----------------------------------------------------------------------
*
* Tcl_MutexUnlock --
*
* This procedure is invoked to unlock a mutex.
|
| ︙ | | |
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
|
466
467
468
469
470
471
472
473
474
475
476
477
478
479
|
-
|
void
Tcl_MutexUnlock(mutexPtr)
Tcl_Mutex *mutexPtr; /* The lock */
{
CRITICAL_SECTION *csPtr = *((CRITICAL_SECTION **)mutexPtr);
LeaveCriticalSection(csPtr);
}
/*
*----------------------------------------------------------------------
*
* TclpFinalizeMutex --
*
* This procedure is invoked to clean up one mutex. This is only
|
| ︙ | | |
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
|
495
496
497
498
499
500
501
502
503
504
505
506
507
508
|
-
|
CRITICAL_SECTION *csPtr = *(CRITICAL_SECTION **)mutexPtr;
if (csPtr != NULL) {
DeleteCriticalSection(csPtr);
ckfree((char *)csPtr);
*mutexPtr = NULL;
}
}
/*
*----------------------------------------------------------------------
*
* TclpThreadDataKeyInit --
*
* This procedure initializes a thread specific data block key.
|
| ︙ | | |
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
|
537
538
539
540
541
542
543
544
545
546
547
548
549
550
|
-
|
indexPtr = (DWORD *)ckalloc(sizeof(DWORD));
*indexPtr = TlsAlloc();
*keyPtr = (Tcl_ThreadDataKey)indexPtr;
TclRememberDataKey(keyPtr);
}
MASTER_UNLOCK;
}
/*
*----------------------------------------------------------------------
*
* TclpThreadDataKeyGet --
*
* This procedure returns a pointer to a block of thread local storage.
|
| ︙ | | |
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
|
567
568
569
570
571
572
573
574
575
576
577
578
579
580
|
-
|
DWORD *indexPtr = *(DWORD **)keyPtr;
if (indexPtr == NULL) {
return NULL;
} else {
return (VOID *) TlsGetValue(*indexPtr);
}
}
/*
*----------------------------------------------------------------------
*
* TclpThreadDataKeySet --
*
* This procedure sets the pointer to a block of thread local storage.
|
| ︙ | | |
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
594
595
596
597
598
599
600
601
602
603
604
605
606
607
|
-
|
Tcl_ThreadDataKey *keyPtr; /* Identifier for the data chunk,
* really (pthread_key_t **) */
VOID *data; /* Thread local storage */
{
DWORD *indexPtr = *(DWORD **)keyPtr;
TlsSetValue(*indexPtr, (void *)data);
}
/*
*----------------------------------------------------------------------
*
* TclpFinalizeThreadData --
*
* This procedure cleans up the thread-local storage. This is
|
| ︙ | | |
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
|
841
842
843
844
845
846
847
848
849
850
851
852
853
854
|
-
|
tsdPtr->flags = WIN_THREAD_RUNNING;
}
}
LeaveCriticalSection(&winCondPtr->condLock);
EnterCriticalSection(csPtr);
}
/*
*----------------------------------------------------------------------
*
* Tcl_ConditionNotify --
*
* This procedure is invoked to signal a condition variable.
|
| ︙ | | |
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
|
895
896
897
898
899
900
901
902
903
904
905
906
907
908
|
-
|
LeaveCriticalSection(&winCondPtr->condLock);
} else {
/*
* Noone has used the condition variable, so there are no waiters.
*/
}
}
/*
*----------------------------------------------------------------------
*
* FinalizeConditionEvent --
*
* This procedure is invoked to clean up the per-thread
|
| ︙ | | |