X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2Fwin32%2FOSThreads.c;h=13a3666b63c1767b5c158301e3da628befdaf678;hb=4dc5598c02fcdd00b3f9f3f13421b489bafe178f;hp=6f3629be4b5390df9c4fce92de5e17c6f792be04;hpb=e4fdc426413d178c86d3ba93702aad5eb17734bf;p=ghc-hetmet.git diff --git a/rts/win32/OSThreads.c b/rts/win32/OSThreads.c index 6f3629b..13a3666 100644 --- a/rts/win32/OSThreads.c +++ b/rts/win32/OSThreads.c @@ -13,6 +13,7 @@ #if defined(THREADED_RTS) #include "OSThreads.h" #include "RtsUtils.h" +#include /* For reasons not yet clear, the entire contents of process.h is protected * by __STRICT_ANSI__ not being defined. @@ -197,6 +198,17 @@ setThreadLocalVar (ThreadLocalKey *key, void *value) } } +void +freeThreadLocalKey (ThreadLocalKey *key) +{ + BOOL r; + r = TlsFree(*key); + if (r == 0) { + DWORD dw = GetLastError(); + barf("freeThreadLocalKey failed: %lu", dw); + } +} + static unsigned __stdcall forkOS_createThreadWrapper ( void * entry ) @@ -220,6 +232,14 @@ forkOS_createThread ( HsStablePtr entry ) (unsigned*)&pId) == 0); } +void CCallEnterCriticalSection(LPCRITICAL_SECTION s) { + EnterCriticalSection(s); +} + +void CCallLeaveCriticalSection(LPCRITICAL_SECTION s) { + LeaveCriticalSection(s); +} + #else /* !defined(THREADED_RTS) */ int