blob: 47a1f0318a7c6ff1032d3246b0c1c61bc66a6cd5 (
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
|
// file : build2/context.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
namespace build2
{
// wait_guard
//
inline wait_guard::
wait_guard (atomic_count& tc, bool p)
: wait_guard (0, tc, p)
{
}
inline wait_guard::
wait_guard (size_t sc, atomic_count& tc, bool p)
: start_count (sc), task_count (&tc), phase (p)
{
}
inline wait_guard::
~wait_guard () noexcept (false)
{
if (task_count != nullptr)
wait ();
}
inline void wait_guard::
wait ()
{
phase_unlock u (phase);
sched.wait (start_count, *task_count);
task_count = nullptr;
}
}
|