aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32/mutex.ixx
blob: d58623b8a088e9a680d625b32a36f1d9896bc12e (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
// file      : odb/details/win32/mutex.ixx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

namespace odb
{
  namespace details
  {
    inline mutex::
    ~mutex ()
    {
      DeleteCriticalSection (&cs_);
    }

    inline mutex::
    mutex ()
    {
      InitializeCriticalSection (&cs_);
    }

    inline void mutex::
    lock ()
    {
      EnterCriticalSection (&cs_);
    }

    inline void mutex::
    unlock ()
    {
      LeaveCriticalSection (&cs_);
    }
  }
}