| Index: third_party/lzma_sdk/C/Threads.c
|
| ===================================================================
|
| --- third_party/lzma_sdk/C/Threads.c (revision 0)
|
| +++ third_party/lzma_sdk/C/Threads.c (revision 0)
|
| @@ -0,0 +1,84 @@
|
| +/* Threads.c -- multithreading library
|
| +2009-09-20 : Igor Pavlov : Public domain */
|
| +
|
| +#ifndef _WIN32_WCE
|
| +#include <process.h>
|
| +#endif
|
| +
|
| +#include "Threads.h"
|
| +
|
| +static WRes GetError()
|
| +{
|
| + DWORD res = GetLastError();
|
| + return (res) ? (WRes)(res) : 1;
|
| +}
|
| +
|
| +WRes HandleToWRes(HANDLE h) { return (h != 0) ? 0 : GetError(); }
|
| +WRes BOOLToWRes(BOOL v) { return v ? 0 : GetError(); }
|
| +
|
| +WRes HandlePtr_Close(HANDLE *p)
|
| +{
|
| + if (*p != NULL)
|
| + if (!CloseHandle(*p))
|
| + return GetError();
|
| + *p = NULL;
|
| + return 0;
|
| +}
|
| +
|
| +WRes Handle_WaitObject(HANDLE h) { return (WRes)WaitForSingleObject(h, INFINITE); }
|
| +
|
| +WRes Thread_Create(CThread *p, THREAD_FUNC_TYPE func, LPVOID param)
|
| +{
|
| + unsigned threadId; /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */
|
| + *p =
|
| + #ifdef UNDER_CE
|
| + CreateThread(0, 0, func, param, 0, &threadId);
|
| + #else
|
| + (HANDLE)_beginthreadex(NULL, 0, func, param, 0, &threadId);
|
| + #endif
|
| + /* maybe we must use errno here, but probably GetLastError() is also OK. */
|
| + return HandleToWRes(*p);
|
| +}
|
| +
|
| +WRes Event_Create(CEvent *p, BOOL manualReset, int signaled)
|
| +{
|
| + *p = CreateEvent(NULL, manualReset, (signaled ? TRUE : FALSE), NULL);
|
| + return HandleToWRes(*p);
|
| +}
|
| +
|
| +WRes Event_Set(CEvent *p) { return BOOLToWRes(SetEvent(*p)); }
|
| +WRes Event_Reset(CEvent *p) { return BOOLToWRes(ResetEvent(*p)); }
|
| +
|
| +WRes ManualResetEvent_Create(CManualResetEvent *p, int signaled) { return Event_Create(p, TRUE, signaled); }
|
| +WRes AutoResetEvent_Create(CAutoResetEvent *p, int signaled) { return Event_Create(p, FALSE, signaled); }
|
| +WRes ManualResetEvent_CreateNotSignaled(CManualResetEvent *p) { return ManualResetEvent_Create(p, 0); }
|
| +WRes AutoResetEvent_CreateNotSignaled(CAutoResetEvent *p) { return AutoResetEvent_Create(p, 0); }
|
| +
|
| +
|
| +WRes Semaphore_Create(CSemaphore *p, UInt32 initCount, UInt32 maxCount)
|
| +{
|
| + *p = CreateSemaphore(NULL, (LONG)initCount, (LONG)maxCount, NULL);
|
| + return HandleToWRes(*p);
|
| +}
|
| +
|
| +static WRes Semaphore_Release(CSemaphore *p, LONG releaseCount, LONG *previousCount)
|
| + { return BOOLToWRes(ReleaseSemaphore(*p, releaseCount, previousCount)); }
|
| +WRes Semaphore_ReleaseN(CSemaphore *p, UInt32 num)
|
| + { return Semaphore_Release(p, (LONG)num, NULL); }
|
| +WRes Semaphore_Release1(CSemaphore *p) { return Semaphore_ReleaseN(p, 1); }
|
| +
|
| +WRes CriticalSection_Init(CCriticalSection *p)
|
| +{
|
| + /* InitializeCriticalSection can raise only STATUS_NO_MEMORY exception */
|
| + #ifdef _MSC_VER
|
| + __try
|
| + #endif
|
| + {
|
| + InitializeCriticalSection(p);
|
| + /* InitializeCriticalSectionAndSpinCount(p, 0); */
|
| + }
|
| + #ifdef _MSC_VER
|
| + __except (EXCEPTION_EXECUTE_HANDLER) { return 1; }
|
| + #endif
|
| + return 0;
|
| +}
|
|
|
| Property changes on: third_party\lzma_sdk\C\Threads.c
|
| ___________________________________________________________________
|
| Added: svn:executable
|
| + *
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|