summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Event_Loop/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Nested_Event_Loop/test.idl')
-rw-r--r--TAO/tests/Nested_Event_Loop/test.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/tests/Nested_Event_Loop/test.idl b/TAO/tests/Nested_Event_Loop/test.idl
new file mode 100644
index 00000000000..2a0de7543ad
--- /dev/null
+++ b/TAO/tests/Nested_Event_Loop/test.idl
@@ -0,0 +1,29 @@
+//
+// $Id$
+//
+
+typedef sequence<octet> act;
+
+interface client
+{
+ void loop (in unsigned long event_loop_depth,
+ in unsigned long event_loop_iterations);
+
+ oneway void oneway_no_op (in act act_for_iterations,
+ in act act_for_flag);
+
+ void twoway_no_op ();
+};
+
+interface server
+{
+ void loop (in client remote_partner,
+ in unsigned long event_loop_depth,
+ in unsigned long event_loop_iterations);
+
+ void no_op (in client remote_partner,
+ in act act_for_iterations,
+ in act act_for_flag);
+
+ oneway void shutdown ();
+};