summaryrefslogtreecommitdiff
path: root/ace/Task.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-29 06:17:26 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-29 06:17:26 +0000
commit39e383a60f5068ee4315a727e7ec6dd3f512030f (patch)
tree7d32454708aef5d15a16bf6bb1dacc71eb36e675 /ace/Task.h
parent21bc321ef279f6cb024b9410706ca3b7911d8a82 (diff)
downloadATCD-39e383a60f5068ee4315a727e7ec6dd3f512030f.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Task.h')
-rw-r--r--ace/Task.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/ace/Task.h b/ace/Task.h
index 9baf34000ca..3ccd1baf287 100644
--- a/ace/Task.h
+++ b/ace/Task.h
@@ -62,7 +62,7 @@ public:
// information into <open>.
virtual int close (u_long flags = 0);
- // Hook called from ACE_Task_Exit when during thread exit and from
+ // Hook called from <ACE_Task_Exit> when during thread exit and from
// the default implemenation of <module_closed>. In general, this
// method shouldn't be called directly by an application,
// particularly if the <Task> is running as an Active Object.
@@ -75,7 +75,7 @@ public:
// implementation calls forwards the call to close(1). Please
// notice the changed value of the default argument of close().
// This allows tasks to differ between the call has been originated
- // from ACE_Task_Exit or from module_closed(). Be aware that
+ // from <ACE_Task_Exit> or from <module_closed>. Be aware that
// close(0) will be also called when a thread associated with the
// ACE_Task instance exits.
@@ -192,7 +192,7 @@ public:
class ACE_Export ACE_Task_Exit
// = TITLE
// Keep exit information for a Task in thread specific storage so
- // that the Task::close() method will get called no matter how
+ // that the <Task::close> method will get called no matter how
// the thread exits (e.g., via <Thread::exit>, C++ or Win32
// exception, "falling off the end" of <Task::svc_run>, etc.).
//
@@ -234,10 +234,6 @@ private:
void *status_;
// Exit status...
- ACE_Thread_Control tc_;
- // This is used to make sure that an ACE_Task registers and
- // deregisters with the ACE_Thread_Manager correctly.
-
#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0)
static ACE_Thread_Mutex ace_task_lock_;
// Lock the creation of the Singleton.