1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 03:09:13 +00:00

Get rid of the PnUtils TLS stuff.

This commit is contained in:
Darryl Pogue
2012-03-10 17:47:25 -08:00
parent 590eea770f
commit 26dc1fa120
9 changed files with 0 additions and 277 deletions

View File

@ -61,7 +61,6 @@ namespace Nt {
//===========================================================================
void NtSleep (unsigned sleepMs) {
ThreadAssertCanBlock(__FILE__, __LINE__);
Sleep(sleepMs);
}

View File

@ -307,9 +307,6 @@ void AsyncTimerDelete (
// Wait until the timer procedure completes
if (timerProc) {
// ensure that I/O worker threads don't call this function with waitComplete=true
// to prevent a possible deadlock of a timer callback waiting for itself to complete
ThreadAssertCanBlock(__FILE__, __LINE__);
while (s_timerCurr == timerProc)
Sleep(1);