Last change
on this file since 19 was 15, checked in by Bayard Gildas, 9 years ago |
sources reformatted with flair-format-dir script
|
File size:
1.0 KB
|
Line | |
---|
1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | // created: 2014/02/07
|
---|
6 | // filename: ConditionVariable.cpp
|
---|
7 | //
|
---|
8 | // author: Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: Class defining a condition variable
|
---|
14 | //
|
---|
15 | //
|
---|
16 | /*********************************************************************/
|
---|
17 |
|
---|
18 | #include "ConditionVariable.h"
|
---|
19 | #include "ConditionVariable_impl.h"
|
---|
20 |
|
---|
21 | using std::string;
|
---|
22 |
|
---|
23 | namespace flair {
|
---|
24 | namespace core {
|
---|
25 |
|
---|
26 | ConditionVariable::ConditionVariable(const Object *parent, string name)
|
---|
27 | : Mutex(parent, name) {
|
---|
28 | pimpl_ = new ConditionVariable_impl(this);
|
---|
29 | }
|
---|
30 |
|
---|
31 | ConditionVariable::~ConditionVariable() { delete pimpl_; }
|
---|
32 |
|
---|
33 | void ConditionVariable::CondWait(void) { pimpl_->CondWait(); }
|
---|
34 |
|
---|
35 | bool ConditionVariable::CondWaitUntil(Time date) {
|
---|
36 | return pimpl_->CondWaitUntil(date);
|
---|
37 | }
|
---|
38 |
|
---|
39 | void ConditionVariable::CondSignal(void) { pimpl_->CondSignal(); }
|
---|
40 |
|
---|
41 | } // end namespace core
|
---|
42 | } // end namespace flair
|
---|
Note:
See
TracBrowser
for help on using the repository browser.