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 #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
tests
/
Client_Leaks
/
Process.cpp
blob
5ab2b0d55ac75775b9c97de105edc4ef8b262656
1
#include
"Process.h"
2
#include
"ace/OS_NS_unistd.h"
3
4
Process
::
Process
(
CORBA
::
ORB_ptr orb
)
5
:
orb_
(
CORBA
::
ORB
::
_duplicate
(
orb
))
6
{
7
}
8
9
CORBA
::
Long
10
Process
::
get_process_id
()
11
{
12
return
ACE_OS
::
getpid
();
13
}
14
15
void
16
Process
::
shutdown
()
17
{
18
this
->
orb_
->
shutdown
(
false
);
19
}