Searched refs:threadList (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclThreadTest.c47 static struct ThreadSpecificData *threadList; variable in typeref:struct:ThreadSpecificData
618 tsdPtr->nextPtr = threadList;
619 if (threadList) {
620 threadList->prevPtr = tsdPtr;
623 threadList = tsdPtr;
655 threadList = tsdPtr->nextPtr;
689 for (tsdPtr = threadList ; tsdPtr ; tsdPtr = tsdPtr->nextPtr) {
734 for (tsdPtr = threadList ; tsdPtr ; tsdPtr = tsdPtr->nextPtr) {
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclThreadTest.c45 static struct ThreadSpecificData *threadList; variable in typeref:struct:ThreadSpecificData
603 tsdPtr->nextPtr = threadList;
604 if (threadList) {
605 threadList->prevPtr = tsdPtr;
608 threadList = tsdPtr;
639 threadList = tsdPtr->nextPtr;
674 for (tsdPtr = threadList ; tsdPtr ; tsdPtr = tsdPtr->nextPtr) {
719 for (tsdPtr = threadList ; tsdPtr ; tsdPtr = tsdPtr->nextPtr) {
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/threadTest/
H A DthreadTest.cpp306 pthread_t *threadList; local
450 threadList = (pthread_t *)malloc(numThreads * sizeof(pthread_t));
452 int result = pthread_create(&threadList[dex], NULL,
464 result = pthread_join(threadList[dex], &status);
/macosx-10.10.1/tcl-105/tcl_ext/thread/thread/generic/
H A DthreadCmd.c83 static struct ThreadSpecificData *threadList = NULL; variable in typeref:struct:ThreadSpecificData
1867 if (threadList) {
1868 threadList->prevPtr = tsdPtr;
1871 tsdPtr->nextPtr = threadList;
1875 threadList = tsdPtr;
1934 threadList = tsdPtr->nextPtr;
1941 } else if (tsdPtr == threadList) {
1942 threadList = NULL;
1976 * the counter of allocated structs in the threadList.
1979 for (tsdPtr = threadList; tsdPt
[all...]

Completed in 182 milliseconds