This source file includes following definitions.
- opal_condition_construct
- opal_condition_destruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #include "opal_config.h"
20
21 #include "opal/threads/condition.h"
22
23
24 static void opal_condition_construct(opal_condition_t *c)
25 {
26 c->c_waiting = 0;
27 c->c_signaled = 0;
28 }
29
30
31 static void opal_condition_destruct(opal_condition_t *c)
32 {
33 }
34
35 OBJ_CLASS_INSTANCE(opal_condition_t,
36 opal_object_t,
37 opal_condition_construct,
38 opal_condition_destruct);