diff options
author | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-11-01 11:15:26 +0000 |
---|---|---|
committer | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-11-01 11:15:26 +0000 |
commit | b38582354ed287367fd93be229ae5e9dbf9188e7 (patch) | |
tree | 9a2cd7fff6f9e796968703bf3bb2cb7ca5c5bf82 /netsvcs/clients | |
parent | 6a0568c32aa670b9d9c216c18ae796749c816819 (diff) | |
download | ATCD-b38582354ed287367fd93be229ae5e9dbf9188e7.tar.gz |
ChangeLogTag:Sat Nov 1 05:40:21 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'netsvcs/clients')
-rw-r--r-- | netsvcs/clients/Logger/direct_logging.cpp | 1 | ||||
-rw-r--r-- | netsvcs/clients/Logger/indirect_logging.cpp | 3 | ||||
-rw-r--r-- | netsvcs/clients/Naming/Client/Client_Test.cpp | 2 | ||||
-rw-r--r-- | netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp | 1 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/collection/collection.cpp | 1 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/collection/rw_locks.cpp | 1 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp | 1 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/invariant/invariant.cpp | 1 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/manual/manual.cpp | 1 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/mutex/test_mutex.cpp | 1 | ||||
-rw-r--r-- | netsvcs/clients/Tokens/rw_lock/rw_locks.cpp | 1 |
11 files changed, 6 insertions, 8 deletions
diff --git a/netsvcs/clients/Logger/direct_logging.cpp b/netsvcs/clients/Logger/direct_logging.cpp index cdbcafef39a..d1880808e13 100644 --- a/netsvcs/clients/Logger/direct_logging.cpp +++ b/netsvcs/clients/Logger/direct_logging.cpp @@ -6,6 +6,7 @@ #include "ace/SOCK_Connector.h" #include "ace/Log_Record.h" #include "ace/Log_Msg.h" +#include "ace/OS_NS_time.h" ACE_RCSID(Logger, direct_logging, "$Id$") diff --git a/netsvcs/clients/Logger/indirect_logging.cpp b/netsvcs/clients/Logger/indirect_logging.cpp index 1739f0a668f..2bec071fdaf 100644 --- a/netsvcs/clients/Logger/indirect_logging.cpp +++ b/netsvcs/clients/Logger/indirect_logging.cpp @@ -5,7 +5,8 @@ // them to the Server Logging Daemon. If there is no Server Logging // Daemon, the logging records will be written to stderr. -#include "ace/OS.h" +#include "ace/OS_NS_time.h" +#include "ace/OS_NS_stdlib.h" #include "ace/Log_Msg.h" ACE_RCSID(Logger, indirect_logging, "$Id$") diff --git a/netsvcs/clients/Naming/Client/Client_Test.cpp b/netsvcs/clients/Naming/Client/Client_Test.cpp index 72c7e9b8494..11b4e66d29d 100644 --- a/netsvcs/clients/Naming/Client/Client_Test.cpp +++ b/netsvcs/clients/Naming/Client/Client_Test.cpp @@ -7,6 +7,8 @@ #include "ace/Dynamic_Service.h" #include "ace/Thread_Manager.h" #include "Client_Test.h" +#include "ace/OS_NS_signal.h" +#include "ace/os_include/os_assert.h" ACE_RCSID(Client, Client_Test, "$Id$") diff --git a/netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp b/netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp index ef7b26ba5d7..da41e3ec1f7 100644 --- a/netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp +++ b/netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp @@ -6,6 +6,7 @@ #include "ace/Thread_Manager.h" #include "ace/streams.h" /* Because dump () uses ofstream. */ #include "Dump_Restore.h" +#include "ace/OS_NS_signal.h" ACE_RCSID(Dump_Restore, Dump_Restore, "$Id$") diff --git a/netsvcs/clients/Tokens/collection/collection.cpp b/netsvcs/clients/Tokens/collection/collection.cpp index c6d223ed095..8df0ae625fc 100644 --- a/netsvcs/clients/Tokens/collection/collection.cpp +++ b/netsvcs/clients/Tokens/collection/collection.cpp @@ -19,7 +19,6 @@ // // ============================================================================ -#include "ace/OS.h" #include "ace/Get_Opt.h" #include "ace/Local_Tokens.h" #include "ace/Token_Collection.h" diff --git a/netsvcs/clients/Tokens/collection/rw_locks.cpp b/netsvcs/clients/Tokens/collection/rw_locks.cpp index 2a64f8d9786..2670f99214f 100644 --- a/netsvcs/clients/Tokens/collection/rw_locks.cpp +++ b/netsvcs/clients/Tokens/collection/rw_locks.cpp @@ -1,6 +1,5 @@ // $Id$ -#include "ace/OS.h" #include "ace/Get_Opt.h" #include "ace/Local_Tokens.h" #include "ace/Remote_Tokens.h" diff --git a/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp b/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp index 46a9daabf80..e1a9d60ccd6 100644 --- a/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp +++ b/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp @@ -15,7 +15,6 @@ // // ============================================================================ -#include "ace/OS.h" #include "ace/Token_Manager.h" #include "ace/Remote_Tokens.h" #include "ace/Thread.h" diff --git a/netsvcs/clients/Tokens/invariant/invariant.cpp b/netsvcs/clients/Tokens/invariant/invariant.cpp index f5c223c3568..cda1f54f6f7 100644 --- a/netsvcs/clients/Tokens/invariant/invariant.cpp +++ b/netsvcs/clients/Tokens/invariant/invariant.cpp @@ -15,7 +15,6 @@ // // ============================================================================ -#include "ace/OS.h" #include "ace/Get_Opt.h" #include "ace/Singleton.h" #include "ace/Thread_Manager.h" diff --git a/netsvcs/clients/Tokens/manual/manual.cpp b/netsvcs/clients/Tokens/manual/manual.cpp index 9574fc7edb6..04f46d0b3da 100644 --- a/netsvcs/clients/Tokens/manual/manual.cpp +++ b/netsvcs/clients/Tokens/manual/manual.cpp @@ -16,7 +16,6 @@ // // ============================================================================ -#include "ace/OS.h" #include "ace/Get_Opt.h" #include "ace/Local_Tokens.h" #include "ace/Remote_Tokens.h" diff --git a/netsvcs/clients/Tokens/mutex/test_mutex.cpp b/netsvcs/clients/Tokens/mutex/test_mutex.cpp index c291981789d..73a33cb6c6e 100644 --- a/netsvcs/clients/Tokens/mutex/test_mutex.cpp +++ b/netsvcs/clients/Tokens/mutex/test_mutex.cpp @@ -15,7 +15,6 @@ // // ============================================================================ -#include "ace/OS.h" #include "ace/Get_Opt.h" #include "ace/Local_Tokens.h" #include "ace/Remote_Tokens.h" diff --git a/netsvcs/clients/Tokens/rw_lock/rw_locks.cpp b/netsvcs/clients/Tokens/rw_lock/rw_locks.cpp index 098d2bd9d84..5d0d95af876 100644 --- a/netsvcs/clients/Tokens/rw_lock/rw_locks.cpp +++ b/netsvcs/clients/Tokens/rw_lock/rw_locks.cpp @@ -17,7 +17,6 @@ // // ============================================================================ -#include "ace/OS.h" #include "ace/Get_Opt.h" #include "ace/Local_Tokens.h" #include "ace/Remote_Tokens.h" |