Searched refs:Tcl_Condition (Results 1 - 25 of 44) sorted by relevance

12

/macosx-10.10.1/tcl-105/tcl_ext/thread/thread/generic/
H A DthreadSpCmd.h27 Tcl_Condition cond; /* For waiting on threads to release items */
71 Tcl_Condition cond; /* Wait to be allowed to lock the mutex */
88 Tcl_Condition rcond; /* Reader lockers wait here */
89 Tcl_Condition wcond; /* Writer lockers wait here */
H A DthreadCmd.c51 Tcl_Condition doOneEvent; /* Signalled just before running
101 Tcl_Condition condWait; /* Condition variable used to
111 Tcl_Condition done; /* Set when the script completes */
185 Tcl_Condition done; /* Set when transfer is done */
2210 resultPtr->done = (Tcl_Condition) NULL;
2348 resultPtr->done = (Tcl_Condition)NULL;
2549 resultPtr->done = (Tcl_Condition)NULL;
2780 resultPtr->done = (Tcl_Condition)NULL;
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclThread.c311 Tcl_Condition *condPtr)
336 Tcl_Condition *condPtr)
396 Tcl_Condition *condPtr;
439 condPtr = (Tcl_Condition *) condRecord.list[i];
508 Tcl_Condition *condPtr, /* Really (pthread_cond_t **) */
517 Tcl_Condition *condPtr)
H A DtclThreadJoin.c40 Tcl_Condition cond; /* This is the condition a thread has to wait
242 threadPtr->cond = (Tcl_Condition) NULL;
H A DtclThreadTest.c68 Tcl_Condition condWait; /* This condition variable is used to
89 Tcl_Condition done; /* Signaled when the script completes */
H A DtclDecls.h1856 EXTERN void Tcl_ConditionNotify(Tcl_Condition *condPtr);
1861 EXTERN void Tcl_ConditionWait(Tcl_Condition *condPtr,
2310 EXTERN void Tcl_ConditionFinalize(Tcl_Condition *condPtr);
3758 void (*tcl_ConditionNotify) (Tcl_Condition *condPtr); /* 310 */
3759 void (*tcl_ConditionWait) (Tcl_Condition *condPtr, Tcl_Mutex *mutexPtr, Tcl_Time *timePtr); /* 311 */
3839 void (*tcl_ConditionFinalize) (Tcl_Condition *condPtr); /* 391 */
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclThread.c381 Tcl_Condition *condPtr;
406 Tcl_Condition *condPtr;
479 Tcl_Condition *condPtr;
508 condPtr = (Tcl_Condition *)condRecord.list[i];
586 Tcl_Condition *condPtr; /* Really (pthread_cond_t **) */
595 Tcl_Condition *condPtr;
H A DtclThreadJoin.c42 Tcl_Condition cond; /* This is the condition a thread has
243 threadPtr->cond = (Tcl_Condition) NULL;
H A DtclThreadTest.c64 Tcl_Condition condWait;
85 Tcl_Condition done; /* Signaled when the script completes */
H A DtclDecls.h1014 Tcl_Condition * condPtr));
1017 Tcl_Condition * condPtr,
1247 Tcl_Condition * condPtr));
2022 void (*tcl_ConditionNotify) _ANSI_ARGS_((Tcl_Condition * condPtr)); /* 310 */
2023 void (*tcl_ConditionWait) _ANSI_ARGS_((Tcl_Condition * condPtr, Tcl_Mutex * mutexPtr, Tcl_Time * timePtr)); /* 311 */
2103 void (*tcl_ConditionFinalize) _ANSI_ARGS_((Tcl_Condition * condPtr)); /* 391 */
H A DtclInt.h2025 Tcl_Condition *condPtr));
2107 EXTERN void TclRememberCondition _ANSI_ARGS_((Tcl_Condition *mutex));
/macosx-10.10.1/tcl-105/tcl/tcl/unix/
H A DtclUnixThrd.c632 Tcl_Condition *condPtr, /* Really (pthread_cond_t **) */
651 *condPtr = (Tcl_Condition)pcondPtr;
698 Tcl_Condition *condPtr)
732 Tcl_Condition *condPtr)
H A DtclUnixNotfy.c104 Tcl_Condition waitCV; /* Any other thread alerts a notifier that an
163 static Tcl_Condition notifierCV;
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A DtclUnixThrd.c717 Tcl_Condition *condPtr; /* Really (pthread_cond_t **) */
736 *condPtr = (Tcl_Condition)pcondPtr;
783 Tcl_Condition *condPtr;
818 Tcl_Condition *condPtr;
H A DtclUnixNotfy.c103 Tcl_Condition waitCV; /* Any other thread alerts a notifier
163 static Tcl_Condition notifierCV;
/macosx-10.10.1/tcl-105/tcl/tcl/win/
H A DtclWinThrd.c605 * this Tcl_Condition is used.
612 Tcl_Condition *condPtr, /* Really (WinCondition **) */
670 *condPtr = (Tcl_Condition) winCondPtr;
777 Tcl_Condition *condPtr)
866 Tcl_Condition *condPtr)
/macosx-10.10.1/tcl-105/tcl84/tcl/win/
H A DtclWinThrd.c792 * and initialize this the first time this Tcl_Condition is used.
799 Tcl_Condition *condPtr; /* Really (WinCondition **) */
859 *condPtr = (Tcl_Condition)winCondPtr;
966 Tcl_Condition *condPtr;
1054 Tcl_Condition *condPtr;
/macosx-10.10.1/tcl-105/tcl/tcl/tools/
H A DcheckLibraryDoc.tcl37 Tcl_Condition \
/macosx-10.10.1/tcl-105/tcl84/tcl/tools/
H A DcheckLibraryDoc.tcl37 Tcl_Condition \
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddom.h531 Tcl_Condition rcond; /* Condition var for reader locks */
532 Tcl_Condition wcond; /* Condition var for writer locks */
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/patches/v8.1a2/
H A Dtcl.h248 typedef struct Tcl_Condition_ *Tcl_Condition; typedef in typeref:struct:Tcl_Condition_
1562 EXTERN void Tcl_ConditionNotify _ANSI_ARGS_((Tcl_Condition *condPtr));
1563 EXTERN void Tcl_ConditionWait _ANSI_ARGS_((Tcl_Condition *condPtr,
H A Dtcl.h.orig248 typedef struct Tcl_Condition_ *Tcl_Condition;
1555 EXTERN void Tcl_ConditionNotify _ANSI_ARGS_((Tcl_Condition *condPtr));
1556 EXTERN void Tcl_ConditionWait _ANSI_ARGS_((Tcl_Condition *condPtr,
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/patches/v8.1b1/
H A Dtcl.h312 typedef struct Tcl_Condition_ *Tcl_Condition; typedef in typeref:struct:Tcl_Condition_
1624 EXTERN void Tcl_ConditionNotify _ANSI_ARGS_((Tcl_Condition *condPtr));
1625 EXTERN void Tcl_ConditionWait _ANSI_ARGS_((Tcl_Condition *condPtr,
H A Dtcl.h.orig312 typedef struct Tcl_Condition_ *Tcl_Condition;
1617 EXTERN void Tcl_ConditionNotify _ANSI_ARGS_((Tcl_Condition *condPtr));
1618 EXTERN void Tcl_ConditionWait _ANSI_ARGS_((Tcl_Condition *condPtr,
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/patches/v8.1b2/
H A Dtcl.h355 typedef struct Tcl_Condition_ *Tcl_Condition; typedef in typeref:struct:Tcl_Condition_

Completed in 185 milliseconds

12