repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
=default for generated implementation copy ctor
[ACE_TAO.git]
/
TAO
/
examples
/
RTScheduling
/
Synch_i.cpp
blob
466cf7cf3f26bbfd57a62abb1ba2b87d12f358bb
1
#include
"Synch_i.h"
2
3
Synch_i
::
Synch_i
()
4
{
5
this
->
synched_
=
0
;
6
}
7
8
void
9
Synch_i
::
go
(
CORBA
::
Long base_time
)
10
{
11
ACE_DEBUG
((
LM_DEBUG
,
12
"GO
\n
"
));
13
this
->
synched_
=
1
;
14
this
->
base_time_
.
set
(
static_cast
<
time_t
>(
base_time
),
0
);
15
}
16
17
int
18
Synch_i
::
synched
()
19
{
20
return this
->
synched_
;
21
}
22
23
ACE_Time_Value
*
24
Synch_i
::
base_time
()
25
{
26
return
&
this
->
base_time_
;
27
}