aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32/once.ixx
blob: a893e67dc930304f0eca785108097ce04c58f4ed (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
35
36
37
38
39
40
41
42
43
// file      : odb/details/win32/once.ixx
// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <odb/details/win32/lock.hxx>

namespace odb
{
  namespace details
  {
    inline void
    win32_once (win32_once_t& o, void (*func) ())
    {
      win32_lock l (win32_once_cs_);

      if (o == 0)
      {
        o = 1;
        l.unlock ();
        func ();
      }
    }

    inline once::
    once ()
        : called_ (false)
    {
    }

    inline void once::
    call (void (*func) ())
    {
      win32_lock l (win32_once_cs_);

      if (!called_)
      {
        called_ = true;
        l.unlock ();
        func ();
      }
    }
  }
}