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
blob2009e6487cfe88eb59fd12ab91d11ec12137c0a0
1 /**
2 * @file Test.idl
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef Test__idl_
7 #define Test__idl_
9 module Test
11 typedef sequence<octet> Payload;
12 interface Peer
14 oneway void callme (in Peer callback,
15 in unsigned long max_depth,
16 in Payload extra_data);
18 oneway void crash();
20 void noop();
24 #endif /* Test__idl_ */