diff options
Diffstat (limited to 'TAO/CIAO/ciao/Deployment.idl')
-rw-r--r-- | TAO/CIAO/ciao/Deployment.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/TAO/CIAO/ciao/Deployment.idl b/TAO/CIAO/ciao/Deployment.idl index f5ff99919e3..b5515f5fe59 100644 --- a/TAO/CIAO/ciao/Deployment.idl +++ b/TAO/CIAO/ciao/Deployment.idl @@ -1,4 +1,5 @@ // $Id$ + #ifndef DEPLOYMENT_IDL #define DEPLOYMENT_IDL @@ -34,6 +35,20 @@ module Deployment { string name; string plan_uuid; }; + /** + * @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_; + }; typedef sequence < ComponentPlan > ComponentPlans; |