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
Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git]
/
TAO
/
tests
/
DII_Deferred_Transient
/
Hello.cpp
blob
a1953eae236f48df64ecb416541072b525107a51
1
// -*- C++ -*-
2
#include
"Hello.h"
3
#include
"ace/OS_NS_unistd.h"
4
5
void
6
Hello
::
crash
()
7
{
8
ACE
::
terminate_process
(
ACE_OS
::
getpid
());
9
}
10
11
char
*
12
Hello
::
get_string
()
13
{
14
// ACE_DEBUG ((LM_DEBUG, "(%P|%t) - Hello::get_string called\n"));
15
return
CORBA
::
string_dup
(
"Hello there!"
);
16
}