summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-04-16 03:22:13 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-04-16 03:22:13 +0000
commitc7a1504baf6735e0161ebe79ceefa9f6ac439ada (patch)
tree4125449986b25b493e6191b8c55284f129c5339d
parent36e123f26e13db3190ffba8b9bb0adb06851d53a (diff)
downloadATCD-c7a1504baf6735e0161ebe79ceefa9f6ac439ada.tar.gz
*** empty log message ***
-rw-r--r--ace/Signal.h2
-rw-r--r--ace/Thread_Manager.h17
2 files changed, 10 insertions, 9 deletions
diff --git a/ace/Signal.h b/ace/Signal.h
index 1709d4d9881..f3704c8dca8 100644
--- a/ace/Signal.h
+++ b/ace/Signal.h
@@ -197,7 +197,7 @@ public:
ACE_Event_Handler **old_sh = 0,
ACE_Sig_Action *old_disp = 0);
// Add a new <ACE_Event_Handler> and a new sigaction associated with
- // <signum>. Passes back the existing ACE_Event_Handler and its
+ // <signum>. Passes back the existing <ACE_Event_Handler> and its
// sigaction if pointers are non-zero. Returns -1 on failure and >=
// 0 on success.
diff --git a/ace/Thread_Manager.h b/ace/Thread_Manager.h
index addef9ebcfe..4797996f966 100644
--- a/ace/Thread_Manager.h
+++ b/ace/Thread_Manager.h
@@ -26,13 +26,14 @@ class ACE_Task_Base;
class ACE_Thread_Manager;
class ACE_Export ACE_Thread_Descriptor
- // = Title
- // Information for controlling threads that run under the control
- // of the <Thread_Manager>.
{
-friend class ACE_Thread_Manager;
-friend class ACE_Double_Linked_List<ACE_Thread_Descriptor>;
-friend class ACE_Double_Linked_List_Iterator<ACE_Thread_Descriptor>;
+ // = TITLE
+ // Information for controlling threads that run under the control
+ // of the <Thread_Manager>.
+
+ friend class ACE_Thread_Manager;
+ friend class ACE_Double_Linked_List<ACE_Thread_Descriptor>;
+ friend class ACE_Double_Linked_List_Iterator<ACE_Thread_Descriptor>;
public:
// = Initialization method.
ACE_Thread_Descriptor (void);
@@ -108,13 +109,13 @@ private:
// close down the handle).
ACE_Task_Base *task_;
- // Pointer to an <ACE_Task_Base> or NULL if there's no <ACE_Task_Base>;
+ // Pointer to an <ACE_Task_Base> or NULL if there's no
+ // <ACE_Task_Base>;
ACE_Thread_Descriptor *next_;
ACE_Thread_Descriptor *prev_;
// We need these pointers to maintain the double-linked list in a
// thread managers.
-
};
// Forward declaration.