summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-05-26 19:06:57 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-05-26 19:06:57 +0000
commitca0624c3aa5061e881b4464d1241a2249df5a4c5 (patch)
treebaa92754250a3653dd7a7a79d01f438ca8743f92 /ace
parent2a85d7b4edc4441fe7849741d6a05aa62eb3bcb4 (diff)
downloadATCD-ca0624c3aa5061e881b4464d1241a2249df5a4c5.tar.gz
ChangeLogTag:Fri May 26 12:04:39 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/ARGV.cpp1
-rw-r--r--ace/Capabilities.cpp1
-rw-r--r--ace/Dump.cpp1
-rw-r--r--ace/Filecache.cpp1
-rw-r--r--ace/Local_Tokens.h1
-rw-r--r--ace/Log_Msg.cpp2
-rw-r--r--ace/Malloc.h3
-rw-r--r--ace/Map_Manager.h1
-rw-r--r--ace/Memory_Pool.cpp1
-rw-r--r--ace/Name_Proxy.cpp1
-rw-r--r--ace/Process.cpp1
-rw-r--r--ace/Process_Manager.cpp1
-rw-r--r--ace/QoS_Manager.cpp1
-rw-r--r--ace/QoS_Session_Factory.cpp1
-rw-r--r--ace/QoS_Session_Impl.cpp1
-rw-r--r--ace/Remote_Name_Space.cpp1
-rw-r--r--ace/SOCK_Acceptor.cpp1
-rw-r--r--ace/SOCK_Dgram.cpp1
-rw-r--r--ace/Select_Reactor_Base.cpp1
-rw-r--r--ace/Service_Repository.cpp1
-rw-r--r--ace/Signal.cpp1
-rw-r--r--ace/Stats.h1
-rw-r--r--ace/Synch.cpp1
-rw-r--r--ace/TP_Reactor.h1
-rw-r--r--ace/Thread_Manager.h1
-rw-r--r--ace/Token.cpp1
26 files changed, 27 insertions, 2 deletions
diff --git a/ace/ARGV.cpp b/ace/ARGV.cpp
index bb3f4670ef2..d293eb0cf72 100644
--- a/ace/ARGV.cpp
+++ b/ace/ARGV.cpp
@@ -4,6 +4,7 @@
// Transforms a string BUF into an ARGV-style vector of strings.
#include "ace/ARGV.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/ARGV.i"
diff --git a/ace/Capabilities.cpp b/ace/Capabilities.cpp
index 4a056e07940..1c1de8e5809 100644
--- a/ace/Capabilities.cpp
+++ b/ace/Capabilities.cpp
@@ -2,6 +2,7 @@
#include "ace/Map_Manager.h"
#include "ace/Capabilities.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/Capabilities.i"
diff --git a/ace/Dump.cpp b/ace/Dump.cpp
index 6cbca54518c..52786c00d99 100644
--- a/ace/Dump.cpp
+++ b/ace/Dump.cpp
@@ -3,6 +3,7 @@
#include "ace/Synch_T.h"
#include "ace/Dump.h"
#include "ace/Object_Manager.h"
+#include "ace/Log_Msg.h"
ACE_RCSID(ace, Dump, "$Id$")
diff --git a/ace/Filecache.cpp b/ace/Filecache.cpp
index 1a0c37cdcb0..9dd39b1db57 100644
--- a/ace/Filecache.cpp
+++ b/ace/Filecache.cpp
@@ -2,6 +2,7 @@
#include "ace/Filecache.h"
#include "ace/Object_Manager.h"
+#include "ace/Log_Msg.h"
ACE_RCSID(ace, Filecache, "$Id$")
diff --git a/ace/Local_Tokens.h b/ace/Local_Tokens.h
index f63eb1c0794..df96eb89b65 100644
--- a/ace/Local_Tokens.h
+++ b/ace/Local_Tokens.h
@@ -57,6 +57,7 @@
#include "ace/Containers.h"
#include "ace/Synch_Options.h"
#include "ace/Map_Manager.h"
+#include "ace/Log_Msg.h"
#if !(defined (ACE_HAS_THREADS) && defined (ACE_HAS_THREAD_SPECIFIC_STORAGE))
# define ACE_NO_TSS_TOKENS 1
diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp
index d156fdcf8a2..ff659a26e79 100644
--- a/ace/Log_Msg.cpp
+++ b/ace/Log_Msg.cpp
@@ -45,6 +45,8 @@ typedef ACE_SOCK_Connector ACE_LOG_MSG_IPC_CONNECTOR;
typedef ACE_INET_Addr ACE_LOG_MSG_IPC_ADDR;
#endif /* ACE_HAS_STREAM_PIPES */
+#include "ace/Log_Msg.h"
+
ACE_RCSID(ace, Log_Msg, "$Id$")
ACE_ALLOC_HOOK_DEFINE(ACE_Log_Msg)
diff --git a/ace/Malloc.h b/ace/Malloc.h
index 580e5780209..327b26d099f 100644
--- a/ace/Malloc.h
+++ b/ace/Malloc.h
@@ -25,6 +25,7 @@
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Malloc_Base.h"
+#include "ace/Log_Msg.h"
#if (ACE_HAS_POSITION_INDEPENDENT_POINTERS == 1)
#include "ace/Based_Pointer_T.h"
@@ -39,8 +40,6 @@
#define ACE_PROCESS_MUTEX ACE_SV_Semaphore_Simple
#endif /* ACE_HAS_THREADS */
-#include "ace/Log_Msg.h"
-
typedef ACE_Atomic_Op<ACE_PROCESS_MUTEX, int> ACE_INT;
/******************************************************************
diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h
index dde1cdde82e..bbeba53473e 100644
--- a/ace/Map_Manager.h
+++ b/ace/Map_Manager.h
@@ -25,6 +25,7 @@
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Synch.h"
+#include "ace/Log_Msg.h"
// Forward declaration.
class ACE_Allocator;
diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp
index e68a8407599..fd1a8270ea7 100644
--- a/ace/Memory_Pool.cpp
+++ b/ace/Memory_Pool.cpp
@@ -2,6 +2,7 @@
// Memory_Pool.cpp
#include "ace/Memory_Pool.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/Memory_Pool.i"
diff --git a/ace/Name_Proxy.cpp b/ace/Name_Proxy.cpp
index 1868e56f850..aa6dea87a09 100644
--- a/ace/Name_Proxy.cpp
+++ b/ace/Name_Proxy.cpp
@@ -2,6 +2,7 @@
// $Id$
#include "ace/Name_Proxy.h"
+#include "ace/Log_Msg.h"
ACE_RCSID(ace, Name_Proxy, "$Id$")
diff --git a/ace/Process.cpp b/ace/Process.cpp
index 4aba3f5c2a9..78dd8c3aa4a 100644
--- a/ace/Process.cpp
+++ b/ace/Process.cpp
@@ -5,6 +5,7 @@
#include "ace/ARGV.h"
#include "ace/Signal.h"
#include "ace/SString.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/Process.i"
diff --git a/ace/Process_Manager.cpp b/ace/Process_Manager.cpp
index 0449db4759a..6b125600fbb 100644
--- a/ace/Process_Manager.cpp
+++ b/ace/Process_Manager.cpp
@@ -6,6 +6,7 @@
#include "ace/Signal.h"
#include "ace/Process_Manager.h"
#include "ace/Object_Manager.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/Process_Manager.i"
diff --git a/ace/QoS_Manager.cpp b/ace/QoS_Manager.cpp
index 0928c76842d..ba7c77e8c9c 100644
--- a/ace/QoS_Manager.cpp
+++ b/ace/QoS_Manager.cpp
@@ -2,6 +2,7 @@
// $Id$
#include "ace/QoS_Manager.h"
+#include "ace/Log_Msg.h"
ACE_RCSID(ace, QoS_Manager, "$Id $")
diff --git a/ace/QoS_Session_Factory.cpp b/ace/QoS_Session_Factory.cpp
index 4913b800050..2016a65baf1 100644
--- a/ace/QoS_Session_Factory.cpp
+++ b/ace/QoS_Session_Factory.cpp
@@ -3,6 +3,7 @@
#include "ace/QoS_Session_Factory.h"
#include "ace/QoS_Session_Impl.h"
+#include "ace/Log_Msg.h"
ACE_RCSID(ace, QoS_Session_Factory, "$Id$")
diff --git a/ace/QoS_Session_Impl.cpp b/ace/QoS_Session_Impl.cpp
index 849c16b6cc4..35c64294b0e 100644
--- a/ace/QoS_Session_Impl.cpp
+++ b/ace/QoS_Session_Impl.cpp
@@ -4,6 +4,7 @@
#include "ace/SOCK.h"
#include "ace/QoS_Manager.h"
#include "ace/QoS_Session_Impl.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/QoS_Session_Impl.i"
diff --git a/ace/Remote_Name_Space.cpp b/ace/Remote_Name_Space.cpp
index 5eba140a92a..e160a153a3e 100644
--- a/ace/Remote_Name_Space.cpp
+++ b/ace/Remote_Name_Space.cpp
@@ -3,6 +3,7 @@
#include "ace/Remote_Name_Space.h"
#include "ace/Auto_Ptr.h"
+#include "ace/Log_Msg.h"
ACE_RCSID(ace, Remote_Name_Space, "$Id$")
diff --git a/ace/SOCK_Acceptor.cpp b/ace/SOCK_Acceptor.cpp
index 4587e17a687..1e21fd60901 100644
--- a/ace/SOCK_Acceptor.cpp
+++ b/ace/SOCK_Acceptor.cpp
@@ -2,6 +2,7 @@
// $Id$
#include "ace/SOCK_Acceptor.h"
+#include "ace/Log_Msg.h"
#if defined (ACE_LACKS_INLINE_FUNCTIONS)
#include "ace/SOCK_Acceptor.i"
diff --git a/ace/SOCK_Dgram.cpp b/ace/SOCK_Dgram.cpp
index 7a53f45ae97..9f3bace3f13 100644
--- a/ace/SOCK_Dgram.cpp
+++ b/ace/SOCK_Dgram.cpp
@@ -4,6 +4,7 @@
#include "ace/SOCK_Dgram.h"
#include "ace/Handle_Set.h"
#include "ace/Synch.h"
+#include "ace/Log_Msg.h"
#if defined (ACE_LACKS_INLINE_FUNCTIONS)
#include "ace/SOCK_Dgram.i"
diff --git a/ace/Select_Reactor_Base.cpp b/ace/Select_Reactor_Base.cpp
index baca4ca60f3..ef088795179 100644
--- a/ace/Select_Reactor_Base.cpp
+++ b/ace/Select_Reactor_Base.cpp
@@ -7,6 +7,7 @@
#include "ace/SOCK_Acceptor.h"
#include "ace/SOCK_Connector.h"
#include "ace/Timer_Heap.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/Select_Reactor_Base.i"
diff --git a/ace/Service_Repository.cpp b/ace/Service_Repository.cpp
index da76851e663..25b35e692f9 100644
--- a/ace/Service_Repository.cpp
+++ b/ace/Service_Repository.cpp
@@ -3,6 +3,7 @@
#include "ace/Service_Repository.h"
#include "ace/Object_Manager.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/Service_Repository.i"
diff --git a/ace/Signal.cpp b/ace/Signal.cpp
index 0c8f21f4471..f99dee96a90 100644
--- a/ace/Signal.cpp
+++ b/ace/Signal.cpp
@@ -3,6 +3,7 @@
#include "ace/Synch_T.h"
#include "ace/Signal.h"
#include "ace/Object_Manager.h"
+#include "ace/Log_Msg.h"
#if !defined (__ACE_INLINE__)
#include "ace/Signal.i"
diff --git a/ace/Stats.h b/ace/Stats.h
index 59ee3a54799..6ce7e587b2a 100644
--- a/ace/Stats.h
+++ b/ace/Stats.h
@@ -25,6 +25,7 @@
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Containers.h"
+#include "ace/Log_Msg.h"
class ACE_Export ACE_Stats_Value
{
diff --git a/ace/Synch.cpp b/ace/Synch.cpp
index b42ed9d0646..f983943fefb 100644
--- a/ace/Synch.cpp
+++ b/ace/Synch.cpp
@@ -11,6 +11,7 @@
#include "ace/Synch_T.h"
#include "ace/Synch.h"
+#include "ace/Log_Msg.h"
ACE_RCSID(ace, Synch, "$Id$")
diff --git a/ace/TP_Reactor.h b/ace/TP_Reactor.h
index 81bfdd69382..49b871018f3 100644
--- a/ace/TP_Reactor.h
+++ b/ace/TP_Reactor.h
@@ -34,6 +34,7 @@
#include "ace/pre.h"
#include "ace/Select_Reactor.h"
+#include "ace/Log_Msg.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
diff --git a/ace/Thread_Manager.h b/ace/Thread_Manager.h
index ba4c443f742..8b1b8668332 100644
--- a/ace/Thread_Manager.h
+++ b/ace/Thread_Manager.h
@@ -28,6 +28,7 @@
#include "ace/Containers.h"
#include "ace/Free_List.h"
#include "ace/Singleton.h"
+#include "ace/Log_Msg.h"
// The following macros control how a Thread Manager manages a pool of
// Thread_Descriptor. Currently, the default behavior is not to
diff --git a/ace/Token.cpp b/ace/Token.cpp
index 80234f0491d..3519e8aa5e8 100644
--- a/ace/Token.cpp
+++ b/ace/Token.cpp
@@ -2,6 +2,7 @@
#include "ace/Thread.h"
#include "ace/Token.h"
+#include "ace/Log_Msg.h"
#if defined (DEBUGGING)
#include "ace/streams.h"