summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Upcall_Crash/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Nested_Upcall_Crash/Test.idl')
-rw-r--r--TAO/tests/Nested_Upcall_Crash/Test.idl27
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/tests/Nested_Upcall_Crash/Test.idl b/TAO/tests/Nested_Upcall_Crash/Test.idl
new file mode 100644
index 00000000000..01ff3602659
--- /dev/null
+++ b/TAO/tests/Nested_Upcall_Crash/Test.idl
@@ -0,0 +1,27 @@
+/**
+ * @file Test.idl
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ *
+ */
+#ifndef Test__idl_
+#define Test__idl_
+
+module Test
+{
+ typedef sequence<octet> Payload;
+ interface Peer
+ {
+ oneway void callme (in Peer callback,
+ in unsigned long max_depth,
+ in Payload extra_data);
+
+ oneway void crash();
+
+ void noop();
+ };
+};
+
+#endif /* Test__idl_ */