aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32/once.ixx
blob: 9f1706d16cfb14aa16302db08df27bddd8d22ecb (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
// file      : odb/details/win32/once.ixx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

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

namespace odb
{
  namespace details
  {
    inline once::
    once ()
        : called_ (false)
    {
    }

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

      if (!called_)
      {
        func ();
        called_ = true;
      }
    }
  }
}