967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
|
return;
}
DeleteCriticalSection(&lockPtr->wlock);
free(lockPtr);
}
void
TclInitThreadAlloc(void)
{
/*
* We need to make sure that TclpFreeAllocCache is called on each
* thread that calls this, but only on threads that call this.
*/
tlsKey = TlsAlloc();
|
|
|
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
|
return;
}
DeleteCriticalSection(&lockPtr->wlock);
free(lockPtr);
}
void
TclpInitThreadAlloc(void)
{
/*
* We need to make sure that TclpFreeAllocCache is called on each
* thread that calls this, but only on threads that call this.
*/
tlsKey = TlsAlloc();
|