summaryrefslogtreecommitdiff
path: root/TAO/tao/params.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/params.h')
-rw-r--r--TAO/tao/params.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/TAO/tao/params.h b/TAO/tao/params.h
index 09a976de7ae..661bc64b482 100644
--- a/TAO/tao/params.h
+++ b/TAO/tao/params.h
@@ -133,6 +133,14 @@ public:
int std_profile_components (void) const;
void std_profile_components (int x);
+ /// Thread scheduling policy.
+ long sched_policy (void) const;
+ void sched_policy (long x);
+
+ /// Thread scope policy.
+ long scope_policy (void) const;
+ void scope_policy (long x);
+
private:
// Each "endpoint" is of the form:
//
@@ -192,6 +200,12 @@ private:
/// If true then the standard OMG components are not generated.
int std_profile_components_;
+
+ /// Thread scheduling policy.
+ long sched_policy_;
+
+ /// Thread scope policy.
+ long scope_policy_;
};
#if defined (__ACE_INLINE__)