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
Merge pull request #2218 from jwillemsen/jwi-pthreadsigmask
[ACE_TAO.git]
/
TAO
/
performance-tests
/
Latency
/
Collocation
/
Roundtrip.cpp
blob
73c68ef32845fe9114bc81bf9817096d84610eb4
1
2
#include
"Roundtrip.h"
3
4
Roundtrip
::
Roundtrip
(
CORBA
::
ORB_ptr orb
)
5
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
6
{
7
}
8
9
Test
::
Timestamp
10
Roundtrip
::
test_method
(
Test
::
Timestamp send_time
)
11
{
12
return
send_time
;
13
}
14
15
void
16
Roundtrip
::
shutdown
()
17
{
18
this
->
orb_
->
shutdown
(
false
);
19
}