summaryrefslogtreecommitdiff
path: root/CIAO/tests/RTCCM/Priority_Test/Workers/Worker.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/RTCCM/Priority_Test/Workers/Worker.idl')
-rw-r--r--CIAO/tests/RTCCM/Priority_Test/Workers/Worker.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/CIAO/tests/RTCCM/Priority_Test/Workers/Worker.idl b/CIAO/tests/RTCCM/Priority_Test/Workers/Worker.idl
new file mode 100644
index 00000000000..4f1a5b4a5bf
--- /dev/null
+++ b/CIAO/tests/RTCCM/Priority_Test/Workers/Worker.idl
@@ -0,0 +1,29 @@
+// $Id$
+
+/**
+ * @file Worker.idl
+ *
+ * Definition of a Worker component that does some work. This work
+ * can be either compute-bound or I/O-bound.
+ *
+ * @author Nanbor Wang <nanbor@cs.wustl.edu>
+ */
+
+#ifndef WORKER_IDL
+#define WORKER_IDL
+
+#include "../Priority_Test.idl"
+
+module Priority_Test
+{
+ component Worker
+ {
+ provides Common_Ops some_device;
+ };
+
+ home WorkerHome manages Worker
+ {
+ };
+};
+
+#endif /* WORKER_IDL */