blob: b0e6da68dde96412e35cf2e6dca7d3cab1970e48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*************************************************
* Win32 Mutex Source File *
* (C) 1999-2008 The Botan Project *
*************************************************/
#include <botan/mux_win32.h>
#include <botan/exceptn.h>
#include <windows.h>
namespace Botan {
/*************************************************
* Win32 Mutex Factory *
*************************************************/
Mutex* Win32_Mutex_Factory::make()
{
class Win32_Mutex : public Mutex
{
public:
void lock() { EnterCriticalSection(&mutex); }
void unlock() { LeaveCriticalSection(&mutex); }
Win32_Mutex() { InitializeCriticalSection(&mutex); }
~Win32_Mutex() { DeleteCriticalSection(&mutex); }
private:
CRITICAL_SECTION mutex;
};
return new Win32_Mutex();
}
}
|