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 "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git]
/
TAO
/
tests
/
Nested_Upcall_Crash
/
Test.idl
blob
2009e6487cfe88eb59fd12ab91d11ec12137c0a0
1
/**
2
* @file Test.idl
3
*
4
* @author Carlos O'Ryan <coryan@atdesk.com>
5
*/
6
#ifndef Test__idl_
7
#define Test__idl_
8
9
module
Test
10
{
11
typedef
sequence
<
octet
>
Payload
;
12
interface
Peer
13
{
14
oneway
void
callme
(
in
Peer
callback
,
15
in unsigned long
max_depth
,
16
in
Payload extra_data
);
17
18
oneway
void
crash
();
19
20
void
noop
();
21
};
22
};
23
24
#endif
/* Test__idl_ */