summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/MT_Timeout/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/MT_Timeout/Test.idl')
-rw-r--r--ACE/TAO/tests/MT_Timeout/Test.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ACE/TAO/tests/MT_Timeout/Test.idl b/ACE/TAO/tests/MT_Timeout/Test.idl
new file mode 100644
index 00000000000..0d92a794abb
--- /dev/null
+++ b/ACE/TAO/tests/MT_Timeout/Test.idl
@@ -0,0 +1,19 @@
+//
+// $Id$
+//
+
+module Test
+{
+ /// A very simple interface
+ interface Sleep_Service
+ {
+ /// Sleep for @c microseconds
+ void go_to_sleep (in unsigned long microseconds);
+
+ /// A method to shutdown the ORB
+ /**
+ * This method is used to simplify the test shutdown process
+ */
+ oneway void shutdown ();
+ };
+};