summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-10-08 22:56:08 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-10-08 22:56:08 +0000
commitdc8a7e1b8c2b10a33ae72aadaef35197b15ce0fd (patch)
tree7ca2675ca9ae95bc43cc2363fb924deb5cfe97ee /ace
parentff9ae2d544431c299351d8444e4fea4ddc9d6875 (diff)
downloadATCD-dc8a7e1b8c2b10a33ae72aadaef35197b15ce0fd.tar.gz
.
Diffstat (limited to 'ace')
-rw-r--r--ace/Object_Manager.h1
-rw-r--r--ace/Thread_Manager.h15
2 files changed, 8 insertions, 8 deletions
diff --git a/ace/Object_Manager.h b/ace/Object_Manager.h
index 6fe2e75599c..0d10e993ce5 100644
--- a/ace/Object_Manager.h
+++ b/ace/Object_Manager.h
@@ -131,7 +131,6 @@ private:
ACE_Object_Manager_Base &operator= (const ACE_Object_Manager_Base &);
};
-
class ACE_Export ACE_Object_Manager : public ACE_Object_Manager_Base
{
// = TITLE
diff --git a/ace/Thread_Manager.h b/ace/Thread_Manager.h
index 57b8505fceb..3be630f7e48 100644
--- a/ace/Thread_Manager.h
+++ b/ace/Thread_Manager.h
@@ -281,26 +281,27 @@ public:
// of g++ couldn't grok this code without it.
private:
-#if !defined(ACE_USE_ONE_SHOT_AT_THREAD_EXIT)
- void at_pop(int apply = 1);
+#if !defined (ACE_USE_ONE_SHOT_AT_THREAD_EXIT)
+ void at_pop (int apply = 1);
// Pop an At_Thread_Exit from at thread termination list, apply the at
// if apply is true.
- void at_push(ACE_At_Thread_Exit* cleanup, int is_owner = 0);
+ void at_push (ACE_At_Thread_Exit* cleanup,
+ int is_owner = 0);
// Push an At_Thread_Exit to at thread termination list and set the
// ownership of at.
- void do_at_exit();
+ void do_at_exit (void);
// Run the AT_Thread_Exit hooks.
- void terminate();
+ void terminate (void);
// terminate realize the cleanup process to thread termination
- ACE_Log_Msg* log_msg_;
+ ACE_Log_Msg *log_msg_;
// Thread_Descriptor is the ownership of ACE_Log_Msg if log_msg_!=0
// This can occur because ACE_TSS_cleanup was executed before terminate.
- ACE_At_Thread_Exit* at_exit_list_;
+ ACE_At_Thread_Exit *at_exit_list_;
// The AT_Thread_Exit list
#endif /* !ACE_USE_ONE_SHOT_AT_THREAD_EXIT */