summaryrefslogtreecommitdiff
path: root/DAnCE/TargetManager/TargetManagerExt.idl
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/TargetManager/TargetManagerExt.idl')
-rw-r--r--DAnCE/TargetManager/TargetManagerExt.idl17
1 files changed, 11 insertions, 6 deletions
diff --git a/DAnCE/TargetManager/TargetManagerExt.idl b/DAnCE/TargetManager/TargetManagerExt.idl
index 025d8188e39..26d0c336b62 100644
--- a/DAnCE/TargetManager/TargetManagerExt.idl
+++ b/DAnCE/TargetManager/TargetManagerExt.idl
@@ -12,12 +12,6 @@
* a facet by the TargetManager component
*/
-/**
- * @module CIAO
- *
- * @brief The CIAO module
- */
-
#include "DAnCE/Interfaces/NodeManagerDaemon.idl"
module CIAO
@@ -55,7 +49,10 @@ module CIAO
*/
struct Host_NodeManager
{
+ /// host name
string host_;
+
+ /// the node manager IOR
::CIAO::NodeManagerDaemon node_mgr_;
};
@@ -71,9 +68,17 @@ module CIAO
*/
interface TargetManagerExt
{
+ ///Returns the pid in which a component runs
long get_pid (in string component_uuid);
+
+ /// returns the cpu usage for each host in the
+ /// last cycle
Host_Infos get_host_cpu ();
+
+ /// Return the detail of the components
Component_Infos get_component_cpu ();
+
+ /// Returns the OR of the Node managers
Host_NodeManager_seq get_all_node_managers ();
};
};