summaryrefslogtreecommitdiff
path: root/TAO/tests/LongUpcalls/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/LongUpcalls/Test.idl')
-rw-r--r--TAO/tests/LongUpcalls/Test.idl23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/tests/LongUpcalls/Test.idl b/TAO/tests/LongUpcalls/Test.idl
deleted file mode 100644
index 047bd3bde5f..00000000000
--- a/TAO/tests/LongUpcalls/Test.idl
+++ /dev/null
@@ -1,23 +0,0 @@
-// $Id$
-
-module Test
-{
- interface Controller {
- void worker_started ();
- // A worker has started
-
- void worker_finished ();
- // A worker has finished
- };
-
- interface Manager {
- void start_workers (in short worker_count,
- in long milliseconds,
- in Controller the_controller);
- // Start <worker_count> workers, each one runs for the pescribed
- // number of milliseconds, and report progress to <the_controller>
-
- oneway void shutdown ();
- // Shutdown the Manager's ORB, just for cleanup purposes
- };
-};