summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-07-30 18:03:45 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-07-30 18:03:45 +0000
commit5b17ef28ed9d22d12c21c8fe2b1a2f0dabb43522 (patch)
tree31deedbb83e65cca7d09ac77ca705e5ebbb44d1f
parentd2025fbe08964b524556a36d637e632582096aa9 (diff)
downloadATCD-5b17ef28ed9d22d12c21c8fe2b1a2f0dabb43522.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98b7
-rw-r--r--ace/Task.h6
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index 7cc38482ec4..61541291867 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,3 +1,10 @@
+Thu Jul 30 13:01:12 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Task.h (ACE_Task_Base): Changed the spelling of
+ ACE_Task_Exit to ACE_Thread_Exit, which is correct.
+ Thanks to Daniel Winder <Daniel.Winder@cern.ch> for
+ reporting this.
+
Thu Jul 30 08:43:41 1998 Steve Huston <shuston@riverace.com>
* tests/tests.(mdp mak): Made include and library paths relative.
diff --git a/ace/Task.h b/ace/Task.h
index d116250a5c4..a6e05cb6f65 100644
--- a/ace/Task.h
+++ b/ace/Task.h
@@ -69,7 +69,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_Thread_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.
@@ -82,7 +82,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_Thread_Exit> or from <module_closed>. Be aware that
// close(0) will be also called when a thread associated with the
// ACE_Task instance exits.
@@ -175,7 +175,7 @@ public:
void thr_count_dec (void);
// Atomically decrement the thread count by 1. This should only be
- // called by the <ACE_Task_Exit> class destructor.
+ // called by the <ACE_Thread_Exit> class destructor.
static void *svc_run (void *);
// Routine that runs the service routine as a daemon thread.