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 #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
tests
/
Client_Leaks
/
Process.cpp
blob
c05907a1a3e7d167245872268fd7faef95ce1049
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
(
void
)
11
{
12
return
ACE_OS
::
getpid
();
13
}
14
15
void
16
Process
::
shutdown
(
void
)
17
{
18
this
->
orb_
->
shutdown
(
0
);
19
}