summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Interfaces/NodeManagerDaemon.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/Interfaces/NodeManagerDaemon.idl')
-rw-r--r--CIAO/DAnCE/Interfaces/NodeManagerDaemon.idl35
1 files changed, 0 insertions, 35 deletions
diff --git a/CIAO/DAnCE/Interfaces/NodeManagerDaemon.idl b/CIAO/DAnCE/Interfaces/NodeManagerDaemon.idl
deleted file mode 100644
index 1aad8a2be79..00000000000
--- a/CIAO/DAnCE/Interfaces/NodeManagerDaemon.idl
+++ /dev/null
@@ -1,35 +0,0 @@
-// $Id$
-
-/**
- * @file NodeManagerDaemon.idl
- *
- * @brief Controling interface for managing and controling CIAO daemon.
- */
-
-#include "ciao/NodeManager.idl"
-#include "ciao/NodeApplicationManager.idl"
-
-module CIAO
-{
- /**
- * @brief CIAO daemon process control program.
- *
- * @@The Inheritage might cause binary code bloating but
- * it's an easy way of combining features. In the future we could
- * move this definition into Deployment.idl.
- */
- interface NodeManagerDaemon : Deployment::NodeManager
- {
- // Canonical name of this daemon
- readonly attribute string name;
-
- // Shutdown the daemon process.
- oneway void shutdown ();
-
- /// RACE specific extension.
- /// Modify the priority of a node application process.
- long set_priority (in string plan_id,
- in string cid,
- in ::Deployment::Sched_Params nm_params);
- };
-};