summaryrefslogtreecommitdiff
path: root/ace/Task.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-01-02 09:05:39 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-01-02 09:05:39 +0000
commit1c44106287219a05ddbff09df4574b90777040ae (patch)
tree1d371fe6828480e7cecdcb75a8887a2b4bb83f53 /ace/Task.h
parentfbcfcdb6ff9975a9e2152be0a5dc7e28a32635fc (diff)
downloadATCD-1c44106287219a05ddbff09df4574b90777040ae.tar.gz
foo
Diffstat (limited to 'ace/Task.h')
-rw-r--r--ace/Task.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Task.h b/ace/Task.h
index 8e6f4752f27..9975f765220 100644
--- a/ace/Task.h
+++ b/ace/Task.h
@@ -103,25 +103,25 @@ public:
virtual int resume (void);
// Resume a suspended task.
- int grp_id (void);
+ int grp_id (void) const;
// Get the current group id.
void grp_id (int);
// Set the current group id.
- ACE_Thread_Manager *thr_mgr (void);
+ ACE_Thread_Manager *thr_mgr (void) const;
// Gets the thread manager associated with this Task.
void thr_mgr (ACE_Thread_Manager *);
// Set the thread manager associated with this Task.
- int is_reader (void);
+ int is_reader (void) const;
// True if queue is a reader, else false.
- int is_writer (void);
+ int is_writer (void) const;
// True if queue is a writer, else false.
- size_t thr_count (void);
+ size_t thr_count (void) const;
// Returns the number of threads currently running within a task.
// If we're a passive object this value is 0, else it's > 0.