summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Simple/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Simple/test.idl')
-rw-r--r--TAO/tests/NestedUpcall/Simple/test.idl38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/tests/NestedUpcall/Simple/test.idl b/TAO/tests/NestedUpcall/Simple/test.idl
deleted file mode 100644
index 5a2f8e4107b..00000000000
--- a/TAO/tests/NestedUpcall/Simple/test.idl
+++ /dev/null
@@ -1,38 +0,0 @@
-// $Id$
-//
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/NestedUpcall
-//
-// = FILENAME
-// test.idl
-//
-// = DESCRIPTION
-// A simple test of nested upcalls.
-//
-// = AUTHOR
-// Irfan Pyarali
-//
-// ============================================================================
-
-interface client
-{
- void ping (in UShort time_to_live);
- // Decrements <time_to_live>. If <time_to_live> becomes zero, it
- // stops. Otherwise, it pings the server.
-};
-
-interface server
-{
- void start (in client c,
- in UShort time_to_live);
- // Turns around and starts pinging the client.
-
- void ping (in UShort time_to_live);
- // Decrements <time_to_live>. If <time_to_live> becomes zero, it
- // stops. Otherwise, it pings the client.
-
- oneway void shutdown ();
- // Shutdown the server.
-};