blob: fa60517982bbaae8f4217bbec1a52e3e00ef7751 (
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
33
34
|
/*
* Win32 Mutex
* (C) 2006 Luca Piccarreta
* 2006-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/internal/mux_win32.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();
}
}
|