summaryrefslogtreecommitdiff
path: root/TAO/CIAO/ciao/Deployment.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/ciao/Deployment.idl')
-rw-r--r--TAO/CIAO/ciao/Deployment.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/TAO/CIAO/ciao/Deployment.idl b/TAO/CIAO/ciao/Deployment.idl
index 089bc145c9d..032f1e10dd6 100644
--- a/TAO/CIAO/ciao/Deployment.idl
+++ b/TAO/CIAO/ciao/Deployment.idl
@@ -147,6 +147,21 @@ module Deployment {
interface Logger {
};
+ /**
+ * @struct Sched_Params
+ * @brief Carries Scheduling Params
+ * @description CIAO specific structure to carry the scheduling params
+ * to set the process, required by RACE
+ */
+
+ struct Sched_Params
+ {
+ long policy_;
+ long priority_;
+ long scope_;
+ long msec_;
+ };
+
interface NodeApplicationManager :
ApplicationManager
{
@@ -171,6 +186,11 @@ module Deployment {
/// CIAO speicfic operation to set the information of
/// "shared components" (through NodeManager)
void set_shared_components (in ComponentPlans components);
+
+ /// CIAO specific function to set priority
+ /// o component , required by RACE
+
+ long set_priority (in string cid , in Sched_Params params);
};
interface NodeManager {