diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-23 18:28:55 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-23 18:28:55 +0000 |
commit | 06ce59d348e30ce3da6106943c2d5660abc4c219 (patch) | |
tree | 193a5f6f9b2e16cb3c722e5ef066dd266832a6bd /ace | |
parent | 74205f4d54deada413395d34b3dfa99d51c6f7cb (diff) | |
download | ATCD-IR-base.tar.gz |
This commit was manufactured by cvs2svn to create tag 'IR-base'.IR-base
Diffstat (limited to 'ace')
129 files changed, 35502 insertions, 8049 deletions
diff --git a/ace/ACE.cpp b/ace/ACE.cpp index 5b96172d8e6..cbed6851afa 100644 --- a/ace/ACE.cpp +++ b/ace/ACE.cpp @@ -6,7 +6,6 @@ #include "ace/Auto_Ptr.h" #include "ace/INET_Addr.h" #include "ace/Object_Manager.h" -#include "ace/SString.h" #include "ace/Version.h" #if defined (ACE_LACKS_INLINE_FUNCTIONS) @@ -15,9 +14,6 @@ ACE_RCSID(ace, ACE, "$Id$") -// Static data members. -u_int ACE::init_fini_count_ = 0; - // Keeps track of whether we're in some global debug mode. char ACE::debug_ = 0; @@ -30,36 +26,16 @@ size_t ACE::pagesize_ = 0; // Size of allocation granularity. size_t ACE::allocation_granularity_ = 0; - int ACE::init (void) { - // Don't use ACE_TRACE, because Object_Manager might not have been - // instantiated yet. - // ACE_TRACE ("ACE::init"); - - ++init_fini_count_; - return ACE_Object_Manager::instance ()->init (); } int ACE::fini (void) { - ACE_TRACE ("ACE::fini"); - - if (init_fini_count_ > 0) - { - if (--init_fini_count_ == 0) - return ACE_Object_Manager::instance ()->fini (); - else - // Wait for remaining fini () calls. - return 1; - } - else - // More ACE::fini () calls than ACE::init () calls. Bad - // application! - return -1; + return ACE_Object_Manager::instance ()->fini (); } u_int @@ -1169,17 +1145,6 @@ ACE::enter_recv_timedwait (ACE_HANDLE handle, if (timeout == 0) return 0; -#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - - struct pollfd fds; - - fds.fd = handle; - fds.events = POLLIN; - fds.revents = 0; - - int a = ACE_OS::poll (&fds, 1, *timeout); - -#else ACE_Handle_Set handle_set; handle_set.set_bit (handle); @@ -1189,8 +1154,6 @@ ACE::enter_recv_timedwait (ACE_HANDLE handle, (fd_set *) 0, // write_fds. (fd_set *) 0, // exception_fds. timeout); -#endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ - switch ( a ) { case 0: // Timer expired. return -1 @@ -1246,17 +1209,6 @@ ACE::enter_send_timedwait (ACE_HANDLE handle, if (timeout==0) return 0; -#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - - struct pollfd fds; - - fds.fd = handle; - fds.events = POLLOUT; - fds.revents = 0; - - int a = ACE_OS::poll (&fds, 1, *timeout); - -#else ACE_Handle_Set handle_set; handle_set.set_bit (handle); @@ -1269,8 +1221,6 @@ ACE::enter_send_timedwait (ACE_HANDLE handle, (fd_set *) handle_set, (fd_set *) 0, timeout); -#endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ - switch ( a ) { case 0: // Timer expired. @@ -1678,29 +1628,16 @@ ACE::handle_timed_complete (ACE_HANDLE h, int is_tli) { ACE_TRACE ("ACE::handle_timed_complete"); - -#if !defined (ACE_WIN32) && defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - - struct pollfd fds; - - fds.fd = h; - fds.events = POLLIN | POLLOUT; - fds.revents = 0; - -#else ACE_Handle_Set rd_handles; ACE_Handle_Set wr_handles; - - rd_handles.set_bit (h); - wr_handles.set_bit (h); -#endif /* !ACE_WIN32 && ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ + int need_to_check; #if defined (ACE_WIN32) ACE_Handle_Set ex_handles; ex_handles.set_bit (h); #endif /* ACE_WIN32 */ - - int need_to_check; + rd_handles.set_bit (h); + wr_handles.set_bit (h); #if defined (ACE_WIN32) int n = ACE_OS::select (int (h) + 1, @@ -1709,17 +1646,11 @@ ACE::handle_timed_complete (ACE_HANDLE h, ex_handles, timeout); #else -# if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - - int n = ACE_OS::poll (&fds, 1, timeout); - -# else int n = ACE_OS::select (int (h) + 1, rd_handles, wr_handles, 0, timeout); -# endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ #endif /* ACE_WIN32 */ // If we failed to connect within the time period allocated by the @@ -1746,24 +1677,14 @@ ACE::handle_timed_complete (ACE_HANDLE h, need_to_check = 1; #else if (is_tli) - -# if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - need_to_check = (fds.revents & POLLIN) && !(fds.revents & POLLOUT); -# else need_to_check = rd_handles.is_set (h) && !wr_handles.is_set (h); -# endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ - else #if defined(AIX) // AIX is broken... both success and failed connect will set the // write handle only, so always check. need_to_check = 1; #else -# if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - need_to_check = (fds.revents & POLLIN); -# else need_to_check = rd_handles.is_set (h); -# endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ #endif /* AIX */ #endif /* ACE_WIN32 */ @@ -1835,35 +1756,17 @@ ACE::handle_timed_accept (ACE_HANDLE listener, if (listener == ACE_INVALID_HANDLE) return -1; -#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - - struct pollfd fds; - - fds.fd = listener; - fds.events = POLLIN; - fds.revents = 0; - -#else // Use the select() implementation rather than poll(). ACE_Handle_Set rd_handle; rd_handle.set_bit (listener); -#endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ // We need a loop here if <restart> is enabled. for (;;) { -#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - - int n = ACE_OS::poll (&fds, 1, timeout); - -#else - int n = ACE_OS::select (int (listener) + 1, + switch (ACE_OS::select (int (listener) + 1, rd_handle, 0, 0, - timeout); -#endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ - - switch (n) + timeout)) { case -1: if (errno == EINTR && restart) @@ -2157,7 +2060,7 @@ int ACE::set_flags (ACE_HANDLE handle, int flags) { ACE_TRACE ("ACE::set_flags"); -#if defined (ACE_WIN32) || defined (VXWORKS) || defined (ACE_LACKS_FCNTL) +#if defined (ACE_WIN32) || defined (ACE_LACKS_FCNTL) switch (flags) { case ACE_NONBLOCK: @@ -2193,7 +2096,7 @@ ACE::clr_flags (ACE_HANDLE handle, int flags) { ACE_TRACE ("ACE::clr_flags"); -#if defined (ACE_WIN32) || defined (VXWORKS) || defined (ACE_LACKS_FCNTL) +#if defined (ACE_WIN32) || defined (ACE_LACKS_FCNTL) switch (flags) { case ACE_NONBLOCK: diff --git a/ace/ACE.h b/ace/ACE.h index ef2f03b2deb..b5bb9f1d498 100644 --- a/ace/ACE.h +++ b/ace/ACE.h @@ -690,11 +690,6 @@ private: // Cleanup after the <send> operation (e.g., restore the appropriate // non-blocking status of <handle>). - static u_int init_fini_count_; - // Counter to match init ()/fini () calls. init () must increment - // it; fini () must decrement it. fini () then does nothing until - // it reaches 0. - static size_t pagesize_; // Size of a VM page. diff --git a/ace/ARGV.i b/ace/ARGV.i index b14d0963274..3619a4e742c 100644 --- a/ace/ARGV.i +++ b/ace/ARGV.i @@ -44,10 +44,10 @@ ACE_ARGV::argv (void) // Convert buf_ to argv_ if (this->string_to_argv () == -1) - return (ASYS_TCHAR **) 0; + return 0; } - return (ASYS_TCHAR **) this->argv_; + return this->argv_; } // Subscript operator. diff --git a/ace/ATM_Addr.cpp b/ace/ATM_Addr.cpp index dcf40446f37..693582d73aa 100644 --- a/ace/ATM_Addr.cpp +++ b/ace/ATM_Addr.cpp @@ -15,21 +15,17 @@ ACE_ALLOC_HOOK_DEFINE(ACE_ATM_Addr) #if defined (ACE_HAS_FORE_ATM_XTI) #define BHLI_MAGIC "FORE_ATM" + // This is line rate in cells/s for an OC-3 MM interface. const long ACE_ATM_Addr::LINE_RATE = 353207; const int ACE_ATM_Addr::OPT_FLAGS_CPID = 0x1; const int ACE_ATM_Addr::OPT_FLAGS_PMP = 0x2; -const int ACE_ATM_Addr::DEFAULT_SELECTOR = 0x99; -#else -const long ACE_ATM_Addr::LINE_RATE = 0L; -const int ACE_ATM_Addr::OPT_FLAGS_CPID = 0; -const int ACE_ATM_Addr::OPT_FLAGS_PMP = 0; -const int ACE_ATM_Addr::DEFAULT_SELECTOR = 0x0; +const int ACE_ATM_Addr::SELECTOR = 0x99; #endif /* ACE_HAS_FORE_ATM_XTI */ // Default constructor -ACE_ATM_Addr::ACE_ATM_Addr (unsigned char selector) +ACE_ATM_Addr::ACE_ATM_Addr (void) #if defined (ACE_HAS_FORE_ATM_XTI) : ACE_Addr (AF_ATM, #else @@ -41,34 +37,31 @@ ACE_ATM_Addr::ACE_ATM_Addr (unsigned char selector) (void) ACE_OS::memset ((void *) &this->atm_addr_, 0, sizeof this->atm_addr_); - this->init (selector); + this->init (); } // Copy constructor. -ACE_ATM_Addr::ACE_ATM_Addr (const ACE_ATM_Addr &sap, - unsigned char selector) +ACE_ATM_Addr::ACE_ATM_Addr (const ACE_ATM_Addr &sap) { ACE_TRACE ("ACE_ATM_Addr::ACE_ATM_Addr"); - this->set (sap, selector); + this->set (sap); } -ACE_ATM_Addr::ACE_ATM_Addr (const ATMSAPAddress *sap, - unsigned char selector) +ACE_ATM_Addr::ACE_ATM_Addr (const ATMSAPAddress *sap) { ACE_TRACE ("ACE_ATM_Addr::ACE_ATM_Addr"); - this->set (sap, selector); + this->set (sap); } -ACE_ATM_Addr::ACE_ATM_Addr (const ASYS_TCHAR sap[], - unsigned char selector) +ACE_ATM_Addr::ACE_ATM_Addr (const ASYS_TCHAR sap[]) { ACE_TRACE ("ACE_ATM_Addr::ACE_ATM_Addr"); - this->set (sap, selector); + this->set (sap); } void -ACE_ATM_Addr::init (unsigned char selector) +ACE_ATM_Addr::init (void) { #if defined (ACE_HAS_FORE_ATM_XTI) // Note: this approach may be FORE implementation-specific. When we @@ -84,7 +77,7 @@ ACE_ATM_Addr::init (unsigned char selector) atm_addr_.sap.t_atm_sap_addr.address_format = (u_int8_t) T_ATM_ENDSYS_ADDR; atm_addr_.sap.t_atm_sap_addr.address_length = ATMNSAP_ADDR_LEN; - atm_addr_.sap.t_atm_sap_addr.address[ATMNSAP_ADDR_LEN - 1] = selector; + atm_addr_.sap.t_atm_sap_addr.address[ATMNSAP_ADDR_LEN - 1] = SELECTOR; atm_addr_.sap.t_atm_sap_layer2.SVE_tag = (int8_t) T_ATM_ABSENT; atm_addr_.sap.t_atm_sap_layer3.SVE_tag = (int8_t) T_ATM_ABSENT; @@ -96,17 +89,15 @@ ACE_ATM_Addr::init (unsigned char selector) BHLI_MAGIC, sizeof atm_addr_.sap.t_atm_sap_appl.ID); #else - ACE_UNUSED_ARG (selector); #endif /* ACE_HAS_FORE_ATM_XTI */ } int -ACE_ATM_Addr::set (const ACE_ATM_Addr &sap, - unsigned char selector) +ACE_ATM_Addr::set (const ACE_ATM_Addr &sap) { ACE_TRACE ("ACE_ATM_Addr::set"); - this->init (selector); + this->init (); this->ACE_Addr::base_set (sap.get_type (), sap.get_size ()); @@ -122,12 +113,11 @@ ACE_ATM_Addr::set (const ACE_ATM_Addr &sap, } int -ACE_ATM_Addr::set (const ATMSAPAddress *sap, - unsigned char selector) +ACE_ATM_Addr::set (const ATMSAPAddress *sap) { ACE_TRACE ("ACE_ATM_Addr::set"); - this->init (selector); + this->init (); #if defined (ACE_HAS_FORE_ATM_XTI) this->ACE_Addr::base_set (AF_ATM, @@ -143,12 +133,11 @@ ACE_ATM_Addr::set (const ATMSAPAddress *sap, } int -ACE_ATM_Addr::set (const ASYS_TCHAR address[], - unsigned char selector) +ACE_ATM_Addr::set (const ASYS_TCHAR address[]) { ACE_TRACE ("ACE_ATM_Addr::set"); - this->init (selector); + this->init (); #if defined (ACE_HAS_FORE_ATM_XTI) atm_addr_.sap.t_atm_sap_addr.SVE_tag_addr = diff --git a/ace/ATM_Addr.h b/ace/ATM_Addr.h index 2f644c3bb95..076fbff550a 100644 --- a/ace/ATM_Addr.h +++ b/ace/ATM_Addr.h @@ -38,24 +38,21 @@ public: static const long LINE_RATE; static const int OPT_FLAGS_CPID; static const int OPT_FLAGS_PMP; - static const int DEFAULT_SELECTOR; + static const int SELECTOR; // = Initialization methods. - ACE_ATM_Addr (unsigned char selector = DEFAULT_SELECTOR); + ACE_ATM_Addr (void); // Default constructor. - ACE_ATM_Addr (const ACE_ATM_Addr &, - unsigned char selector = DEFAULT_SELECTOR); + ACE_ATM_Addr (const ACE_ATM_Addr &); // Copy constructor. - ACE_ATM_Addr (const ATMSAPAddress *, - unsigned char selector = DEFAULT_SELECTOR); + ACE_ATM_Addr (const ATMSAPAddress *); // Creates an <ACE_ATM_Addr> from an ATMSAPAddress structure. This // is vendor specific (FORE systems). May need to change when other // vendors are supported. - ACE_ATM_Addr (const ASYS_TCHAR sap[], - unsigned char selector = DEFAULT_SELECTOR); + ACE_ATM_Addr (const ASYS_TCHAR sap[]); // Initializes an <ACE_ATM_Addr> from the <sap> which can be // "atm-address" (e.g., // "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") or "hostname" @@ -65,22 +62,19 @@ public: // Default dtor. // = Initialization methods (useful after object construction). - void init (unsigned char selector = DEFAULT_SELECTOR); + void init (void); // Default initialization for non-address values (e.g., // t_atm_sap_addr.SVE_tag_addr, t_atm_sap_addr.SVE_tag_selector) - int set (const ACE_ATM_Addr &, - unsigned char selector = DEFAULT_SELECTOR); + int set (const ACE_ATM_Addr &); // Initializes from another <ACE_ATM_Addr>. - int set (const ATMSAPAddress *, - unsigned char selector = DEFAULT_SELECTOR); + int set (const ATMSAPAddress *); // Initializes an <ACE_ATM_Addr> from an ATMSAPAddress // structure. This is vendor specific (FORE systems). May need to // change when other vendors are supported. - int set (const ASYS_TCHAR sap[], - unsigned char selector = DEFAULT_SELECTOR); + int set (const ASYS_TCHAR sap[]); // Initializes an <ACE_ATM_Addr> from the <sap> which can be // "atm-address" (e.g., // "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") or "hostname" @@ -113,12 +107,6 @@ public: virtual void set_addr (void *, int); // Set a pointer to the address. - unsigned char get_selector (void) const; - // Return the selector for network address. - - void set_selector (unsigned char); - // Set the selector for the network address. - int operator == (const ACE_ATM_Addr &SAP) const; // Compare two addresses for equality. The addresses are considered // equal if they contain the same ATM address. Q: Is there any diff --git a/ace/ATM_Addr.i b/ace/ATM_Addr.i index 0fb582ae719..86a0c3ccc8c 100644 --- a/ace/ATM_Addr.i +++ b/ace/ATM_Addr.i @@ -17,25 +17,3 @@ ACE_ATM_Addr::get_addr (void) const ACE_TRACE ("ACE_ATM_Addr::get_addr"); return (void *) &this->atm_addr_; } - -ACE_INLINE unsigned char -ACE_ATM_Addr::get_selector (void) const -{ - ACE_TRACE ("ACE_ATM_Addr::get_selector"); -#if defined (ACE_HAS_FORE_ATM_XTI) - return atm_addr_.sap.t_atm_sap_addr.address[ATMNSAP_ADDR_LEN - 1]; -#else - return 0; -#endif /* ACE_HAS_FORE_ATM_XTI */ -} - -ACE_INLINE void -ACE_ATM_Addr::set_selector (unsigned char selector) -{ - ACE_TRACE ("ACE_ATM_Addr::set_selector"); -#if defined (ACE_HAS_FORE_ATM_XTI) - atm_addr_.sap.t_atm_sap_addr.address[ATMNSAP_ADDR_LEN - 1] = selector; -#else - ACE_UNUSED_ARG (selector); -#endif /* ACE_HAS_FORE_ATM_XTI */ -} diff --git a/ace/Addr.cpp b/ace/Addr.cpp index aff435317f1..9a0e74e3ba4 100644 --- a/ace/Addr.cpp +++ b/ace/Addr.cpp @@ -9,8 +9,7 @@ ACE_RCSID(ace, Addr, "$Id$") #if defined (ACE_HAS_BROKEN_SAP_ANY) #if defined (sap_any) #undef sap_any -// Note: this object requires static construction and destruction. -/* static */ +// This is a static class variable. const ACE_Addr ace_sap_any (AF_ANY, -1); const ACE_Addr & @@ -21,8 +20,7 @@ ACE_Addr::sap_any (void) #define sap_any sap_any() #endif /* sap_any */ #else -// Note: this object requires static construction and destruction. -/* static */ +// This is a static class variable. const ACE_Addr ACE_Addr::sap_any (AF_ANY, -1); #endif /* ACE_HAS_BROKEN_SAP_ANY */ diff --git a/ace/Asynch_IO.cpp b/ace/Asynch_IO.cpp index 373356337eb..9a87f63c893 100644 --- a/ace/Asynch_IO.cpp +++ b/ace/Asynch_IO.cpp @@ -969,14 +969,11 @@ ACE_Handler::handle_write_file (const ACE_Asynch_Write_File::Result &result) } void -ACE_Handler::handle_time_out (const ACE_Time_Value & /* tv */, - const void * /* act */) -{ -} - -void -ACE_Handler::handle_wakeup (void) +ACE_Handler::handle_time_out (const ACE_Time_Value &tv, + const void *act) { + ACE_UNUSED_ARG (tv); + ACE_UNUSED_ARG (act); } ACE_Proactor * diff --git a/ace/Asynch_IO.h b/ace/Asynch_IO.h index fb555a90610..4e1c72d18b6 100644 --- a/ace/Asynch_IO.h +++ b/ace/Asynch_IO.h @@ -1002,12 +1002,7 @@ public: virtual void handle_time_out (const ACE_Time_Value &tv, const void *act = 0); // Called when timer expires. <tv> was the requested time value and - // <act> is the ACT passed when scheduling the timer. - - virtual void handle_wakeup (void); - // This is method works with the <run_event_loop> of the - // ACE_Proactor. A special <Wake_Up_Completion> is used to wake up - // all the threads that are blocking for completions. + // <act> is the ACT passed when scheduling the timer ACE_Proactor *proactor (void); // Get the proactor associated with this handler. diff --git a/ace/Asynch_IO_Impl.h b/ace/Asynch_IO_Impl.h index 834817032b5..6cdbcc058cd 100644 --- a/ace/Asynch_IO_Impl.h +++ b/ace/Asynch_IO_Impl.h @@ -81,7 +81,7 @@ public: virtual int signal_number (void) const = 0; // POSIX4 real-time signal number to be used for the - // operation. <signal_number> ranges from SIGRTMIN to SIGRTMAX. By + // operation. <signal_number> ranges from SIGRTMIN to SIGRTMAX. By // default, SIGRTMIN is used to issue <aio_> calls. This is a no-op // on non-POSIX4 systems and returns 0. @@ -272,18 +272,6 @@ public: // be read and stored in the <message_block>. The read will start // at <offset> from the beginning of the file. - // We don;t need to redefine the following function again because it - // has already been defined in ACE_Asynch_Read_Stream_Impl. But we - // still need it here to supress a overwriting pure virtual function - // warning in KAI compiler. - virtual int read (ACE_Message_Block &message_block, - u_long bytes_to_read, - const void *act, - int priority, - int signal_number) = 0; - // This starts off an asynchronous read. Upto <bytes_to_read> will - // be read and stored in the <message_block>. - protected: ACE_Asynch_Read_File_Impl (void); // Do-nothing constructor. @@ -330,18 +318,6 @@ public: // will be write and stored in the <message_block>. The write will // start at <offset> from the beginning of the file. - // We don;t need to redefine the following function again because it - // has already been defined in ACE_Asynch_Write_Stream_Impl. But we - // still need it here to supress a overwriting pure virtual function - // warning in KAI compiler. - virtual int write (ACE_Message_Block &message_block, - u_long bytes_to_write, - const void *act, - int priority, - int signal_number) = 0; - // This starts off an asynchronous write. Upto <bytes_to_write> - // will be written from the <message_block>. - protected: ACE_Asynch_Write_File_Impl (void); // Do-nothing constructor. diff --git a/ace/Atomic_Op.i b/ace/Atomic_Op.i index 28f1bab5d89..8c56bb42ba2 100644 --- a/ace/Atomic_Op.i +++ b/ace/Atomic_Op.i @@ -1,4 +1,3 @@ -// -*- C++ -*- // $Id$ template <class ACE_LOCK, class TYPE> ACE_INLINE TYPE diff --git a/ace/Basic_Types.h b/ace/Basic_Types.h index 367710a3c1f..8b8f517840f 100644 --- a/ace/Basic_Types.h +++ b/ace/Basic_Types.h @@ -184,9 +184,6 @@ typedef ACE_UINT16 ACE_USHORT16; # if ACE_SIZEOF_INT == 4 typedef int ACE_INT32; typedef unsigned int ACE_UINT32; -# if defined (__KCC) && !defined (ACE_LACKS_LONGLONG_T) - typedef unsigned long long ACE_UINT64; -# endif /* __KCC */ # elif ACE_SIZEOF_LONG == 4 typedef long ACE_INT32; typedef unsigned long ACE_UINT32; diff --git a/ace/CDR_Stream.h b/ace/CDR_Stream.h index 22634aefbc3..36c2f683526 100644 --- a/ace/CDR_Stream.h +++ b/ace/CDR_Stream.h @@ -49,7 +49,6 @@ #define ACE_CDR_H #include "ace/Message_Block.h" -#include "ace/SString.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once @@ -130,13 +129,13 @@ public: // Definitions of the IDL basic types, for use in the CDR // classes. The cleanest way to avoid complaints from all compilers // is to define them all. - #if defined (CHORUS) && defined (ghs) && !defined (__STANDARD_CXX) + #if defined (ghs) && defined (CHORUS) // This is non-compliant, but a nasty bout with // Green Hills C++68000 1.8.8 forces us into it. typedef unsigned long Boolean; - #else /* ! (CHORUS && ghs 1.8.8) */ + #else /* ! (ghs && CHORUS) */ typedef u_char Boolean; - #endif /* ! (CHORUS && ghs 1.8.8) */ + #endif /* ! (ghs && CHORUS) */ typedef u_char Octet; typedef char Char; @@ -152,7 +151,7 @@ public: # elif ACE_SIZEOF_LONG == 8 typedef long LongLong; # elif ACE_SIZEOF_LONG_LONG == 8 && !defined (ACE_LACKS_LONGLONG_T) - # if defined (sun) && !defined (ACE_LACKS_U_LONGLONG_T) && !defined (__KCC) + # if defined (sun) && !defined (ACE_LACKS_U_LONGLONG_T) // sun #defines u_longlong_t, maybe other platforms do also. // Use it, at least with g++, so that its -pedantic doesn't // complain about no ANSI C++ long long. @@ -410,9 +409,6 @@ public: const ACE_Message_Block *end (void) const; // Return the last message in the chain that is is use. - const ACE_Message_Block *current (void) const; - // Return the <current_> message block in chain. - const char *buffer (void) const; size_t length (void) const; diff --git a/ace/CDR_Stream.i b/ace/CDR_Stream.i index 529eb077061..811bf84d670 100644 --- a/ace/CDR_Stream.i +++ b/ace/CDR_Stream.i @@ -157,9 +157,7 @@ ACE_INLINE void ACE_OutputCDR::reset (void) { this->current_ = &this->start_; - - for (ACE_Message_Block *i = &this->start_; i; i = i->cont()) - ACE_CDR::mb_align (i); + ACE_CDR::mb_align (&this->start_); } // Decode the CDR stream. @@ -427,12 +425,6 @@ ACE_OutputCDR::end (void) const return this->current_->cont (); } -ACE_INLINE const ACE_Message_Block* -ACE_OutputCDR::current (void) const -{ - return this->current_; -} - ACE_INLINE size_t ACE_OutputCDR::total_length (void) const { diff --git a/ace/CORBA_macros.h b/ace/CORBA_macros.h index c540e5af1f6..7b115f21745 100644 --- a/ace/CORBA_macros.h +++ b/ace/CORBA_macros.h @@ -363,13 +363,13 @@ ACE_Guard<MUTEX> OBJ (LOCK); \ if (OBJ.locked () == 0) ACE_THROW_INT (EXCEPTION); -# define ACE_READ_GUARD_THROW_EX(MUTEX,OBJ,LOCK,EXCEPTION) \ +# define ACE_READ_GUARD_THROW_EX(MUTEX,OBJ,LOCK) \ ACE_Read_Guard<MUTEX> OBJ (LOCK); \ - if (OBJ.locked () == 0) ACE_THROW_INT (EXCEPTION); + if (OBJ.locked () == 0) return; -# define ACE_WRITE_GUARD_THROW_EX(MUTEX,OBJ,LOCK,EXCEPTION) \ +# define ACE_WRITE_GUARD_THROW_EX(MUTEX,OBJ,LOCK) \ ACE_Write_Guard<MUTEX> OBJ (LOCK); \ - if (OBJ.locked () == 0) ACE_THROW_INT (EXCEPTION); + if (OBJ.locked () == 0) return; // The following ACE_GUARD_THROW* macros are to be depricated soon. // -------------------- Start Depricated -------------------- diff --git a/ace/Containers.h b/ace/Containers.h index eb9b107b74f..7423348cbcb 100644 --- a/ace/Containers.h +++ b/ace/Containers.h @@ -18,7 +18,6 @@ #define ACE_CONTAINERS_H #include "ace/OS.h" -#include "ace/Malloc_Base.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once diff --git a/ace/Containers_T.cpp b/ace/Containers_T.cpp index 44ab889ab61..78d7516369c 100644 --- a/ace/Containers_T.cpp +++ b/ace/Containers_T.cpp @@ -146,7 +146,7 @@ ACE_Unbounded_Stack<T>::ACE_Unbounded_Stack (ACE_Allocator *alloc) this->allocator_ = ACE_Allocator::instance (); ACE_NEW_MALLOC (this->head_, - (ACE_Node<T> *) this->allocator_->malloc (sizeof (ACE_Node<T>)), + (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), ACE_Node<T>); this->head_->next_ = this->head_; } @@ -185,7 +185,7 @@ ACE_Unbounded_Stack<T>::copy_all_nodes (const ACE_Unbounded_Stack<T> &s) { ACE_Node<T> *nptr = temp->next_; ACE_NEW_MALLOC (temp->next_, - (ACE_Node<T> *) this->allocator_->malloc (sizeof (ACE_Node<T>)), + (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), ACE_Node<T> (s_temp->item_, nptr)); temp = temp->next_; } @@ -202,7 +202,7 @@ ACE_Unbounded_Stack<T>::ACE_Unbounded_Stack (const ACE_Unbounded_Stack<T> &s) this->allocator_ = ACE_Allocator::instance (); ACE_NEW_MALLOC (this->head_, - (ACE_Node<T> *) this->allocator_->malloc (sizeof (ACE_Node<T>)), + (ACE_Node<T>*) this->allocator_->malloc( sizeof (ACE_Node<T>)), ACE_Node<T>); this->head_->next_ = this->head_; @@ -228,10 +228,8 @@ ACE_Unbounded_Stack<T>::~ACE_Unbounded_Stack (void) // ACE_TRACE ("ACE_Unbounded_Stack<T>::~ACE_Unbounded_Stack"); this->delete_all_nodes (); - ACE_DES_FREE_TEMPLATE (head_, - this->allocator_->free, - ACE_Node, - <T>); + ACE_DES_FREE_TEMPLATE (head_, this->allocator_->free, + ACE_Node, <T>); } template<class T> int @@ -242,9 +240,8 @@ ACE_Unbounded_Stack<T>::push (const T &new_item) ACE_Node<T> *temp; ACE_NEW_MALLOC_RETURN (temp, - (ACE_Node<T> *) this->allocator_->malloc (sizeof (ACE_Node<T>)), - ACE_Node<T> (new_item, this->head_->next_), - -1); + (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), + ACE_Node<T> (new_item, this->head_->next_), -1); this->head_->next_ = temp; this->cur_size_++; @@ -264,10 +261,8 @@ ACE_Unbounded_Stack<T>::pop (T &item) item = temp->item_; this->head_->next_ = temp->next_; - ACE_DES_FREE_TEMPLATE (temp, - this->allocator_->free, - ACE_Node, - <T>); + ACE_DES_FREE_TEMPLATE (temp, this->allocator_->free, + ACE_Node, <T>); this->cur_size_--; return 0; } @@ -323,10 +318,8 @@ ACE_Unbounded_Stack<T>::remove (const T &item) // Skip over the node that we're deleting. curr->next_ = temp->next_; this->cur_size_--; - ACE_DES_FREE_TEMPLATE (temp, - this->allocator_->free, - ACE_Node, - <T>); + ACE_DES_FREE_TEMPLATE (temp, this->allocator_->free, + ACE_Node, <T>); return 0; } } @@ -343,7 +336,7 @@ ACE_Unbounded_Queue<T>::ACE_Unbounded_Queue (ACE_Allocator *alloc) this->allocator_ = ACE_Allocator::instance (); ACE_NEW_MALLOC (this->head_, - (ACE_Node<T> *) this->allocator_->malloc (sizeof (ACE_Node<T>)), + (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), ACE_Node<T>); // Make the list circular by pointing it back to itself. @@ -362,7 +355,7 @@ ACE_Unbounded_Queue<T>::ACE_Unbounded_Queue (const ACE_Unbounded_Queue<T> &us) this->allocator_ = ACE_Allocator::instance (); ACE_NEW_MALLOC (this->head_, - (ACE_Node<T> *) this->allocator_->malloc (sizeof (ACE_Node<T>)), + (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), ACE_Node<T>); this->head_->next_ = this->head_; this->copy_nodes (us); @@ -445,8 +438,7 @@ ACE_Unbounded_Queue<T>::delete_nodes (void) ACE_DES_FREE_TEMPLATE (temp, this->allocator_->free, - ACE_Node, - <T>); + ACE_Node, <T>); this->cur_size_--; } @@ -460,10 +452,8 @@ ACE_Unbounded_Queue<T>::~ACE_Unbounded_Queue (void) // ACE_TRACE ("ACE_Unbounded_Queue<T>::~ACE_Unbounded_Queue (void)"); this->delete_nodes (); - ACE_DES_FREE_TEMPLATE (head_, - this->allocator_->free, - ACE_Node, - <T>); + ACE_DES_FREE_TEMPLATE (head_, this->allocator_->free, + ACE_Node, <T>); this->head_ = 0; } @@ -476,9 +466,8 @@ ACE_Unbounded_Queue<T>::enqueue_head (const T &new_item) // Create a new node that points to the original head. ACE_NEW_MALLOC_RETURN (temp, - (ACE_Node<T> *) this->allocator_->malloc (sizeof (ACE_Node<T>)), - ACE_Node<T> (new_item, this->head_->next_), - -1); + (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), + ACE_Node<T> (new_item, this->head_->next_), -1); // Link this pointer into the front of the list. this->head_->next_ = temp; @@ -499,7 +488,7 @@ ACE_Unbounded_Queue<T>::enqueue_tail (const T &new_item) // Create a new dummy node. ACE_NEW_MALLOC_RETURN (temp, - (ACE_Node<T> *) this->allocator_->malloc (sizeof (ACE_Node<T>)), + (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), ACE_Node<T> (this->head_->next_), -1); // Link this dummy pointer into the list. @@ -525,10 +514,8 @@ ACE_Unbounded_Queue<T>::dequeue_head (T &item) item = temp->item_; this->head_->next_ = temp->next_; - ACE_DES_FREE_TEMPLATE (temp, - this->allocator_->free, - ACE_Node, - <T>); + ACE_DES_FREE_TEMPLATE (temp, this->allocator_->free, + ACE_Node, <T>); --this->cur_size_; return 0; } @@ -784,9 +771,8 @@ ACE_Double_Linked_List<T>::~ACE_Double_Linked_List (void) { this->delete_nodes (); - ACE_DES_FREE (head_, - this->allocator_->free, - T); + ACE_DES_FREE (head_, this->allocator_->free, + T); this->head_ = 0; } @@ -1204,8 +1190,7 @@ ACE_Bounded_Set<T>::ACE_Bounded_Set (void) { ACE_TRACE ("ACE_Bounded_Set<T>::ACE_Bounded_Set"); - ACE_NEW (this->search_structure_, - ACE_Bounded_Set<T>::Search_Structure[this->max_size_]); + ACE_NEW (this->search_structure_, ACE_Bounded_Set<T>::Search_Structure[this->max_size_]); for (size_t i = 0; i < this->max_size_; i++) this->search_structure_[i].is_free_ = 1; @@ -1218,8 +1203,7 @@ ACE_Bounded_Set<T>::ACE_Bounded_Set (const ACE_Bounded_Set<T> &bs) { ACE_TRACE ("ACE_Bounded_Set<T>::ACE_Bounded_Set"); - ACE_NEW (this->search_structure_, - ACE_Bounded_Set<T>::Search_Structure[this->max_size_]); + ACE_NEW (this->search_structure_, ACE_Bounded_Set<T>::Search_Structure[this->max_size_]); for (size_t i = 0; i < this->cur_size_; i++) this->search_structure_[i] = bs.search_structure_[i]; @@ -1253,8 +1237,7 @@ ACE_Bounded_Set<T>::ACE_Bounded_Set (size_t size) max_size_ (size) { ACE_TRACE ("ACE_Bounded_Set<T>::ACE_Bounded_Set"); - ACE_NEW (this->search_structure_, - ACE_Bounded_Set<T>::Search_Structure[size]); + ACE_NEW (this->search_structure_, ACE_Bounded_Set<T>::Search_Structure[size]); for (size_t i = 0; i < this->max_size_; i++) this->search_structure_[i].is_free_ = 1; @@ -1464,12 +1447,10 @@ ACE_DNode<T>::ACE_DNode (const T &i, ACE_DNode<T> *n, ACE_DNode<T> *p) { } -# if ! defined (ACE_HAS_BROKEN_NOOP_DTORS) template <class T> ACE_DNode<T>::~ACE_DNode (void) { } -# endif /* ! defined (ACE_HAS_BROKEN_NOOP_DTORS) */ ACE_ALLOC_HOOK_DEFINE(ACE_Unbounded_Set) @@ -1492,8 +1473,7 @@ ACE_Unbounded_Set<T>::insert_tail (const T &item) // Create a new dummy node. ACE_NEW_MALLOC_RETURN (temp, (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), - ACE_Node<T> (this->head_->next_), - -1); + ACE_Node<T> (this->head_->next_), -1); // Link this pointer into the list. this->head_->next_ = temp; @@ -1556,10 +1536,8 @@ ACE_Unbounded_Set<T>::delete_nodes (void) { ACE_Node<T> *temp = curr; curr = curr->next_; - ACE_DES_FREE_TEMPLATE (temp, - this->allocator_->free, - ACE_Node, - <T>); + ACE_DES_FREE_TEMPLATE (temp, this->allocator_->free, + ACE_Node, <T>); this->cur_size_--; } @@ -1575,10 +1553,8 @@ ACE_Unbounded_Set<T>::~ACE_Unbounded_Set (void) this->delete_nodes (); // Delete the dummy node. - ACE_DES_FREE_TEMPLATE (head_, - this->allocator_->free, - ACE_Node, - <T>); + ACE_DES_FREE_TEMPLATE (head_, this->allocator_->free, + ACE_Node, <T>); this->head_ = 0; } @@ -1680,10 +1656,8 @@ ACE_Unbounded_Set<T>::remove (const T &item) // Skip over the node that we're deleting. curr->next_ = temp->next_; this->cur_size_--; - ACE_DES_FREE_TEMPLATE (temp, - this->allocator_->free, - ACE_Node, - <T>); + ACE_DES_FREE_TEMPLATE (temp, this->allocator_->free, + ACE_Node, <T>); return 0; } } @@ -1960,11 +1934,9 @@ ACE_Ordered_MultiSet<T>::remove (const T &item) this->cur_size_--; - ACE_DES_FREE_TEMPLATE (node, - this->allocator_->free, - ACE_DNode, - <T>); - return 0; + ACE_DES_FREE_TEMPLATE (node, this->allocator_->free, ACE_DNode, <T>); + + return 0; } return -1; @@ -2027,10 +1999,10 @@ ACE_Ordered_MultiSet<T>::insert_from (const T &item, ACE_DNode<T> *position, // create a new node ACE_DNode<T> *temp; - ACE_NEW_MALLOC_RETURN (temp, - (ACE_DNode<T>*) this->allocator_->malloc (sizeof (ACE_DNode<T>)), - ACE_DNode<T> (item), - -1); + ACE_NEW_MALLOC_RETURN ( + temp, + (ACE_DNode<T>*) this->allocator_->malloc (sizeof (ACE_DNode<T>)), + ACE_DNode<T> (item), -1); // obtain approximate location of the node int result = locate (item, position, position); @@ -2178,23 +2150,20 @@ template <class T> void ACE_Ordered_MultiSet<T>::delete_nodes (void) { // iterate through list, deleting nodes - for (ACE_DNode<T> *curr = this->head_; - curr != 0; - ) - { - ACE_DNode<T> *temp = curr; - curr = curr->next_; - ACE_DES_FREE_TEMPLATE (temp, - this->allocator_->free, - ACE_DNode, - <T>); - } + ACE_DNode<T> *curr = this->head_; + while (curr) + { + ACE_DNode<T> *temp = curr; + curr = curr->next_; + ACE_DES_FREE_TEMPLATE (temp, this->allocator_->free, ACE_DNode, <T>); + } this->head_ = 0; this->tail_ = 0; this->cur_size_ = 0; } + ACE_ALLOC_HOOK_DEFINE(ACE_Ordered_MultiSet_Iterator) template <class T> @@ -2225,10 +2194,10 @@ template <class T> T * ACE_DLList<T>::insert_tail (T *new_item) { ACE_DLList_Node *temp1, *temp2; - ACE_NEW_MALLOC_RETURN (temp1, - (ACE_DLList_Node *) this->allocator_->malloc (sizeof (ACE_DLList_Node)), - ACE_DLList_Node ((void *&)new_item), - 0); + ACE_NEW_MALLOC_RETURN ( + temp1, + (ACE_DLList_Node *) this->allocator_->malloc (sizeof (ACE_DLList_Node)), + ACE_DLList_Node ((void *&)new_item), 0); temp2 = ACE_DLList_Base::insert_tail (temp1); return (T *) (temp2 ? temp2->item_ : 0); @@ -2252,9 +2221,7 @@ ACE_DLList<T>::delete_head (void) { ACE_DLList_Node *temp1 = ACE_DLList_Base::delete_head (); T *temp2 = (T *) (temp1 ? temp1->item_ : 0); - ACE_DES_FREE (temp1, - this->allocator_->free, - ACE_DLList_Node); + ACE_DES_FREE (temp1, this->allocator_->free, ACE_DLList_Node); return temp2; } @@ -2264,9 +2231,8 @@ ACE_DLList<T>::delete_tail (void) { ACE_DLList_Node *temp1 = ACE_DLList_Base::delete_tail (); T *temp2 = (T *) (temp1 ? temp1->item_ : 0); - ACE_DES_FREE (temp1, - this->allocator_->free, - ACE_DLList_Node); + ACE_DES_FREE (temp1, this->allocator_->free, ACE_DLList_Node); + return temp2; } @@ -2275,49 +2241,26 @@ ACE_DLList<T>::delete_tail (void) // Dynamically initialize an array. template <class T> -ACE_Array_Base<T>::ACE_Array_Base (size_t size, - ACE_Allocator *alloc) +ACE_Array_Base<T>::ACE_Array_Base (size_t size) : max_size_ (size), - cur_size_ (size), - allocator_ (alloc) + cur_size_ (size) { - if (this->allocator_ == 0) - this->allocator_ = ACE_Allocator::instance (); - if (size != 0) - { - ACE_NEW_MALLOC (this->array_, - (T *) this->allocator_->malloc (size * sizeof (T)), - T); - for (size_t i = 0; i < size; ++i) - new (&array_[i]) T; - } + ACE_NEW (this->array_, T[size]); else this->array_ = 0; } template <class T> ACE_Array_Base<T>::ACE_Array_Base (size_t size, - const T &default_value, - ACE_Allocator *alloc) + const T &default_value) : max_size_ (size), - cur_size_ (size), - allocator_ (alloc) + cur_size_ (size) { - if (this->allocator_ == 0) - this->allocator_ = ACE_Allocator::instance (); + ACE_NEW (this->array_, T[size]); - if (size != 0) - { - ACE_NEW_MALLOC (this->array_, - (T *) this->allocator_->malloc (size * sizeof (T)), - T); - - for (size_t i = 0; i < size; ++i) - new (&array_[i]) T (default_value); - } - else - this->array_ = 0; + for (size_t i = 0; i < size; i++) + this->array_[i] = default_value; } // The copy constructor (performs initialization). @@ -2325,18 +2268,12 @@ ACE_Array_Base<T>::ACE_Array_Base (size_t size, template <class T> ACE_Array_Base<T>::ACE_Array_Base (const ACE_Array_Base<T> &s) : max_size_ (s.size ()), - cur_size_ (s.size ()), - allocator_ (s.allocator_) + cur_size_ (s.size ()) { - if (this->allocator_ == 0) - this->allocator_ = ACE_Allocator::instance (); - - ACE_NEW_MALLOC (this->array_, - (T *) this->allocator_->malloc (s.size () * sizeof (T)), - T); + ACE_NEW (this->array_, T[s.size ()]); for (size_t i = 0; i < this->size (); i++) - new (&this->array_[i]) T (s.array_[i]); + this->array_[i] = s.array_[i]; } // Assignment operator (performs assignment). @@ -2350,21 +2287,16 @@ ACE_Array_Base<T>::operator= (const ACE_Array_Base<T> &s) { if (this->max_size_ < s.size ()) { - ACE_DES_ARRAY_FREE (this->array_, - this->max_size_, - this->allocator_->free, - T); - - ACE_NEW_MALLOC (this->array_, - (T *) this->allocator_->malloc (s.size () * sizeof (T)), - T); + delete [] this->array_; + ACE_NEW (this->array_, + T[s.size ()]); this->max_size_ = s.size (); } this->cur_size_ = s.size (); for (size_t i = 0; i < this->size (); i++) - new (&this->array_[i]) T (s.array_[i]); + this->array_[i] = s.array_[i]; } } @@ -2391,7 +2323,7 @@ ACE_Array_Base<T>::get (T &item, size_t index) const { // Copies the item. If you don't want to copy, use operator [] // instead (but then you'll be responsible for range checking). - item = this->array_[index]; + item = this->array_[index]; return 0; } else @@ -2403,31 +2335,19 @@ ACE_Array_Base<T>::max_size (size_t new_size) { if (new_size > this->max_size_) { - T *tmp; - - ACE_NEW_MALLOC_RETURN (tmp, - (T *) this->allocator_->malloc (new_size * sizeof (T)), - T, - -1); + // @@ We should use auto_ptr<>! + T* tmp; + ACE_NEW_RETURN (tmp, + T[new_size], + -1); for (size_t i = 0; i < this->cur_size_; ++i) - new (&tmp[i]) T (this->array_[i]); - - // Initialize the new portion of the array that exceeds the - // previously allocated section. - for (size_t j = this->cur_size_; j < new_size; j++) - new (&tmp[j]) T; - - ACE_DES_ARRAY_FREE (this->array_, - this->max_size_, - this->allocator_->free, - T); + tmp[i] = this->array_[i]; + delete[] this->array_; this->array_ = tmp; this->max_size_ = new_size; - this->cur_size_ = new_size; } - return 0; } diff --git a/ace/Containers_T.h b/ace/Containers_T.h index 73ef014d561..e8b8bb16518 100644 --- a/ace/Containers_T.h +++ b/ace/Containers_T.h @@ -219,10 +219,8 @@ class ACE_DNode public: -# if ! defined (ACE_HAS_BROKEN_NOOP_DTORS) ~ACE_DNode (void); - // This isn't necessary, but it keeps some compilers happy. -# endif /* ! defined (ACE_HAS_BROKEN_NOOP_DTORS) */ + // This isn't necessary, but it keeps the compiler happy. private: @@ -1400,13 +1398,10 @@ public: // = Initialization and termination methods. - ACE_Array_Base (size_t size = 0, - ACE_Allocator *alloc = 0); + ACE_Array_Base (size_t size = 0); // Dynamically create an uninitialized array. - ACE_Array_Base (size_t size, - const T &default_value, - ACE_Allocator *alloc = 0); + ACE_Array_Base (size_t size, const T &default_value); // Dynamically initialize the entire array to the <default_value>. ACE_Array_Base (const ACE_Array_Base<T> &s); @@ -1481,9 +1476,6 @@ private: T *array_; // Pointer to the array's storage buffer. - ACE_Allocator *allocator_; - // Allocation strategy of the ACE_Array_Base. - friend class ACE_Array_Iterator<T>; }; @@ -1508,13 +1500,10 @@ public: // = Initialization and termination methods. - ACE_Array (size_t size = 0, - ACE_Allocator* alloc = 0); + ACE_Array (size_t size = 0); // Dynamically create an uninitialized array. - ACE_Array (size_t size, - const T &default_value, - ACE_Allocator* alloc = 0); + ACE_Array (size_t size, const T &default_value); // Dynamically initialize the entire array to the <default_value>. ACE_Array (const ACE_Array<T> &s); diff --git a/ace/Containers_T.i b/ace/Containers_T.i index 9d59bf2ee0a..ebca9194910 100644 --- a/ace/Containers_T.i +++ b/ace/Containers_T.i @@ -308,10 +308,7 @@ ACE_Ordered_MultiSet<T>::size (void) const template <class T> ACE_INLINE ACE_Array_Base<T>::~ACE_Array_Base (void) { - ACE_DES_ARRAY_FREE (this->array_, - this->max_size_, - this->allocator_->free, - T); + delete [] this->array_; } template <class T> ACE_INLINE size_t @@ -347,17 +344,15 @@ ACE_Array_Base<T>::operator[] (size_t index) const // **************************************************************** template <class T> ACE_INLINE -ACE_Array<T>::ACE_Array (size_t size, - ACE_Allocator *alloc) - : ACE_Array_Base<T> (size, alloc) +ACE_Array<T>::ACE_Array (size_t size) + : ACE_Array_Base<T>(size) { } template <class T> ACE_INLINE ACE_Array<T>::ACE_Array (size_t size, - const T &default_value, - ACE_Allocator *alloc) - : ACE_Array_Base<T> (size, default_value, alloc) + const T &default_value) + : ACE_Array_Base<T> (size, default_value) { } @@ -456,9 +451,7 @@ template <class T> ACE_INLINE int ACE_DLList<T>::remove (ACE_DLList_Node *n) { int result = ACE_DLList_Base::remove (n); - ACE_DES_FREE (n, - this->allocator_->free, - ACE_DLList_Node); + ACE_DES_FREE (n, this->allocator_->free, ACE_DLList_Node); return result; } diff --git a/ace/Containers_bad.i b/ace/Containers_bad.i deleted file mode 100644 index 471a9d559d5..00000000000 --- a/ace/Containers_bad.i +++ /dev/null @@ -1,25 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -ACE_INLINE -ACE_DLList_Node::ACE_DLList_Node (void) - : item_ (0), - next_ (0), - prev_ (0) -{ -} - -ACE_INLINE -ACE_DLList_Node::ACE_DLList_Node (void *&i, - ACE_DLList_Node *n, - ACE_DLList_Node *p) - : item_ (i), - next_ (n), - prev_ (p) -{ -} - -ACE_INLINE -ACE_DLList_Node::~ACE_DLList_Node (void) -{ -} diff --git a/ace/DLL.cpp b/ace/DLL.cpp index 44e935f62b2..f443ab7cc1a 100644 --- a/ace/DLL.cpp +++ b/ace/DLL.cpp @@ -5,8 +5,8 @@ #include "ace/DLL.h" ACE_RCSID(ace, DLL, "$Id$") - -// Default constructor. Also, by default, the object will be closed + +// Default constructor. Also, by default, the object will be closed // before it is destroyed. ACE_DLL::ACE_DLL (int close_on_destruction) @@ -17,7 +17,7 @@ ACE_DLL::ACE_DLL (int close_on_destruction) // If the library name and the opening mode are specified than on // object creation the library is implicitly opened. - + ACE_DLL::ACE_DLL (ACE_DL_TYPE dll_name, int open_mode, int close_on_destruction) @@ -26,7 +26,7 @@ ACE_DLL::ACE_DLL (ACE_DL_TYPE dll_name, { if (this->handle_ == ACE_SHLIB_INVALID_HANDLE) ACE_ERROR ((LM_ERROR, - ASYS_TEXT ("%s\n"), + "%s\n", this->error ())); } @@ -39,19 +39,19 @@ ACE_DLL::~ACE_DLL (void) // CLose the library only if it hasn't been already. this->close (); } - + // This method opens the library based on the mode specified using the // ACE_SHLIB_HANDLE which is obtained on making the ACE_OS::dlopen call. // The default mode is: -// RTLD_LAZY Only references to data symbols are relocate when the +// RTLD_LAZY Only references to data symbols are relocate when the // object is first loaded. // The other modes include: // RTLD_NOW All necessary relocations are performed when the // object is first loaded. // RTLD_GLOBAL The object symbols are made available for the -// relocation processing of any other object. +// relocation processing of any other object. -int +int ACE_DLL::open (ACE_DL_TYPE dll_filename, int open_mode, int close_on_destruction) @@ -80,7 +80,7 @@ ACE_DLL::open (ACE_DL_TYPE dll_filename, if (this->handle_ == ACE_SHLIB_INVALID_HANDLE) ACE_ERROR_RETURN ((LM_ERROR, - ASYS_TEXT ("%s\n"), this->error ()), + "%s\n", this->error ()), -1); return 0; } @@ -96,7 +96,7 @@ ACE_DLL::symbol (ACE_DL_TYPE sym_name) // The library is closed using the ACE_SHLIB_HANDLE obejct. i.e. The // shared object is now disassociated form the current process. -int +int ACE_DLL::close (void) { int retval = 0; @@ -121,7 +121,7 @@ char * ACE_DLL::error (void) { return ACE_OS::dlerror (); -} +} // Return the handle to the user either temporarily or forever, thus // orphaning it. If 0 means the user wants the handle forever and if 1 @@ -140,21 +140,21 @@ ACE_DLL::get_handle (int become_owner) return this->handle_; } -// Set the handle for the DLL. By default, the object will be closed +// Set the handle for the DLL. By default, the object will be closed // before it is destroyed. int -ACE_DLL::set_handle (ACE_SHLIB_HANDLE handle, +ACE_DLL::set_handle (ACE_SHLIB_HANDLE handle, int close_on_destruction) { // Close the handle in use before accepting the next one. if (this->close () == -1) ACE_ERROR_RETURN ((LM_ERROR, - ASYS_TEXT ("%s\n"), this->error ()), + "%s\n", this->error ()), -1); - + this->handle_ = handle; this->close_on_destruction_ = close_on_destruction; - + return 0; } diff --git a/ace/FILE_Connector.h b/ace/FILE_Connector.h index 6d8eb9b1333..f00195b1ccb 100644 --- a/ace/FILE_Connector.h +++ b/ace/FILE_Connector.h @@ -38,7 +38,7 @@ public: const ACE_Addr &local_sap = ACE_Addr::sap_any, int reuse_addr = 0, int flags = O_RDWR | O_CREAT, - int perms = ACE_DEFAULT_FILE_PERMS); + int perms = 0); // Actively ``connect'' and produce a <new_io> <ACE_FILE_IO> object // if things go well. The <remote_sap> is the file that we are // trying to create/open. If it's the default value of @@ -60,7 +60,7 @@ public: const ACE_Addr &local_sap = ACE_Addr::sap_any, int reuse_addr = 0, int flags = O_RDWR | O_CREAT, - int perms = ACE_DEFAULT_FILE_PERMS); + int perms = 0); // Actively ``connect'' and produce a <new_io> <ACE_FILE_IO> object // if things go well. The <remote_sap> is the file that we are // trying to create/open. If it's the default value of diff --git a/ace/FILE_IO.cpp b/ace/FILE_IO.cpp index 3486629e491..594f59d6ca1 100644 --- a/ace/FILE_IO.cpp +++ b/ace/FILE_IO.cpp @@ -55,9 +55,7 @@ ACE_FILE_IO::send (size_t n, ...) const iovp[i].iov_len = va_arg (argp, int); } - ssize_t result = ACE_OS::writev (this->get_handle (), - iovp, - total_tuples); + ssize_t result = ACE_OS::writev (this->get_handle (), iovp, total_tuples); #if !defined (ACE_HAS_ALLOCA) delete [] iovp; #endif /* !defined (ACE_HAS_ALLOCA) */ @@ -92,9 +90,7 @@ ACE_FILE_IO::recv (size_t n, ...) const iovp[i].iov_len = va_arg (argp, int); } - ssize_t result = ACE_OS::readv (this->get_handle (), - iovp, - total_tuples); + ssize_t result = ACE_OS::readv (this->get_handle (), iovp, total_tuples); #if !defined (ACE_HAS_ALLOCA) delete [] iovp; #endif /* !defined (ACE_HAS_ALLOCA) */ @@ -102,29 +98,4 @@ ACE_FILE_IO::recv (size_t n, ...) const return result; } -// Allows a client to read from a file without having to provide a -// buffer to read. This method determines how much data is in the -// file, allocates a buffer of this size, reads in the data, and -// returns the number of bytes read. - -ssize_t -ACE_FILE_IO::recvv (iovec *io_vec) -{ - ACE_TRACE ("ACE_FILE_IO::recvv"); - - io_vec->iov_base = 0; - long length = ACE_OS::filesize (this->get_handle ()); - - if (length > 0) - { - ACE_NEW_RETURN (io_vec->iov_base, - char[length], - -1); - io_vec->iov_len = this->recv_n (io_vec->iov_base, - length); - return io_vec->iov_len; - } - else - return length; -} diff --git a/ace/FILE_IO.h b/ace/FILE_IO.h index 808bb76f730..37bd120df2e 100644 --- a/ace/FILE_IO.h +++ b/ace/FILE_IO.h @@ -92,37 +92,12 @@ public: // *total* number of trailing arguments, *not* a couple of the // number of tuple pairs! - ssize_t send (const void *buf, - size_t n, - ACE_OVERLAPPED *overlapped) const; + ssize_t send (const void *buf, size_t n, ACE_OVERLAPPED *overlapped) const; // Send <n> bytes via Win32 WriteFile using overlapped I/O. - ssize_t recv (void *buf, - size_t n, - ACE_OVERLAPPED *overlapped) const; + ssize_t recv (void *buf, size_t n, ACE_OVERLAPPED *overlapped) const; // Recv <n> bytes via Win32 ReadFile using overlapped I/O. - ssize_t sendv (const iovec iov[], - size_t n) const; - // Send an <iovec> of size <n> to the file. - - ssize_t recvv (iovec *io_vec); - // Allows a client to read from a file without having to provide a - // buffer to read. This method determines how much data is in the - // file, allocates a buffer of this size, reads in the data, and - // returns the number of bytes read. The caller is responsible for - // deleting the member in the <iov_base> field of <io_vec> using - // delete [] io_vec->iov_base. - - ssize_t sendv_n (const iovec iov[], - size_t n) const; - // Send an <iovec> of size <n> to the file. Will block until all - // bytes are sent or an error occurs. - - ssize_t recvv_n (iovec iov[], - size_t n) const; - // Receive an <iovec> of size <n> to the file. - void dump (void) const; // Dump the state of an object. diff --git a/ace/FILE_IO.i b/ace/FILE_IO.i index ab5956c468c..36cc4fd01d6 100644 --- a/ace/FILE_IO.i +++ b/ace/FILE_IO.i @@ -3,37 +3,6 @@ // FILE_IO.i -ASYS_INLINE ssize_t -ACE_FILE_IO::sendv_n (const iovec iov[], size_t n) const -{ - ACE_TRACE ("ACE_FILE_IO::sendv_n"); - return ACE::writev_n (this->get_handle (), - iov, - n); -} - -// Recv an n byte message from the file. - -ASYS_INLINE ssize_t -ACE_FILE_IO::recvv_n (iovec iov[], size_t n) const -{ - ACE_TRACE ("ACE_FILE_IO::recvv_n"); - // @@ Carlos, can you please update this to call the - // new ACE::recvv_n() method that you write? - return ACE_OS::readv (this->get_handle (), - iov, - n); -} - -// Send an <iovec> of size <n> to the file. - -ASYS_INLINE ssize_t -ACE_FILE_IO::sendv (const iovec iov[], size_t n) const -{ - ACE_TRACE ("ACE_FILE_IO::sendv"); - return ACE_OS::writev (this->get_handle (), iov, n); -} - // Send exactly N bytes from BUF to this file. Keeping trying until // this many bytes are sent. @@ -129,5 +98,4 @@ ACE_FILE_IO::recv (void *buf, size_t n, return ACE_OS::read (this->get_handle (), (char *) buf, n, overlapped); } - #endif /* ACE_HAS_STREAM_PIPES */ diff --git a/ace/Filecache.cpp b/ace/Filecache.cpp index edf8d04eabe..794ebb19e89 100644 --- a/ace/Filecache.cpp +++ b/ace/Filecache.cpp @@ -136,7 +136,6 @@ ACE_Filecache_Handle::size (void) const #define ACE_Filecache_Hash_Entry \ ACE_Hash_Map_Entry<const char *, ACE_Filecache_Object *> -/* template<> */ ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (const char *const &ext_id, ACE_Filecache_Object *const &int_id, ACE_Filecache_Hash_Entry *next, @@ -148,7 +147,6 @@ ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (const char *const &ext_id, { } -/* template<> */ ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (ACE_Filecache_Hash_Entry *next, ACE_Filecache_Hash_Entry *prev) : ext_id_ (0), @@ -157,7 +155,6 @@ ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (ACE_Filecache_Hash_Entry *next, { } -/* template<> */ ACE_Filecache_Hash_Entry::~ACE_Hash_Map_Entry (void) { ACE_OS::free ((void *) ext_id_); @@ -166,13 +163,13 @@ ACE_Filecache_Hash_Entry::~ACE_Hash_Map_Entry (void) // We need these template specializations since KEY is defined as a // char*, which doesn't have a hash() or equal() method defined on it. -/* template<> */ long unsigned int +long unsigned int ACE_Filecache_Hash::hash (const char *const &ext_id) { return ACE::hash_pjw (ext_id); } -/* template<> */ int +int ACE_Filecache_Hash::equal (const char *const &id1, const char *const &id2) { return ACE_OS::strcmp (id1, id2) == 0; diff --git a/ace/FlReactor.cpp b/ace/FlReactor.cpp deleted file mode 100644 index 6759770eee4..00000000000 --- a/ace/FlReactor.cpp +++ /dev/null @@ -1,309 +0,0 @@ -// $Id$ - -#define ACE_BUILD_DLL -#include "ace/FlReactor.h" -#include "ace/Synch_T.h" - -ACE_RCSID(ace, FlReactor, "$Id$") - -#if defined (ACE_HAS_FL) - -#include <FL/Fl.h> - -ACE_ALLOC_HOOK_DEFINE (ACE_FlReactor) - -// Must be called with lock held -ACE_FlReactor::ACE_FlReactor (size_t size, - int restart, - ACE_Sig_Handler *h) - : ACE_Select_Reactor (size, restart, h) -{ - // When the ACE_Select_Reactor is constructed it creates the notify - // pipe and registers it with the register_handler_i() method. The - // FlReactor overloads this method BUT because the - // register_handler_i occurs when constructing the base class - // ACE_Select_Reactor, the ACE_Select_Reactor register_handler_i() - // is called not the FlReactor register_handler_i(). This means - // that the notify pipe is registered with the ACE_Select_Reactor - // event handling code not the FlReactor and so notfications don't - // work. To get around this we simply close and re-opened the - // notification handler in the constructor of the FlReactor. - -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - this->notify_handler_->close (); - this->notify_handler_->open (this, 0); -#endif /* ACE_MT_SAFE */ -} - -ACE_FlReactor::~ACE_FlReactor (void) -{ -} - -// This is just the <wait_for_multiple_events> from ace/Reactor.cpp -// but we use the Fl functions to wait for an event, not <select> - -int -ACE_FlReactor::wait_for_multiple_events (ACE_Select_Reactor_Handle_Set &handle_set, - ACE_Time_Value *max_wait_time) -{ - ACE_TRACE ("ACE_FlReactor::wait_for_multiple_events"); - int nfound; - - do - { - max_wait_time = this->timer_queue_->calculate_timeout (max_wait_time); - - size_t width = this->handler_rep_.max_handlep1 (); - handle_set.rd_mask_ = this->wait_set_.rd_mask_; - handle_set.wr_mask_ = this->wait_set_.wr_mask_; - handle_set.ex_mask_ = this->wait_set_.ex_mask_; - - // Check to make sure our handle's are all usable. - ACE_Select_Reactor_Handle_Set temp_set = handle_set; - - ACE_Time_Value zero = ACE_Time_Value::zero; - if (ACE_OS::select (width, - temp_set.rd_mask_, - temp_set.wr_mask_, - temp_set.ex_mask_, - &zero) == -1) - return -1; // Bad file arguments... - - // Instead of waiting using <select>, just use the Fl mechanism - // to wait for one or more events... - - // Wait for something to happen. - double t = 0; - if (max_wait_time != 0) - t = max_wait_time->sec () + max_wait_time->usec () / 1000000.0F; - - while (t > 0) { - t = Fl::wait (t); - } - - // Reset the width, in case it changed during the upcalls. - width = this->handler_rep_.max_handlep1 (); - - // Now actually read the result needed by the <Select_Reactor> - // using <select>. - zero = ACE_Time_Value::zero; - nfound = ACE_OS::select (width, - handle_set.rd_mask_, - handle_set.wr_mask_, - handle_set.ex_mask_, - &zero); - - } while (nfound == -1 && this->handle_error () > 0); - - if (nfound > 0) - { -#if !defined (ACE_WIN32) - handle_set.rd_mask_.sync (this->handler_rep_.max_handlep1 ()); - handle_set.wr_mask_.sync (this->handler_rep_.max_handlep1 ()); - handle_set.ex_mask_.sync (this->handler_rep_.max_handlep1 ()); -#endif /* ACE_WIN32 */ - } - return nfound; // Timed out or input available -} - -void -ACE_FlReactor::fl_io_proc (int fd, void* reactor) -{ - ACE_FlReactor *self = ACE_static_cast(ACE_FlReactor *, reactor); - ACE_HANDLE handle = (ACE_HANDLE)fd; //ACE_reinterpret_cast(ACE_HANDLE, fd); - - // my copy isn't const. - ACE_Time_Value zero = ACE_Time_Value::zero; - - ACE_Select_Reactor_Handle_Set wait_set; - - // Deal with one file event. - - // - read which kind of event - if (self->wait_set_.rd_mask_.is_set (handle)) - wait_set.rd_mask_.set_bit (handle); - if (self->wait_set_.wr_mask_.is_set (handle)) - wait_set.wr_mask_.set_bit (handle); - if (self->wait_set_.ex_mask_.is_set (handle)) - wait_set.ex_mask_.set_bit (handle); - - int result = ACE_OS::select (fd + 1, - wait_set.rd_mask_, - wait_set.wr_mask_, - wait_set.ex_mask_, &zero); - - ACE_Select_Reactor_Handle_Set dispatch_set; - - // - Use only that one file event (removes events for other files). - if (result > 0) - { - if (wait_set.rd_mask_.is_set (handle)) - dispatch_set.rd_mask_.set_bit (handle); - if (wait_set.wr_mask_.is_set (handle)) - dispatch_set.wr_mask_.set_bit (handle); - if (wait_set.ex_mask_.is_set (handle)) - dispatch_set.ex_mask_.set_bit (handle); - - self->dispatch (1, dispatch_set); - } -} - -void -ACE_FlReactor::fl_timeout_proc (void* reactor) -{ - ACE_FlReactor *self = ACE_static_cast (ACE_FlReactor *, reactor); - - // Deal with any timer events - ACE_Select_Reactor_Handle_Set handle_set; - self->dispatch (0, handle_set); - self->reset_timeout (); -} - - -int -ACE_FlReactor::register_handler_i (ACE_HANDLE handle, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask) -{ - ACE_TRACE ("ACE_FlReactor::register_handler_i"); - - int result = ACE_Select_Reactor::register_handler_i (handle, - handler, mask); - if (result == -1) - return -1; - - int condition = 0; - - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::READ_MASK)) - ACE_SET_BITS (condition, FL_READ); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::WRITE_MASK)) - ACE_SET_BITS (condition, FL_WRITE); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::EXCEPT_MASK)) - ACE_SET_BITS (condition, FL_EXCEPT); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::ACCEPT_MASK)) - ACE_SET_BITS (condition, FL_READ); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::CONNECT_MASK)) - { - ACE_SET_BITS (condition, FL_WRITE); // connected, you may write - ACE_SET_BITS (condition, FL_READ); // connected, you have data/err - } - - if (condition != 0) - { - Fl::add_fd ((int)handle, // ACE_reinterpret_cast(int,handle), - ACE_FlReactor::fl_io_proc, - this); - } - return 0; -} - -int -ACE_FlReactor::register_handler_i (const ACE_Handle_Set &handles, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask) -{ - return ACE_Select_Reactor::register_handler_i (handles, - handler, - mask); -} - -int -ACE_FlReactor::remove_handler_i (ACE_HANDLE handle, - ACE_Reactor_Mask mask) -{ - ACE_TRACE ("ACE_FlReactor::remove_handler_i"); - - // In the registration phase we registered first with - // ACE_Select_Reactor and then with X. Now we are now doing things - // in reverse order. - - // First clean up the corresponding X11Input. - Fl::remove_fd ((int)handle); // ACE_reinterpret_cast(int,handle)); - - // Now let the reactor do its work. - return ACE_Select_Reactor::remove_handler_i (handle, - mask); -} - -int -ACE_FlReactor::remove_handler_i (const ACE_Handle_Set &handles, - ACE_Reactor_Mask mask) -{ - return ACE_Select_Reactor::remove_handler_i (handles, - mask); -} - -// The following functions ensure that there is an Fl timeout for the -// first timeout in the Reactor's Timer_Queue. - -void -ACE_FlReactor::reset_timeout (void) -{ - ACE_Time_Value *max_wait_time = - this->timer_queue_->calculate_timeout (0); - - if (max_wait_time != 0) - { - float t = max_wait_time->sec () - + max_wait_time->usec () / 1000000.0F; - Fl::add_timeout (t, ACE_FlReactor::fl_timeout_proc, this); - } -} - -long -ACE_FlReactor::schedule_timer (ACE_Event_Handler *handler, - const void *arg, - const ACE_Time_Value &delta_time, - const ACE_Time_Value &interval) -{ - ACE_TRACE ("ACE_FlReactor::schedule_timer"); - ACE_MT (ACE_GUARD_RETURN (ACE_Select_Reactor_Token, ace_mon, this->token_, -1)); - - long result = ACE_Select_Reactor::schedule_timer (handler, - arg, - delta_time, - interval); - if (result == -1) - return -1; - else - { - this->reset_timeout (); - return result; - } -} - -int -ACE_FlReactor::cancel_timer (ACE_Event_Handler *handler, - int dont_call_handle_close) -{ - ACE_TRACE ("ACE_FlReactor::cancel_timer"); - - if (ACE_Select_Reactor::cancel_timer (handler, - dont_call_handle_close) == -1) - return -1; - else - { - this->reset_timeout (); - return 0; - } -} - -int -ACE_FlReactor::cancel_timer (long timer_id, - const void **arg, - int dont_call_handle_close) -{ - ACE_TRACE ("ACE_FlReactor::cancel_timer"); - - if (ACE_Select_Reactor::cancel_timer (timer_id, - arg, - dont_call_handle_close) == -1) - return -1; - else - { - this->reset_timeout (); - return 0; - } -} - -#endif /* ACE_HAS_FL */ diff --git a/ace/FlReactor.h b/ace/FlReactor.h deleted file mode 100644 index 93519596657..00000000000 --- a/ace/FlReactor.h +++ /dev/null @@ -1,111 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// ace -// -// = FILENAME -// FlReactor.h -// -// = AUTHOR -// Carlos O'Ryan <coryan@cs.wustl.edu> -// -// Based in part in the ACE_XtReactor implementation by: -// -// Eric C. Newton's <ecn@clark.net>, -// Kirill Rybaltchenko <Kirill.Rybaltchenko@cern.ch>, and -// Douglas C. Schmidt <schmidt@cs.wustl.edu> -// -// ============================================================================ - -#ifndef ACE_FLREACTOR_H -#define ACE_FLREACTOR_H - -#include "ace/Select_Reactor.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#if defined (ACE_HAS_FL) - -class ACE_Export ACE_FlReactor : public ACE_Select_Reactor -{ - // = TITLE - // A Reactor implementation that uses the Fast-Light (FL) toolkit - // for event demultiplexing. This will let us integrate the FL - // toolkit with ACE and/or TAO. - // - // = DESCRIPTION - // As many other GUI toolkits FL supports a minimal set of - // callbacks to handle event demultiplexing, namely simple methods - // to add file descriptors to the event demuxing set or timeout - // events. This class adapts this simple mechanisms so they are - // compatible with ACE's Reactor. - // - -public: - // = Initialization and termination methods. - ACE_FlReactor (size_t size = DEFAULT_SIZE, - int restart = 0, - ACE_Sig_Handler * = 0); - virtual ~ACE_FlReactor (void); - - // = Timer operations. - virtual long schedule_timer (ACE_Event_Handler *handler, - const void *arg, - const ACE_Time_Value &delta_time, - const ACE_Time_Value &interval); - - virtual int cancel_timer (ACE_Event_Handler *handler, - int dont_call_handle_close = 1); - - virtual int cancel_timer (long timer_id, - const void **arg = 0, - int dont_call_handle_close = 1); - -protected: - // = Register timers/handles with Fl. - virtual int register_handler_i (ACE_HANDLE handle, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask); - // Register a single <handler>. - - virtual int register_handler_i (const ACE_Handle_Set &handles, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask); - // Register a set of <handlers>. - - virtual int remove_handler_i (ACE_HANDLE handle, - ACE_Reactor_Mask mask); - // Remove the <handler> associated with this <handle>. - - virtual int remove_handler_i (const ACE_Handle_Set &handles, - ACE_Reactor_Mask); - // Remove a set of <handles>. - - virtual int wait_for_multiple_events (ACE_Select_Reactor_Handle_Set &, - ACE_Time_Value *); - // Wait for events to occur. - -private: - void reset_timeout (void); - - // = Integrate with the FL callback function mechanism. - static void fl_io_proc (int fd, void*); - static void fl_timeout_proc (void*); - - ACE_FlReactor (const ACE_FlReactor &); - ACE_FlReactor &operator = (const ACE_FlReactor &); - // Deny access since member-wise won't work... -}; - -#if defined(__ACE_INLINE__) -#include "ace/FlReactor.i" -#endif /* __ACE_INLINE__ */ - -#endif /* ACE_HAS_FL */ - -#endif /* ACE_FLREACTOR_H */ diff --git a/ace/FlReactor.i b/ace/FlReactor.i deleted file mode 100644 index 74e88caa0c5..00000000000 --- a/ace/FlReactor.i +++ /dev/null @@ -1,2 +0,0 @@ -// $Id$ - diff --git a/ace/Future.h b/ace/Future.h index e512f627f26..36d65b46cb0 100644 --- a/ace/Future.h +++ b/ace/Future.h @@ -73,8 +73,7 @@ private: int get (T &value, ACE_Time_Value *tv); - // Wait up to <tv> time to get the <value>. Note that <tv> must be - // specified in absolute time rather than relative time. + // Wait up to <tv> time to get the <value>. operator T (); // Type conversion. will block forever until the result is @@ -161,8 +160,7 @@ public: int get (T &value, ACE_Time_Value *tv = 0); - // Wait up to <tv> time to get the <value>. Note that <tv> must be - // specified in absolute time rather than relative time. + // Wait up to <tv> time to get the <value>. operator T (); // Type conversion, which obtains the result of the asynchronous diff --git a/ace/Get_Opt.cpp b/ace/Get_Opt.cpp index ac21a57ad8f..45c1921b6ce 100644 --- a/ace/Get_Opt.cpp +++ b/ace/Get_Opt.cpp @@ -93,7 +93,7 @@ ACE_Get_Opt::operator () (void) if (this->optind >= this->argc_ || *(this->nextchar_ = this->argv_[this->optind]) != '-') { - this->nextchar_ = ACE_const_cast (char *, ASYS_TEXT ("")); + this->nextchar_ = ASYS_TEXT (""); return EOF; } @@ -102,7 +102,7 @@ ACE_Get_Opt::operator () (void) { // Found "--". ++this->optind; - this->nextchar_ = ACE_const_cast (char *, ASYS_TEXT ("")); + this->nextchar_ = ASYS_TEXT (""); return EOF; } } @@ -142,7 +142,7 @@ ACE_Get_Opt::operator () (void) else if (this->argc_ <= ++this->optind) { // No arg. - this->nextchar_ = ACE_const_cast (char *, ASYS_TEXT ("")); + this->nextchar_ = ASYS_TEXT (""); if (*this->optstring_ == ':') return ':'; @@ -155,7 +155,7 @@ ACE_Get_Opt::operator () (void) else // White space. this->optarg = this->argv_[this->optind]; - this->nextchar_ = ACE_const_cast (char *, ASYS_TEXT ("")); + this->nextchar_ = ASYS_TEXT (""); ++this->optind; } diff --git a/ace/High_Res_Timer.h b/ace/High_Res_Timer.h index 676e47f24cb..cce0a843b5d 100644 --- a/ace/High_Res_Timer.h +++ b/ace/High_Res_Timer.h @@ -178,11 +178,11 @@ public: // However, setting the global_scale_factor_ appropriately will // result in the finest resolution possible. +private: static void hrtime_to_tv (ACE_Time_Value &tv, const ACE_hrtime_t hrt); // Converts an <hrt> to <tv> using global_scale_factor_. -private: static ACE_hrtime_t gettime (const ACE_OS::ACE_HRTimer_Op = ACE_OS::ACE_HRTIMER_GETTIME); // For internal use: gets the high-resolution time using @@ -208,9 +208,9 @@ private: // global_scale_factor_ == microseconds. static int global_scale_factor_status_; - // Indicates the status of the global scale factor, + // Indicates the status of the global scale factor, // 0 = hasn't been set - // 1 = been set + // 1 = been set // -1 = HR timer not supported }; diff --git a/ace/INET_Addr.cpp b/ace/INET_Addr.cpp index 341863d32c4..7261ca1a1bb 100644 --- a/ace/INET_Addr.cpp +++ b/ace/INET_Addr.cpp @@ -126,31 +126,14 @@ ACE_INET_Addr::string_to_addr (const ASYS_TCHAR s[]) if (ip_addr == 0) // Assume it's a port number. { - if (ACE_OS::strspn (t, "1234567890") - == ACE_OS::strlen (t)) - { // port number - u_short port = (u_short) ACE_OS::atoi (t); - result = this->set (port, - ACE_UINT32 (INADDR_ANY)); - } - else // port name - result = this->set (t, - ACE_UINT32 (INADDR_ANY)); + u_short port = (u_short) ACE_OS::atoi (t); + result = this->set (port, ACE_UINT32 (INADDR_ANY)); } else { - *ip_addr = '\0'; ++ip_addr; // skip over ':' - - if (ACE_OS::strspn (ip_addr, - "1234567890") == - ACE_OS::strlen (ip_addr)) - { - u_short port = - (u_short) ACE_OS::atoi (ip_addr); - result = this->set (port, t); - } - else - result = this->set (ip_addr, t); + *ip_addr = '\0'; + u_short port = (u_short) ACE_OS::atoi (ip_addr + 1); // Skip over ':' + result = this->set (port, t); } ACE_OS::free (ACE_MALLOC_T (t)); @@ -223,6 +206,7 @@ ACE_INET_Addr::set (u_short port_number, this->ACE_Addr::base_set (AF_INET, sizeof this->inet_addr_); (void) ACE_OS::memset ((void *) &this->inet_addr_, 0, sizeof this->inet_addr_); + const char *hostname_ch = ASYS_ONLY_MULTIBYTE_STRING (host_name); // Yow, someone gave us a NULL host_name! if (host_name == 0) @@ -230,7 +214,7 @@ ACE_INET_Addr::set (u_short port_number, errno = EINVAL; return -1; } - else if (ACE_OS::inet_aton (ASYS_ONLY_MULTIBYTE_STRING (host_name), (struct in_addr *) &addr) == 1) + else if (ACE_OS::inet_aton (hostname_ch, (struct in_addr *) &addr) == 1) return this->set (port_number, encode ? ntohl (addr) : addr, encode); else @@ -242,7 +226,7 @@ ACE_INET_Addr::set (u_short port_number, ACE_HOSTENT_DATA buf; int error; - hostent *hp = ACE_OS::gethostbyname_r (ASYS_ONLY_MULTIBYTE_STRING (host_name), &hentry, + hostent *hp = ACE_OS::gethostbyname_r (hostname_ch, &hentry, buf, &error); #endif /* VXWORKS */ @@ -493,8 +477,7 @@ ACE_INET_Addr::get_host_name (void) const ACE_TRACE ("ACE_INET_Addr::get_host_name"); static ASYS_TCHAR name[MAXHOSTNAMELEN + 1]; - if (this->get_host_name (name, MAXHOSTNAMELEN + 1) == -1) - ACE_OS::strcpy (name, "<unknown>"); + this->get_host_name (name, MAXHOSTNAMELEN + 1); return name; } diff --git a/ace/INET_Addr.h b/ace/INET_Addr.h index 1d62735b875..5d6a626e44a 100644 --- a/ace/INET_Addr.h +++ b/ace/INET_Addr.h @@ -126,10 +126,8 @@ public: virtual int string_to_addr (const ASYS_TCHAR address[]); // Initializes an <ACE_INET_Addr> from the <address>, which can be - // "ip-addr:port-number" (e.g., "tango.cs.wustl.edu:1234"), - // "ip-addr:port-name" (e.g., "tango.cs.wustl.edu:telnet"), - // "ip-number:port-number" (e.g., "128.252.166.57:1234"), or - // "ip-number:port-name" (e.g., "128.252.166.57:telnet"). If there + // "ip-addr:port-number" (e.g., "tango.cs.wustl.edu:1234") or + // "ip-number:port-number" (e.g., "128.252.166.57:1234"). If there // is no ':' in the <address> it is assumed to be a port number, // with the IP address being INADDR_ANY. diff --git a/ace/IOStream.h b/ace/IOStream.h index 00f253ba81f..d98e8a3b399 100644 --- a/ace/IOStream.h +++ b/ace/IOStream.h @@ -397,7 +397,7 @@ typedef ostream& (*__omanip_)(ostream&); // These are necessary in case somebody wants to derive from us and // override one of these with a custom approach. -#if defined (ACE_LACKS_CHAR_STAR_RIGHT_SHIFTS) +#ifdef CHORUS #define GET_FUNC_SET0(MT,CODE,CODE2) \ GET_PROT(MT,short &,CODE) \ GET_PROT(MT,u_short &,CODE) \ @@ -412,18 +412,6 @@ typedef ostream& (*__omanip_)(ostream&); GET_PROT(MT,char *,CODE) \ inline virtual MT& operator>>(__omanip_ func) CODE2 \ inline virtual MT& operator>>(__manip_ func) CODE2 -#elif defined (ACE_LACKS_CHAR_RIGHT_SHIFTS) -#define GET_FUNC_SET0(MT,CODE,CODE2) \ - GET_PROT(MT,short &,CODE) \ - GET_PROT(MT,u_short &,CODE) \ - GET_PROT(MT,int &,CODE) \ - GET_PROT(MT,u_int &,CODE) \ - GET_PROT(MT,long &,CODE) \ - GET_PROT(MT,u_long &,CODE) \ - GET_PROT(MT,float &,CODE) \ - GET_PROT(MT,double &,CODE) \ - inline virtual MT& operator>>(__omanip_ func) CODE2 \ - inline virtual MT& operator>>(__manip_ func) CODE2 #else #define GET_FUNC_SET0(MT,CODE,CODE2) \ GET_PROT(MT,short &,CODE) \ @@ -463,7 +451,7 @@ typedef ostream& (*__omanip_)(ostream&); #define GET_FUNC_SET1(MT,CODE,CODE2) GET_FUNC_SET0(MT,CODE,CODE2) #define PUT_FUNC_SET1(MT,CODE,CODE2) PUT_FUNC_SET0(MT,CODE,CODE2) #else -#if defined (ACE_LACKS_CHAR_STAR_RIGHT_SHIFTS) +#ifdef CHORUS #define GET_FUNC_SET1(MT,CODE,CODE2) \ GET_PROT(MT,signed char &,CODE) \ GET_FUNC_SET0(MT,CODE,CODE2) diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp index 06d3aeb191f..7ec82e21ced 100644 --- a/ace/Log_Msg.cpp +++ b/ace/Log_Msg.cpp @@ -75,17 +75,17 @@ class ACE_Log_Msg_Manager // Synchronize output operations. { public: - static ACE_Recursive_Thread_Mutex *get_lock (void); + static ACE_Thread_Mutex *get_lock (void); static void close (void); private: - static ACE_Recursive_Thread_Mutex *lock_; + static ACE_Thread_Mutex *lock_; }; -ACE_Recursive_Thread_Mutex *ACE_Log_Msg_Manager::lock_ = 0; +ACE_Thread_Mutex *ACE_Log_Msg_Manager::lock_ = 0; -ACE_Recursive_Thread_Mutex * +ACE_Thread_Mutex * ACE_Log_Msg_Manager::get_lock (void) { // This function is called by the first thread to create an ACE_Log_Msg @@ -96,7 +96,7 @@ ACE_Log_Msg_Manager::get_lock (void) { ACE_NO_HEAP_CHECK; - ACE_NEW_RETURN_I (ACE_Log_Msg_Manager::lock_, ACE_Recursive_Thread_Mutex, 0); + ACE_NEW_RETURN_I (ACE_Log_Msg_Manager::lock_, ACE_Thread_Mutex, 0); // Allocate the ACE_Log_Msg IPC instance. ACE_NEW_RETURN (ACE_Log_Msg_message_queue, ACE_LOG_MSG_IPC_STREAM, 0); @@ -249,7 +249,7 @@ ACE_Log_Msg::instance (void) #undef ACE_NEW_RETURN_I // Sets the flag in the default priority mask used to initialize -// ACE_Log_Msg instances, as well as the current per-thread instance. +// ACE_Log_Msg instances, as well as the current instance. void ACE_Log_Msg::enable_debug_messages (ACE_Log_Priority priority) @@ -260,7 +260,7 @@ ACE_Log_Msg::enable_debug_messages (ACE_Log_Priority priority) } // Clears the flag in the default priority mask used to initialize -// ACE_Log_Msg instances, as well as the current per-thread instance. +// ACE_Log_Msg instances, as well as the current instance. void ACE_Log_Msg::disable_debug_messages (ACE_Log_Priority priority) @@ -285,7 +285,7 @@ pid_t ACE_Log_Msg::pid_ = -1; // Current offset of msg_[]. int ACE_Log_Msg::msg_off_ = 0; -// Default per-thread priority mask +// Default priority mask // By default, all priorities are enabled. u_long ACE_Log_Msg::default_priority_mask_ = LM_SHUTDOWN | LM_TRACE @@ -299,10 +299,6 @@ u_long ACE_Log_Msg::default_priority_mask_ = LM_SHUTDOWN | LM_ALERT | LM_EMERGENCY; -// Default per-process priority mask -// By default, no priorities are enabled. -u_long ACE_Log_Msg::process_priority_mask_ = 0; - void ACE_Log_Msg::close (void) { @@ -344,7 +340,7 @@ ACE_Log_Msg::flags (void) { ACE_TRACE ("ACE_Log_Msg::flags"); u_long result; - ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock (), 0)); + ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock (), 0)); result = ACE_Log_Msg::flags_; return result; @@ -354,7 +350,7 @@ void ACE_Log_Msg::set_flags (u_long flgs) { ACE_TRACE ("ACE_Log_Msg::set_flags"); - ACE_MT (ACE_GUARD (ACE_Recursive_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock ())); + ACE_MT (ACE_GUARD (ACE_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock ())); ACE_SET_BITS (ACE_Log_Msg::flags_, flgs); } @@ -363,7 +359,7 @@ void ACE_Log_Msg::clr_flags (u_long flgs) { ACE_TRACE ("ACE_Log_Msg::clr_flags"); - ACE_MT (ACE_GUARD (ACE_Recursive_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock ())); + ACE_MT (ACE_GUARD (ACE_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock ())); ACE_CLR_BITS (ACE_Log_Msg::flags_, flgs); } @@ -380,35 +376,23 @@ ACE_Log_Msg::acquire (void) } u_long -ACE_Log_Msg::priority_mask (u_long n_mask, MASK_TYPE mask_type) +ACE_Log_Msg::priority_mask (u_long n_mask) { - u_long o_mask; - - if (mask_type == THREAD) { - o_mask = this->priority_mask_; - this->priority_mask_ = n_mask; - } - else { - o_mask = ACE_Log_Msg::process_priority_mask_; - ACE_Log_Msg::process_priority_mask_ = n_mask; - } - + u_long o_mask = this->priority_mask_; + this->priority_mask_ = n_mask; return o_mask; } u_long -ACE_Log_Msg::priority_mask (MASK_TYPE mask_type) +ACE_Log_Msg::priority_mask (void) { - return mask_type == THREAD ? this->priority_mask_ - : ACE_Log_Msg::process_priority_mask_; + return this->priority_mask_; } int ACE_Log_Msg::log_priority_enabled (ACE_Log_Priority log_priority) { - return ACE_BIT_ENABLED (this->priority_mask_ | - ACE_Log_Msg::process_priority_mask_, - log_priority); + return ACE_BIT_ENABLED (this->priority_mask_, log_priority); } int @@ -442,7 +426,7 @@ ACE_Log_Msg::ACE_Log_Msg (void) { // ACE_TRACE ("ACE_Log_Msg::ACE_Log_Msg"); - ACE_MT (ACE_GUARD (ACE_Recursive_Thread_Mutex, ace_mon, + ACE_MT (ACE_GUARD (ACE_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock ())); ++instance_count_; } @@ -457,7 +441,7 @@ ACE_Log_Msg::~ACE_Log_Msg (void) // If ACE_Log_Msg_Manager::close () is called, the lock will // be deleted. { - ACE_MT (ACE_GUARD (ACE_Recursive_Thread_Mutex, ace_mon, + ACE_MT (ACE_GUARD (ACE_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock ())); instance_count = --instance_count_; } @@ -502,7 +486,7 @@ ACE_Log_Msg::open (const ASYS_TCHAR *prog_name, LPCTSTR logger_key) { ACE_TRACE ("ACE_Log_Msg::open"); - ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock (), -1)); + ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock (), -1)); if (prog_name) { @@ -1062,7 +1046,7 @@ ACE_Log_Msg::log (ACE_Log_Record &log_record, #endif /* ACE_WIN32 */ // Make sure that the lock is held during all this. - ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock (), -1)); + ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *ACE_Log_Msg_Manager::get_lock (), -1)); if (ACE_BIT_ENABLED (ACE_Log_Msg::flags_, ACE_Log_Msg::STDERR) @@ -1196,7 +1180,7 @@ ACE_Log_Msg::dump (void) const ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ntrace_depth_ = %d\n"), this->trace_depth_)); ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\trace_active_ = %d\n"), this->trace_active_)); ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\tracing_enabled_ = %d\n"), this->tracing_enabled_)); - ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\npriority_mask_ = %x\n"), this->priority_mask_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\npriority_mask_ = %d\n"), this->priority_mask_)); if (this->thr_desc_ != 0 && this->thr_desc_->state () != 0) ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\thr_state_ = %d\n"), this->thr_desc_->state ())); diff --git a/ace/Log_Msg.h b/ace/Log_Msg.h index 0ab26552c37..0452d7b7db1 100644 --- a/ace/Log_Msg.h +++ b/ace/Log_Msg.h @@ -116,7 +116,7 @@ class ACE_Export ACE_Log_Msg_Callback // Your log() routine is called with an instance of // ACE_Log_Record. From this class, you can get the log // message, the verbose log message, message type, message - // priority, and so on. + // priority, and so on. // // Remember that there is one Log_Msg object per thread. // Therefore, you may need to register your callback object with @@ -184,7 +184,7 @@ public: static void disable_debug_messages (ACE_Log_Priority priority = LM_DEBUG); // Clears the flag from the default priority mask used to // initialize ACE_Log_Msg instances. - + static void enable_debug_messages (ACE_Log_Priority priority = LM_DEBUG); // Sets the flag in the default priority mask used to initialize // ACE_Log_Msg instances. @@ -321,16 +321,10 @@ public: void start_tracing (void); int tracing_enabled (void); - typedef enum - { - THREAD, - PROCESS - } MASK_TYPE; - // = Get/set the priority mask. - u_long priority_mask (MASK_TYPE = THREAD); + u_long priority_mask (void); // Get the current <ACE_Log_Priority> mask. - u_long priority_mask (u_long, MASK_TYPE = THREAD); + u_long priority_mask (u_long); // Set the <ACE_Log_Priority> mask, returns original mask. int log_priority_enabled (ACE_Log_Priority log_priority); @@ -457,19 +451,14 @@ private: #endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ u_long priority_mask_; - // Keeps track of all the per-thread <ACE_Log_Priority> values that - // are currently enabled. Default is for all logging priorities to - // be enabled. + // Keeps track of all the <ACE_Log_Priority> values that are + // currently enabled. Default is for all logging priorities to be + // enabled. // = The following fields are *not* kept in thread-specific storage. // We only want one instance for the entire process! - static u_long process_priority_mask_; - // Keeps track of all the per-process <ACE_Log_Priority> values that - // are currently enabled. Default is for all logging priorities to - // be enabled. - static const ASYS_TCHAR *program_name_; // Records the program name. diff --git a/ace/Log_Record.h b/ace/Log_Record.h index 6d0ba580b2d..beb74441aab 100644 --- a/ace/Log_Record.h +++ b/ace/Log_Record.h @@ -19,6 +19,7 @@ #include "ace/ACE.h" #include "ace/Log_Priority.h" +#include "ace/SString.h" #ifndef ACE_LOG_RECORD_H #define ACE_LOG_RECORD_H diff --git a/ace/Makefile b/ace/Makefile index 9fd14f2ccaa..add0382348e 100644 --- a/ace/Makefile +++ b/ace/Makefile @@ -169,9 +169,7 @@ OTHER_FILES = \ Registry_Name_Space \ Remote_Name_Space \ TP_Reactor \ - XtReactor \ - FlReactor \ - TkReactor + XtReactor TEMPLATE_FILES = \ Acceptor \ @@ -459,13 +457,6 @@ ifeq ($(CHORUS),1) endif # CC endif # CHORUS -ifneq ($(GHS),) - ifeq ($(CPU),86) - $(VDIR)gethrtime.$(OBJEXT): - make $@ ghs=0 - endif # 86 -endif # GHS - #---------------------------------------------------------------------------- # Dependencies #---------------------------------------------------------------------------- @@ -478,27 +469,34 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Template_Instantiations.cpp -.obj/OS.o .obj/OS.so .shobj/OS.o .shobj/OS.so: OS.cpp $(ACE_ROOT)/ace/OS.h \ +.obj/OS.o .obj/OS.so .shobj/OS.o .shobj/OS.so: OS.cpp \ + $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/inc_user_config.h \ $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Sched_Params.h \ $(ACE_ROOT)/ace/Sched_Params.i @@ -509,27 +507,34 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Sched_Params.i -.obj/ACE.o .obj/ACE.so .shobj/ACE.o .shobj/ACE.so: ACE.cpp $(ACE_ROOT)/ace/ACE.h \ +.obj/ACE.o .obj/ACE.so .shobj/ACE.o .shobj/ACE.so: ACE.cpp \ + $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/inc_user_config.h \ $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Handle_Set.h \ $(ACE_ROOT)/ace/Handle_Set.i \ @@ -553,13 +558,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Active_Map_Manager.i \ $(ACE_ROOT)/ace/Active_Map_Manager_T.h \ @@ -581,7 +589,6 @@ endif # GHS $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Free_List.h \ @@ -610,8 +617,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -631,31 +636,37 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Arg_Shifter.h -.obj/ARGV.o .obj/ARGV.so .shobj/ARGV.o .shobj/ARGV.so: ARGV.cpp $(ACE_ROOT)/ace/ARGV.h \ +.obj/ARGV.o .obj/ARGV.so .shobj/ARGV.o .shobj/ARGV.so: ARGV.cpp \ + $(ACE_ROOT)/ace/ARGV.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/inc_user_config.h \ $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -700,16 +711,18 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -756,12 +769,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Synch_T.h \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -795,12 +811,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Mem_Map.i \ $(ACE_ROOT)/ace/Synch_T.h \ @@ -834,7 +853,6 @@ endif # GHS $(ACE_ROOT)/ace/Service_Object.i \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -855,8 +873,6 @@ endif # GHS $(ACE_ROOT)/ace/Managed_Object.h \ $(ACE_ROOT)/ace/Managed_Object.i \ $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -876,13 +892,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Functor.i \ $(ACE_ROOT)/ace/Functor_T.i \ @@ -895,12 +914,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Get_Opt.i .obj/Hash_Map_Manager.o .obj/Hash_Map_Manager.so .shobj/Hash_Map_Manager.o .shobj/Hash_Map_Manager.so: Hash_Map_Manager.cpp \ @@ -910,13 +932,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -948,7 +973,6 @@ endif # GHS $(ACE_ROOT)/ace/Service_Object.i \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -971,8 +995,6 @@ endif # GHS $(ACE_ROOT)/ace/Managed_Object.h \ $(ACE_ROOT)/ace/Managed_Object.i \ $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -992,17 +1014,19 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/High_Res_Timer.i \ $(ACE_ROOT)/ace/Stats.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1048,13 +1072,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Object_Manager.o .obj/Object_Manager.so .shobj/Object_Manager.o .shobj/Object_Manager.so: Object_Manager.cpp \ $(ACE_ROOT)/ace/Object_Manager.h \ @@ -1063,13 +1090,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Object_Manager.i \ $(ACE_ROOT)/ace/Managed_Object.h \ @@ -1094,7 +1124,6 @@ endif # GHS $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Free_List.h \ @@ -1118,8 +1147,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -1167,12 +1194,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Time_Value.h \ $(ACE_ROOT)/ace/High_Res_Timer.h \ @@ -1185,13 +1215,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/SString.o .obj/SString.so .shobj/SString.o .shobj/SString.so: SString.cpp \ $(ACE_ROOT)/ace/Malloc.h \ @@ -1201,14 +1234,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -1251,8 +1286,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -1275,15 +1308,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1329,13 +1364,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Memory_Pool.h \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -1354,7 +1392,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1384,30 +1421,33 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h + $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i .obj/Timeprobe.o .obj/Timeprobe.so .shobj/Timeprobe.o .shobj/Timeprobe.so: Timeprobe.cpp \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/inc_user_config.h \ $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Timer_Hash.o .obj/Timer_Hash.so .shobj/Timer_Hash.o .shobj/Timer_Hash.so: Timer_Hash.cpp \ $(ACE_ROOT)/ace/Timer_Hash.h \ @@ -1419,13 +1459,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Synch_T.h \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -1447,7 +1490,6 @@ endif # GHS $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1484,13 +1526,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Synch_T.h \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -1512,7 +1557,6 @@ endif # GHS $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1543,13 +1587,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Synch_T.h \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -1571,7 +1618,6 @@ endif # GHS $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1599,15 +1645,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1659,13 +1707,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Synch_T.h \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -1687,7 +1738,6 @@ endif # GHS $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1719,12 +1769,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/Synch.h \ @@ -1753,12 +1806,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ @@ -1776,7 +1832,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -1801,20 +1856,21 @@ endif # GHS $(ACE_ROOT)/ace/Mem_Map.i \ $(ACE_ROOT)/ace/Memory_Pool.i \ $(ACE_ROOT)/ace/Thread_Manager.i \ - $(ACE_ROOT)/ace/SPIPE_Connector.h \ - $(ACE_ROOT)/ace/SPIPE_Stream.h \ - $(ACE_ROOT)/ace/SPIPE.h \ - $(ACE_ROOT)/ace/IPC_SAP.h \ - $(ACE_ROOT)/ace/IPC_SAP.i \ - $(ACE_ROOT)/ace/SPIPE_Addr.h \ + $(ACE_ROOT)/ace/SOCK_Connector.h \ + $(ACE_ROOT)/ace/SOCK_Stream.h \ + $(ACE_ROOT)/ace/SOCK_IO.h \ + $(ACE_ROOT)/ace/SOCK.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/SPIPE_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/SPIPE.i \ - $(ACE_ROOT)/ace/SPIPE_Stream.i \ - $(ACE_ROOT)/ace/SPIPE_Connector.i + $(ACE_ROOT)/ace/IPC_SAP.h \ + $(ACE_ROOT)/ace/IPC_SAP.i \ + $(ACE_ROOT)/ace/SOCK.i \ + $(ACE_ROOT)/ace/SOCK_IO.i \ + $(ACE_ROOT)/ace/INET_Addr.h \ + $(ACE_ROOT)/ace/INET_Addr.i \ + $(ACE_ROOT)/ace/SOCK_Stream.i \ + $(ACE_ROOT)/ace/Time_Value.h \ + $(ACE_ROOT)/ace/SOCK_Connector.i .obj/Log_Record.o .obj/Log_Record.so .shobj/Log_Record.o .shobj/Log_Record.so: Log_Record.cpp \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ @@ -1823,25 +1879,31 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Trace.o .obj/Trace.so .shobj/Trace.o .shobj/Trace.so: Trace.cpp \ $(ACE_ROOT)/ace/inc_user_config.h \ - $(ACE_ROOT)/ace/Log_Msg.h \ - $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ + $(ACE_ROOT)/ace/Log_Msg.h \ + $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Activation_Queue.o .obj/Activation_Queue.so .shobj/Activation_Queue.o .shobj/Activation_Queue.so: Activation_Queue.cpp \ $(ACE_ROOT)/ace/Activation_Queue.h \ @@ -1853,12 +1915,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/Synch.h \ @@ -1875,7 +1940,6 @@ endif # GHS $(ACE_ROOT)/ace/Message_Queue.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Free_List.h \ @@ -1914,8 +1978,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -1960,17 +2022,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Process.i \ $(ACE_ROOT)/ace/ARGV.h \ $(ACE_ROOT)/ace/Containers.h \ @@ -2021,12 +2083,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/Synch.h \ @@ -2041,9 +2106,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Process.h \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Process.i \ $(ACE_ROOT)/ace/Process_Manager.h \ $(ACE_ROOT)/ace/Process_Manager.i @@ -2055,12 +2117,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Thread.i \ $(ACE_ROOT)/ace/Synch_T.h \ @@ -2088,12 +2153,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Synch_Options.i .obj/Thread.o .obj/Thread.so .shobj/Thread.o .shobj/Thread.so: Thread.cpp \ @@ -2104,12 +2172,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Thread.i .obj/Thread_Manager.o .obj/Thread_Manager.so .shobj/Thread_Manager.o .shobj/Thread_Manager.so: Thread_Manager.cpp \ @@ -2121,12 +2192,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/Synch.h \ @@ -2142,7 +2216,6 @@ endif # GHS $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -2180,12 +2253,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Thread.i \ $(ACE_ROOT)/ace/Token.h \ @@ -2210,17 +2286,19 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -2279,12 +2357,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Handle_Set.i .obj/POSIX_Proactor.o .obj/POSIX_Proactor.so .shobj/POSIX_Proactor.o .shobj/POSIX_Proactor.so: POSIX_Proactor.cpp \ @@ -2295,13 +2376,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Priority_Reactor.o .obj/Priority_Reactor.so .shobj/Priority_Reactor.o .shobj/Priority_Reactor.so: Priority_Reactor.cpp \ $(ACE_ROOT)/ace/Priority_Reactor.h \ @@ -2311,15 +2395,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -2388,119 +2474,23 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Proactor_Impl.h \ $(ACE_ROOT)/ace/Object_Manager.h \ $(ACE_ROOT)/ace/Object_Manager.i \ $(ACE_ROOT)/ace/Managed_Object.h \ $(ACE_ROOT)/ace/Managed_Object.i \ - $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/Task_T.h \ - $(ACE_ROOT)/ace/Message_Queue.h \ - $(ACE_ROOT)/ace/Message_Block.h \ - $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/Malloc.i \ - $(ACE_ROOT)/ace/Malloc_T.h \ - $(ACE_ROOT)/ace/Synch.h \ - $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ - $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ - $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \ - $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \ - $(ACE_ROOT)/ace/Synch.i \ - $(ACE_ROOT)/ace/Synch_T.h \ - $(ACE_ROOT)/ace/Event_Handler.h \ - $(ACE_ROOT)/ace/Event_Handler.i \ - $(ACE_ROOT)/ace/Synch_T.i \ - $(ACE_ROOT)/ace/Thread.h \ - $(ACE_ROOT)/ace/Thread.i \ - $(ACE_ROOT)/ace/Atomic_Op.i \ - $(ACE_ROOT)/ace/Synch_T.cpp \ - $(ACE_ROOT)/ace/Free_List.h \ - $(ACE_ROOT)/ace/Free_List.i \ - $(ACE_ROOT)/ace/Free_List.cpp \ - $(ACE_ROOT)/ace/Malloc_T.i \ - $(ACE_ROOT)/ace/Malloc_T.cpp \ - $(ACE_ROOT)/ace/Memory_Pool.h \ - $(ACE_ROOT)/ace/Signal.h \ - $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Containers.i \ - $(ACE_ROOT)/ace/Containers_T.h \ - $(ACE_ROOT)/ace/Containers_T.i \ - $(ACE_ROOT)/ace/Containers_T.cpp \ - $(ACE_ROOT)/ace/Signal.i \ - $(ACE_ROOT)/ace/Mem_Map.h \ - $(ACE_ROOT)/ace/Mem_Map.i \ - $(ACE_ROOT)/ace/Memory_Pool.i \ - $(ACE_ROOT)/ace/Message_Block.i \ - $(ACE_ROOT)/ace/Message_Block_T.h \ - $(ACE_ROOT)/ace/Message_Block_T.i \ - $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/IO_Cntl_Msg.h \ - $(ACE_ROOT)/ace/Message_Queue_T.h \ - $(ACE_ROOT)/ace/Message_Queue_T.i \ - $(ACE_ROOT)/ace/Message_Queue_T.cpp \ - $(ACE_ROOT)/ace/Strategies.h \ - $(ACE_ROOT)/ace/Strategies_T.h \ - $(ACE_ROOT)/ace/Service_Config.h \ - $(ACE_ROOT)/ace/Service_Object.h \ - $(ACE_ROOT)/ace/Shared_Object.h \ - $(ACE_ROOT)/ace/Shared_Object.i \ - $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Service_Config.i \ - $(ACE_ROOT)/ace/Reactor.h \ - $(ACE_ROOT)/ace/Handle_Set.h \ - $(ACE_ROOT)/ace/Handle_Set.i \ - $(ACE_ROOT)/ace/Timer_Queue.h \ - $(ACE_ROOT)/ace/Timer_Queue_T.h \ - $(ACE_ROOT)/ace/Timer_Queue_T.i \ - $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ - $(ACE_ROOT)/ace/Reactor.i \ - $(ACE_ROOT)/ace/Reactor_Impl.h \ - $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ - $(ACE_ROOT)/ace/Synch_Options.h \ - $(ACE_ROOT)/ace/Synch_Options.i \ - $(ACE_ROOT)/ace/Thread_Manager.h \ - $(ACE_ROOT)/ace/Thread_Manager.i \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ - $(ACE_ROOT)/ace/Functor.h \ - $(ACE_ROOT)/ace/Functor.i \ - $(ACE_ROOT)/ace/Functor_T.h \ - $(ACE_ROOT)/ace/Functor_T.i \ - $(ACE_ROOT)/ace/Functor_T.cpp \ - $(ACE_ROOT)/ace/Hash_Map_Manager.i \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - $(ACE_ROOT)/ace/Strategies_T.i \ - $(ACE_ROOT)/ace/Strategies_T.cpp \ - $(ACE_ROOT)/ace/Service_Repository.h \ - $(ACE_ROOT)/ace/Service_Types.h \ - $(ACE_ROOT)/ace/Service_Types.i \ - $(ACE_ROOT)/ace/Service_Repository.i \ - $(ACE_ROOT)/ace/WFMO_Reactor.h \ - $(ACE_ROOT)/ace/WFMO_Reactor.i \ - $(ACE_ROOT)/ace/Strategies.i \ - $(ACE_ROOT)/ace/Message_Queue.i \ - $(ACE_ROOT)/ace/Task.h \ - $(ACE_ROOT)/ace/Task.i \ - $(ACE_ROOT)/ace/Task_T.i \ - $(ACE_ROOT)/ace/Task_T.cpp \ - $(ACE_ROOT)/ace/Module.h \ - $(ACE_ROOT)/ace/Module.i \ - $(ACE_ROOT)/ace/Module.cpp \ - $(ACE_ROOT)/ace/Stream_Modules.h \ - $(ACE_ROOT)/ace/Stream_Modules.i \ - $(ACE_ROOT)/ace/Stream_Modules.cpp + $(ACE_ROOT)/ace/Managed_Object.cpp .obj/Reactor.o .obj/Reactor.so .shobj/Reactor.o .shobj/Reactor.so: Reactor.cpp \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -2510,12 +2500,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Handle_Set.i \ $(ACE_ROOT)/ace/Timer_Queue.h \ @@ -2541,7 +2534,6 @@ endif # GHS $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -2568,8 +2560,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ $(ACE_ROOT)/ace/WFMO_Reactor.h \ @@ -2638,12 +2628,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ @@ -2659,7 +2652,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -2712,12 +2704,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ @@ -2733,7 +2728,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -2800,12 +2794,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ @@ -2821,7 +2818,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -2866,8 +2862,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -2907,13 +2901,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Asynch_IO_Impl.o .obj/Asynch_IO_Impl.so .shobj/Asynch_IO_Impl.o .shobj/Asynch_IO_Impl.so: Asynch_IO_Impl.cpp \ $(ACE_ROOT)/ace/OS.h \ @@ -2921,13 +2918,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Asynch_IO_Impl.h .obj/POSIX_Asynch_IO.o .obj/POSIX_Asynch_IO.so .shobj/POSIX_Asynch_IO.o .shobj/POSIX_Asynch_IO.so: POSIX_Asynch_IO.cpp \ @@ -2937,13 +2937,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Strategies.o .obj/Strategies.so .shobj/Strategies.o .shobj/Strategies.so: Strategies.cpp \ $(ACE_ROOT)/ace/Reactor.h \ @@ -2954,12 +2957,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Handle_Set.i \ $(ACE_ROOT)/ace/Timer_Queue.h \ @@ -2985,7 +2991,6 @@ endif # GHS $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -3014,8 +3019,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ $(ACE_ROOT)/ace/Synch_Options.h \ @@ -3060,12 +3063,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i .obj/LSOCK.o .obj/LSOCK.so .shobj/LSOCK.o .shobj/LSOCK.so: LSOCK.cpp \ @@ -3077,12 +3083,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3102,12 +3111,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3137,12 +3149,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3167,12 +3182,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3202,12 +3220,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3229,12 +3250,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3250,19 +3274,23 @@ endif # GHS $(ACE_ROOT)/ace/LSOCK.h \ $(ACE_ROOT)/ace/LSOCK.i \ $(ACE_ROOT)/ace/LSOCK_Stream.i -.obj/SOCK.o .obj/SOCK.so .shobj/SOCK.o .shobj/SOCK.so: SOCK.cpp $(ACE_ROOT)/ace/SOCK.h \ +.obj/SOCK.o .obj/SOCK.so .shobj/SOCK.o .shobj/SOCK.so: SOCK.cpp \ + $(ACE_ROOT)/ace/SOCK.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/inc_user_config.h \ $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3280,12 +3308,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3322,12 +3353,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3347,12 +3381,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3376,12 +3413,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3414,12 +3454,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3441,12 +3484,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3466,12 +3512,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3491,12 +3540,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3507,40 +3559,27 @@ endif # GHS $(ACE_ROOT)/ace/INET_Addr.h \ $(ACE_ROOT)/ace/INET_Addr.i \ $(ACE_ROOT)/ace/SOCK_Stream.i -.obj/Addr.o .obj/Addr.so .shobj/Addr.o .shobj/Addr.so: Addr.cpp $(ACE_ROOT)/ace/Addr.h \ +.obj/Addr.o .obj/Addr.so .shobj/Addr.o .shobj/Addr.so: Addr.cpp \ + $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/inc_user_config.h \ $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ - $(ACE_ROOT)/ace/Log_Msg.h \ - $(ACE_ROOT)/ace/Log_Record.h \ - $(ACE_ROOT)/ace/ACE.i \ - $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/Addr.i -.obj/ATM_Addr.o .obj/ATM_Addr.so .shobj/ATM_Addr.o .shobj/ATM_Addr.so: ATM_Addr.cpp \ - $(ACE_ROOT)/ace/ATM_Addr.h \ - $(ACE_ROOT)/ace/ACE.h \ - $(ACE_ROOT)/ace/OS.h \ - $(ACE_ROOT)/ace/inc_user_config.h \ - $(ACE_ROOT)/ace/streams.h \ - $(ACE_ROOT)/ace/Basic_Types.h \ - $(ACE_ROOT)/ace/Basic_Types.i \ $(ACE_ROOT)/ace/Trace.h \ - $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/Addr.h \ - $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/ATM_Addr.i -.obj/DEV.o .obj/DEV.so .shobj/DEV.o .shobj/DEV.so: DEV.cpp $(ACE_ROOT)/ace/DEV.h \ + $(ACE_ROOT)/ace/Addr.i +.obj/DEV.o .obj/DEV.so .shobj/DEV.o .shobj/DEV.so: DEV.cpp \ + $(ACE_ROOT)/ace/DEV.h \ $(ACE_ROOT)/ace/IO_SAP.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ @@ -3548,21 +3587,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_SAP.i \ $(ACE_ROOT)/ace/DEV_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/DEV_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/DEV.i .obj/DEV_Addr.o .obj/DEV_Addr.so .shobj/DEV_Addr.o .shobj/DEV_Addr.so: DEV_Addr.cpp \ $(ACE_ROOT)/ace/DEV_Addr.h \ @@ -3573,18 +3612,18 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/DEV_Addr.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h + $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/Addr.i \ + $(ACE_ROOT)/ace/DEV_Addr.i .obj/DEV_Connector.o .obj/DEV_Connector.so .shobj/DEV_Connector.o .shobj/DEV_Connector.so: DEV_Connector.cpp \ $(ACE_ROOT)/ace/DEV_Connector.h \ $(ACE_ROOT)/ace/DEV_IO.h \ @@ -3596,21 +3635,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_SAP.i \ $(ACE_ROOT)/ace/DEV_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/DEV_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/DEV.i \ $(ACE_ROOT)/ace/DEV_IO.i \ $(ACE_ROOT)/ace/DEV_Connector.i @@ -3624,24 +3663,25 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_SAP.i \ $(ACE_ROOT)/ace/DEV_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/DEV_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/DEV.i \ $(ACE_ROOT)/ace/DEV_IO.i -.obj/FIFO.o .obj/FIFO.so .shobj/FIFO.o .shobj/FIFO.so: FIFO.cpp $(ACE_ROOT)/ace/FIFO.h \ +.obj/FIFO.o .obj/FIFO.so .shobj/FIFO.o .shobj/FIFO.so: FIFO.cpp \ + $(ACE_ROOT)/ace/FIFO.h \ $(ACE_ROOT)/ace/IPC_SAP.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ @@ -3649,12 +3689,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/FIFO.i @@ -3668,12 +3711,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/FIFO.i \ @@ -3689,12 +3735,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/FIFO.i \ @@ -3710,12 +3759,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/FIFO.i \ @@ -3731,12 +3783,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/FIFO.i \ @@ -3751,19 +3806,20 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/FILE_Addr.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h -.obj/FILE.o .obj/FILE.so .shobj/FILE.o .shobj/FILE.so: FILE.cpp $(ACE_ROOT)/ace/FILE.h \ + $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/Addr.i \ + $(ACE_ROOT)/ace/FILE_Addr.i +.obj/FILE.o .obj/FILE.so .shobj/FILE.o .shobj/FILE.so: FILE.cpp \ + $(ACE_ROOT)/ace/FILE.h \ $(ACE_ROOT)/ace/IO_SAP.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ @@ -3771,21 +3827,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_SAP.i \ $(ACE_ROOT)/ace/FILE_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/FILE_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/FILE.i .obj/FILE_Connector.o .obj/FILE_Connector.so .shobj/FILE_Connector.o .shobj/FILE_Connector.so: FILE_Connector.cpp \ $(ACE_ROOT)/ace/FILE_Connector.h \ @@ -3798,21 +3854,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_SAP.i \ $(ACE_ROOT)/ace/FILE_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/FILE_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/FILE.i \ $(ACE_ROOT)/ace/FILE_IO.i \ $(ACE_ROOT)/ace/FILE_Connector.i @@ -3826,21 +3882,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_SAP.i \ $(ACE_ROOT)/ace/FILE_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/FILE_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/FILE.i \ $(ACE_ROOT)/ace/FILE_IO.i .obj/INET_Addr.o .obj/INET_Addr.so .shobj/INET_Addr.o .shobj/INET_Addr.so: INET_Addr.cpp \ @@ -3851,12 +3907,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3869,12 +3928,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_SAP.i .obj/IOStream.o .obj/IOStream.so .shobj/IOStream.o .shobj/IOStream.so: IOStream.cpp \ @@ -3884,13 +3946,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/INET_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ @@ -3912,12 +3977,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -3943,12 +4011,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/Synch.h \ @@ -3964,7 +4035,6 @@ endif # GHS $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -3996,18 +4066,18 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/SPIPE_Addr.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h + $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/Addr.i \ + $(ACE_ROOT)/ace/SPIPE_Addr.i .obj/SPIPE.o .obj/SPIPE.so .shobj/SPIPE.o .shobj/SPIPE.so: SPIPE.cpp \ $(ACE_ROOT)/ace/SPIPE.h \ $(ACE_ROOT)/ace/IPC_SAP.h \ @@ -4017,21 +4087,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/SPIPE_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/SPIPE_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/SPIPE.i .obj/SPIPE_Acceptor.o .obj/SPIPE_Acceptor.so .shobj/SPIPE_Acceptor.o .shobj/SPIPE_Acceptor.so: SPIPE_Acceptor.cpp \ $(ACE_ROOT)/ace/SPIPE_Acceptor.h \ @@ -4044,21 +4114,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/SPIPE_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/SPIPE_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/SPIPE.i \ $(ACE_ROOT)/ace/SPIPE_Stream.i .obj/SPIPE_Connector.o .obj/SPIPE_Connector.so .shobj/SPIPE_Connector.o .shobj/SPIPE_Connector.so: SPIPE_Connector.cpp \ @@ -4072,21 +4142,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/SPIPE_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/SPIPE_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/SPIPE.i \ $(ACE_ROOT)/ace/SPIPE_Stream.i \ $(ACE_ROOT)/ace/SPIPE_Connector.i @@ -4100,21 +4170,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/SPIPE_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/SPIPE_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/SPIPE.i \ $(ACE_ROOT)/ace/SPIPE_Stream.i .obj/SV_Message.o .obj/SV_Message.so .shobj/SV_Message.o .shobj/SV_Message.so: SV_Message.cpp \ @@ -4125,12 +4195,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Message.i .obj/SV_Message_Queue.o .obj/SV_Message_Queue.so .shobj/SV_Message_Queue.o .shobj/SV_Message_Queue.so: SV_Message_Queue.cpp \ @@ -4141,12 +4214,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Message.h \ $(ACE_ROOT)/ace/SV_Message.i \ @@ -4160,12 +4236,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i @@ -4177,12 +4256,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i .obj/SV_Shared_Memory.o .obj/SV_Shared_Memory.so .shobj/SV_Shared_Memory.o .shobj/SV_Shared_Memory.so: SV_Shared_Memory.cpp \ @@ -4193,15 +4275,19 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Shared_Memory.i -.obj/TLI.o .obj/TLI.so .shobj/TLI.o .shobj/TLI.so: TLI.cpp $(ACE_ROOT)/ace/TLI.h \ +.obj/TLI.o .obj/TLI.so .shobj/TLI.o .shobj/TLI.so: TLI.cpp \ + $(ACE_ROOT)/ace/TLI.h \ $(ACE_ROOT)/ace/IPC_SAP.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/OS.h \ @@ -4209,17 +4295,19 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/Addr.h \ - $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/TLI.i + $(ACE_ROOT)/ace/Addr.i .obj/TLI_Acceptor.o .obj/TLI_Acceptor.so .shobj/TLI_Acceptor.o .shobj/TLI_Acceptor.so: TLI_Acceptor.cpp \ $(ACE_ROOT)/ace/TLI_Acceptor.h \ $(ACE_ROOT)/ace/TLI.h \ @@ -4230,23 +4318,23 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/TLI.i \ $(ACE_ROOT)/ace/Time_Value.h \ $(ACE_ROOT)/ace/TLI_Stream.h \ $(ACE_ROOT)/ace/INET_Addr.h \ - $(ACE_ROOT)/ace/INET_Addr.i \ - $(ACE_ROOT)/ace/TLI_Stream.i \ - $(ACE_ROOT)/ace/TLI_Acceptor.i + $(ACE_ROOT)/ace/INET_Addr.i .obj/TLI_Connector.o .obj/TLI_Connector.so .shobj/TLI_Connector.o .shobj/TLI_Connector.so: TLI_Connector.cpp \ $(ACE_ROOT)/ace/Handle_Set.h \ $(ACE_ROOT)/ace/ACE.h \ @@ -4255,12 +4343,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Handle_Set.i \ $(ACE_ROOT)/ace/TLI_Connector.h \ @@ -4270,11 +4361,8 @@ endif # GHS $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/TLI.i \ $(ACE_ROOT)/ace/INET_Addr.h \ - $(ACE_ROOT)/ace/INET_Addr.i \ - $(ACE_ROOT)/ace/TLI_Stream.i \ - $(ACE_ROOT)/ace/TLI_Connector.i + $(ACE_ROOT)/ace/INET_Addr.i .obj/TLI_Stream.o .obj/TLI_Stream.so .shobj/TLI_Stream.o .shobj/TLI_Stream.so: TLI_Stream.cpp \ $(ACE_ROOT)/ace/TLI_Stream.h \ $(ACE_ROOT)/ace/TLI.h \ @@ -4285,20 +4373,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IPC_SAP.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/TLI.i \ $(ACE_ROOT)/ace/INET_Addr.h \ - $(ACE_ROOT)/ace/INET_Addr.i \ - $(ACE_ROOT)/ace/TLI_Stream.i + $(ACE_ROOT)/ace/INET_Addr.i .obj/TTY_IO.o .obj/TTY_IO.so .shobj/TTY_IO.o .shobj/TTY_IO.so: TTY_IO.cpp \ $(ACE_ROOT)/ace/TTY_IO.h \ $(ACE_ROOT)/ace/OS.h \ @@ -4306,21 +4395,21 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/DEV_Addr.h \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/DEV_Addr.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/DEV_Connector.h \ $(ACE_ROOT)/ace/DEV_IO.h \ $(ACE_ROOT)/ace/DEV.h \ @@ -4338,12 +4427,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.i \ $(ACE_ROOT)/ace/UNIX_Addr.i @@ -4357,17 +4449,19 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_Cntl_Msg.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -4423,8 +4517,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -4495,17 +4587,19 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_Cntl_Msg.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -4561,8 +4655,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -4631,17 +4723,19 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/IO_Cntl_Msg.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -4697,8 +4791,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -4755,19 +4847,23 @@ endif # GHS $(ACE_ROOT)/ace/SPIPE.i \ $(ACE_ROOT)/ace/UPIPE_Addr.h \ $(ACE_ROOT)/ace/UPIPE_Stream.i -.obj/DLL.o .obj/DLL.so .shobj/DLL.o .shobj/DLL.so: DLL.cpp $(ACE_ROOT)/ace/DLL.h \ +.obj/DLL.o .obj/DLL.so .shobj/DLL.o .shobj/DLL.so: DLL.cpp \ + $(ACE_ROOT)/ace/DLL.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/inc_user_config.h \ $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Parse_Node.o .obj/Parse_Node.so .shobj/Parse_Node.o .shobj/Parse_Node.so: Parse_Node.cpp \ $(ACE_ROOT)/ace/Service_Config.h \ @@ -4779,12 +4875,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -4804,7 +4903,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -4827,8 +4925,6 @@ endif # GHS $(ACE_ROOT)/ace/Managed_Object.h \ $(ACE_ROOT)/ace/Managed_Object.i \ $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -4899,14 +4995,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -4950,8 +5048,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -5004,12 +5100,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Get_Opt.i \ $(ACE_ROOT)/ace/Service_Repository.h \ @@ -5037,7 +5136,6 @@ endif # GHS $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -5060,8 +5158,6 @@ endif # GHS $(ACE_ROOT)/ace/Managed_Object.h \ $(ACE_ROOT)/ace/Managed_Object.i \ $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -5132,12 +5228,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -5167,12 +5266,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -5207,12 +5309,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -5235,7 +5340,6 @@ endif # GHS $(ACE_ROOT)/ace/Task.h \ $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -5275,8 +5379,6 @@ endif # GHS $(ACE_ROOT)/ace/Strategies.h \ $(ACE_ROOT)/ace/Strategies_T.h \ $(ACE_ROOT)/ace/Service_Config.h \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -5327,12 +5429,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Shared_Object.i .obj/Svc_Conf_l.o .obj/Svc_Conf_l.so .shobj/Svc_Conf_l.o .shobj/Svc_Conf_l.so: Svc_Conf_l.cpp \ @@ -5341,18 +5446,20 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Svc_Conf.h \ $(ACE_ROOT)/ace/Obstack.h \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -5396,8 +5503,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -5421,15 +5526,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -5476,8 +5583,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -5551,15 +5656,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -5601,8 +5708,6 @@ endif # GHS $(ACE_ROOT)/ace/Message_Block_T.h \ $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/CDR_Stream.i .obj/Message_Block.o .obj/Message_Block.so .shobj/Message_Block.o .shobj/Message_Block.so: Message_Block.cpp \ $(ACE_ROOT)/ace/Message_Block.h \ @@ -5612,15 +5717,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -5672,15 +5779,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -5733,8 +5842,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -5770,7 +5877,8 @@ endif # GHS $(ACE_ROOT)/ace/WFMO_Reactor.i \ $(ACE_ROOT)/ace/Strategies.i \ $(ACE_ROOT)/ace/Message_Queue.i -.obj/Task.o .obj/Task.so .shobj/Task.o .shobj/Task.so: Task.cpp $(ACE_ROOT)/ace/Task.h \ +.obj/Task.o .obj/Task.so .shobj/Task.o .shobj/Task.so: Task.cpp \ + $(ACE_ROOT)/ace/Task.h \ $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/ACE.h \ @@ -5779,12 +5887,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -5804,7 +5915,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -5844,8 +5954,6 @@ endif # GHS $(ACE_ROOT)/ace/Strategies.h \ $(ACE_ROOT)/ace/Strategies_T.h \ $(ACE_ROOT)/ace/Service_Config.h \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -5895,14 +6003,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -5948,12 +6058,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Mem_Map.i .obj/Memory_Pool.o .obj/Memory_Pool.so .shobj/Memory_Pool.o .shobj/Memory_Pool.so: Memory_Pool.cpp \ @@ -5964,12 +6077,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.h \ $(ACE_ROOT)/ace/Event_Handler.i \ @@ -5987,7 +6103,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -6021,14 +6136,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -6075,15 +6192,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -6127,8 +6246,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -6148,12 +6265,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Shared_Memory_MM.o .obj/Shared_Memory_MM.so .shobj/Shared_Memory_MM.o .shobj/Shared_Memory_MM.so: Shared_Memory_MM.cpp \ $(ACE_ROOT)/ace/Shared_Memory_MM.h \ @@ -6164,12 +6284,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Mem_Map.h \ $(ACE_ROOT)/ace/Mem_Map.i \ @@ -6183,12 +6306,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Shared_Memory.h \ $(ACE_ROOT)/ace/SV_Shared_Memory.i \ @@ -6201,12 +6327,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Thread.i \ $(ACE_ROOT)/ace/Local_Tokens.h \ @@ -6223,7 +6352,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -6257,8 +6385,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -6282,12 +6408,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -6321,7 +6450,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -6353,8 +6481,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -6381,13 +6507,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Synch.h \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ @@ -6406,7 +6535,6 @@ endif # GHS $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Free_List.h \ @@ -6435,8 +6563,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -6462,12 +6588,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ @@ -6486,7 +6615,6 @@ endif # GHS $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Free_List.h \ @@ -6515,8 +6643,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -6542,12 +6668,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ @@ -6566,7 +6695,6 @@ endif # GHS $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Malloc.i \ $(ACE_ROOT)/ace/Malloc_T.h \ $(ACE_ROOT)/ace/Free_List.h \ @@ -6595,8 +6723,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -6624,12 +6750,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/Synch.h \ @@ -6644,7 +6773,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -6678,8 +6806,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -6705,12 +6831,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -6730,7 +6859,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -6753,8 +6881,6 @@ endif # GHS $(ACE_ROOT)/ace/Managed_Object.h \ $(ACE_ROOT)/ace/Managed_Object.i \ $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -6778,12 +6904,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/CORBA_Ref.i \ $(ACE_ROOT)/ace/CORBA_Ref.cpp @@ -6794,17 +6923,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/Local_Name_Space.h \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/Local_Name_Space.h \ $(ACE_ROOT)/ace/Containers.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ @@ -6903,12 +7032,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ @@ -6924,7 +7056,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -6969,8 +7100,6 @@ endif # GHS $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ $(ACE_ROOT)/ace/Service_Object.i \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -7010,12 +7139,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Addr.h \ $(ACE_ROOT)/ace/Addr.i \ @@ -7052,7 +7184,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -7075,8 +7206,6 @@ endif # GHS $(ACE_ROOT)/ace/Managed_Object.h \ $(ACE_ROOT)/ace/Managed_Object.i \ $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/SString.h \ - $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Service_Config.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -7099,17 +7228,17 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ - $(ACE_ROOT)/ace/Malloc_Base.h + $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i .obj/Name_Space.o .obj/Name_Space.so .shobj/Name_Space.o .shobj/Name_Space.so: Name_Space.cpp \ $(ACE_ROOT)/ace/Name_Space.h \ $(ACE_ROOT)/ace/ACE.h \ @@ -7118,16 +7247,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Containers.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ @@ -7209,18 +7338,18 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/Get_Opt.i \ - $(ACE_ROOT)/ace/Naming_Context.h \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ + $(ACE_ROOT)/ace/Get_Opt.i \ + $(ACE_ROOT)/ace/Naming_Context.h \ $(ACE_ROOT)/ace/Containers.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ @@ -7317,13 +7446,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i .obj/Remote_Name_Space.o .obj/Remote_Name_Space.so .shobj/Remote_Name_Space.o .shobj/Remote_Name_Space.so: Remote_Name_Space.cpp \ $(ACE_ROOT)/ace/Remote_Name_Space.h \ @@ -7333,16 +7465,16 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Containers.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ @@ -7430,12 +7562,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ @@ -7451,7 +7586,6 @@ endif # GHS $(ACE_ROOT)/ace/Atomic_Op.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ @@ -7504,183 +7638,15 @@ endif # GHS $(ACE_ROOT)/ace/streams.h \ $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ $(ACE_ROOT)/ace/OS.i \ - $(ACE_ROOT)/ace/Log_Msg.h \ - $(ACE_ROOT)/ace/Log_Record.h \ - $(ACE_ROOT)/ace/ACE.i \ - $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/Event_Handler.i \ - $(ACE_ROOT)/ace/Synch.h \ - $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ - $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ - $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \ - $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \ - $(ACE_ROOT)/ace/Synch.i \ - $(ACE_ROOT)/ace/Synch_T.i \ - $(ACE_ROOT)/ace/Thread.h \ - $(ACE_ROOT)/ace/Thread.i \ - $(ACE_ROOT)/ace/Atomic_Op.i \ - $(ACE_ROOT)/ace/Synch_T.cpp \ - $(ACE_ROOT)/ace/SOCK_Acceptor.h \ - $(ACE_ROOT)/ace/SOCK_Stream.h \ - $(ACE_ROOT)/ace/SOCK_IO.h \ - $(ACE_ROOT)/ace/SOCK.h \ - $(ACE_ROOT)/ace/Addr.h \ - $(ACE_ROOT)/ace/Addr.i \ - $(ACE_ROOT)/ace/IPC_SAP.h \ - $(ACE_ROOT)/ace/IPC_SAP.i \ - $(ACE_ROOT)/ace/SOCK.i \ - $(ACE_ROOT)/ace/SOCK_IO.i \ - $(ACE_ROOT)/ace/INET_Addr.h \ - $(ACE_ROOT)/ace/INET_Addr.i \ - $(ACE_ROOT)/ace/SOCK_Stream.i \ - $(ACE_ROOT)/ace/Time_Value.h \ - $(ACE_ROOT)/ace/SOCK_Acceptor.i \ - $(ACE_ROOT)/ace/SOCK_Connector.h \ - $(ACE_ROOT)/ace/SOCK_Connector.i \ - $(ACE_ROOT)/ace/XtReactor.h \ - $(ACE_ROOT)/ace/Select_Reactor.h \ - $(ACE_ROOT)/ace/Select_Reactor_T.h \ - $(ACE_ROOT)/ace/Select_Reactor_Base.h \ - $(ACE_ROOT)/ace/Signal.h \ - $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/Containers.i \ - $(ACE_ROOT)/ace/Containers_T.h \ - $(ACE_ROOT)/ace/Containers_T.i \ - $(ACE_ROOT)/ace/Containers_T.cpp \ - $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc.i \ - $(ACE_ROOT)/ace/Malloc_T.h \ - $(ACE_ROOT)/ace/Free_List.h \ - $(ACE_ROOT)/ace/Free_List.i \ - $(ACE_ROOT)/ace/Free_List.cpp \ - $(ACE_ROOT)/ace/Malloc_T.i \ - $(ACE_ROOT)/ace/Malloc_T.cpp \ - $(ACE_ROOT)/ace/Memory_Pool.h \ - $(ACE_ROOT)/ace/Mem_Map.h \ - $(ACE_ROOT)/ace/Mem_Map.i \ - $(ACE_ROOT)/ace/Memory_Pool.i \ - $(ACE_ROOT)/ace/Signal.i \ - $(ACE_ROOT)/ace/Object_Manager.h \ - $(ACE_ROOT)/ace/Object_Manager.i \ - $(ACE_ROOT)/ace/Managed_Object.h \ - $(ACE_ROOT)/ace/Managed_Object.i \ - $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/Timer_Queue.h \ - $(ACE_ROOT)/ace/Timer_Queue_T.h \ - $(ACE_ROOT)/ace/Timer_Queue_T.i \ - $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ - $(ACE_ROOT)/ace/Handle_Set.h \ - $(ACE_ROOT)/ace/Handle_Set.i \ - $(ACE_ROOT)/ace/Token.h \ - $(ACE_ROOT)/ace/Token.i \ - $(ACE_ROOT)/ace/Pipe.h \ - $(ACE_ROOT)/ace/Pipe.i \ - $(ACE_ROOT)/ace/Reactor_Impl.h \ - $(ACE_ROOT)/ace/Select_Reactor_Base.i \ - $(ACE_ROOT)/ace/Reactor.h \ - $(ACE_ROOT)/ace/Reactor.i \ - $(ACE_ROOT)/ace/Select_Reactor_T.cpp \ - $(ACE_ROOT)/ace/Timer_Heap.h \ - $(ACE_ROOT)/ace/Timer_Heap_T.h \ - $(ACE_ROOT)/ace/Timer_Heap_T.cpp \ - $(ACE_ROOT)/ace/Select_Reactor_T.i \ - $(ACE_ROOT)/ace/Select_Reactor.i -.obj/FlReactor.o .obj/FlReactor.so .shobj/FlReactor.o .shobj/FlReactor.so: FlReactor.cpp \ - $(ACE_ROOT)/ace/FlReactor.h \ - $(ACE_ROOT)/ace/Select_Reactor.h \ - $(ACE_ROOT)/ace/Select_Reactor_T.h \ - $(ACE_ROOT)/ace/Select_Reactor_Base.h \ - $(ACE_ROOT)/ace/Signal.h \ - $(ACE_ROOT)/ace/Synch.h \ - $(ACE_ROOT)/ace/ACE.h \ - $(ACE_ROOT)/ace/OS.h \ - $(ACE_ROOT)/ace/inc_user_config.h \ - $(ACE_ROOT)/ace/streams.h \ - $(ACE_ROOT)/ace/Basic_Types.h \ - $(ACE_ROOT)/ace/Basic_Types.i \ $(ACE_ROOT)/ace/Trace.h \ - $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Record.h \ $(ACE_ROOT)/ace/ACE.i \ $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/Log_Record.i \ - $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \ - $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \ - $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \ - $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \ - $(ACE_ROOT)/ace/Synch.i \ - $(ACE_ROOT)/ace/Synch_T.h \ - $(ACE_ROOT)/ace/Event_Handler.h \ - $(ACE_ROOT)/ace/Event_Handler.i \ - $(ACE_ROOT)/ace/Synch_T.i \ - $(ACE_ROOT)/ace/Thread.h \ - $(ACE_ROOT)/ace/Thread.i \ - $(ACE_ROOT)/ace/Atomic_Op.i \ - $(ACE_ROOT)/ace/Synch_T.cpp \ - $(ACE_ROOT)/ace/Containers.h \ + $(ACE_ROOT)/ace/SString.h \ + $(ACE_ROOT)/ace/SString.i \ $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/Containers.i \ - $(ACE_ROOT)/ace/Containers_T.h \ - $(ACE_ROOT)/ace/Containers_T.i \ - $(ACE_ROOT)/ace/Containers_T.cpp \ - $(ACE_ROOT)/ace/Malloc.h \ - $(ACE_ROOT)/ace/Malloc.i \ - $(ACE_ROOT)/ace/Malloc_T.h \ - $(ACE_ROOT)/ace/Free_List.h \ - $(ACE_ROOT)/ace/Free_List.i \ - $(ACE_ROOT)/ace/Free_List.cpp \ - $(ACE_ROOT)/ace/Malloc_T.i \ - $(ACE_ROOT)/ace/Malloc_T.cpp \ - $(ACE_ROOT)/ace/Memory_Pool.h \ - $(ACE_ROOT)/ace/Mem_Map.h \ - $(ACE_ROOT)/ace/Mem_Map.i \ - $(ACE_ROOT)/ace/Memory_Pool.i \ - $(ACE_ROOT)/ace/Signal.i \ - $(ACE_ROOT)/ace/Object_Manager.h \ - $(ACE_ROOT)/ace/Object_Manager.i \ - $(ACE_ROOT)/ace/Managed_Object.h \ - $(ACE_ROOT)/ace/Managed_Object.i \ - $(ACE_ROOT)/ace/Managed_Object.cpp \ - $(ACE_ROOT)/ace/Timer_Queue.h \ - $(ACE_ROOT)/ace/Timer_Queue_T.h \ - $(ACE_ROOT)/ace/Timer_Queue_T.i \ - $(ACE_ROOT)/ace/Timer_Queue_T.cpp \ - $(ACE_ROOT)/ace/Handle_Set.h \ - $(ACE_ROOT)/ace/Handle_Set.i \ - $(ACE_ROOT)/ace/Token.h \ - $(ACE_ROOT)/ace/Token.i \ - $(ACE_ROOT)/ace/Pipe.h \ - $(ACE_ROOT)/ace/Pipe.i \ - $(ACE_ROOT)/ace/Reactor_Impl.h \ - $(ACE_ROOT)/ace/Select_Reactor_Base.i \ - $(ACE_ROOT)/ace/Reactor.h \ - $(ACE_ROOT)/ace/Reactor.i \ - $(ACE_ROOT)/ace/Select_Reactor_T.cpp \ - $(ACE_ROOT)/ace/Timer_Heap.h \ - $(ACE_ROOT)/ace/Timer_Heap_T.h \ - $(ACE_ROOT)/ace/Timer_Heap_T.cpp \ - $(ACE_ROOT)/ace/Select_Reactor_T.i \ - $(ACE_ROOT)/ace/Select_Reactor.i -.obj/TkReactor.o .obj/TkReactor.so .shobj/TkReactor.o .shobj/TkReactor.so: TkReactor.cpp \ - $(ACE_ROOT)/ace/Synch_T.h \ - $(ACE_ROOT)/ace/Event_Handler.h \ - $(ACE_ROOT)/ace/ACE.h \ - $(ACE_ROOT)/ace/OS.h \ - $(ACE_ROOT)/ace/inc_user_config.h \ - $(ACE_ROOT)/ace/streams.h \ - $(ACE_ROOT)/ace/Basic_Types.h \ - $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Trace.h \ - $(ACE_ROOT)/ace/OS.i \ - $(ACE_ROOT)/ace/Log_Msg.h \ - $(ACE_ROOT)/ace/Log_Record.h \ - $(ACE_ROOT)/ace/ACE.i \ - $(ACE_ROOT)/ace/Log_Priority.h \ $(ACE_ROOT)/ace/Log_Record.i \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/Synch.h \ @@ -7711,13 +7677,12 @@ endif # GHS $(ACE_ROOT)/ace/SOCK_Acceptor.i \ $(ACE_ROOT)/ace/SOCK_Connector.h \ $(ACE_ROOT)/ace/SOCK_Connector.i \ - $(ACE_ROOT)/ace/TkReactor.h \ + $(ACE_ROOT)/ace/XtReactor.h \ $(ACE_ROOT)/ace/Select_Reactor.h \ $(ACE_ROOT)/ace/Select_Reactor_T.h \ $(ACE_ROOT)/ace/Select_Reactor_Base.h \ $(ACE_ROOT)/ace/Signal.h \ $(ACE_ROOT)/ace/Containers.h \ - $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Containers.i \ $(ACE_ROOT)/ace/Containers_T.h \ $(ACE_ROOT)/ace/Containers_T.i \ diff --git a/ace/Makefile.am b/ace/Makefile.am index 36e938da735..c1621456b08 100644 --- a/ace/Makefile.am +++ b/ace/Makefile.am @@ -222,7 +222,6 @@ libACE_Sockets_la_SOURCES = \ libACE_IPC_la_SOURCES = \ Addr.cpp \ - ATM_Addr.cpp \ DEV.cpp \ DEV_Addr.cpp \ DEV_Connector.cpp \ @@ -326,11 +325,6 @@ libACE_la_SOURCES = \ $(libACE_Token_la_SOURCES) \ $(libACE_Other_la_SOURCES) -# We only want `gethrtime.cpp' if building on Pentium(tm) so we need -# to let Automake know that `gethrtime.cpp' is conditionally built. -EXTRA_libACE_la_SOURCES = gethrtime.cpp - - ## The following is an excerpt from the "libtool" manual, written by ## Gordon Matzigkeit: ## @@ -400,7 +394,6 @@ ACE_TEMPLATE_FILES = \ Message_Block_T.cpp \ Message_Queue_T.cpp \ Module.cpp \ - Pair_T.cpp \ RB_Tree.cpp \ Select_Reactor_T.cpp \ Singleton.cpp \ @@ -435,8 +428,6 @@ pkginclude_HEADERS = \ ACE.i \ ARGV.h \ ARGV.i \ - ATM_Addr.h \ - ATM_Addr.i \ Acceptor.h \ Acceptor.i \ Activation_Queue.h \ @@ -770,6 +761,7 @@ pkginclude_HEADERS = \ Timer_List.h \ Timer_List_T.h \ Timer_Queue.h \ + Timer_Queue.i \ Timer_Queue_Adapters.h \ Timer_Queue_Adapters.i \ Timer_Queue_T.h \ diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h index 9a7ea27de27..d2d7d26e303 100644 --- a/ace/Map_Manager.h +++ b/ace/Map_Manager.h @@ -182,7 +182,7 @@ public: // attempt is made to bind an existing entry, and returns -1 if // failures occur. - int find (const EXT_ID &ext_id, + int find (const EXT_ID &ext_id, INT_ID &int_id); // Locate <ext_id> and pass out parameter via <int_id>. If found, // returns and non-negative integer; returns -1 if not found. @@ -196,7 +196,7 @@ public: // <int_id>s are *not* dynamically allocated...) Returns 0 if // successful, else -1. - int unbind (const EXT_ID &ext_id, + int unbind (const EXT_ID &ext_id, INT_ID &int_id); // Break any association of <ext_id>. Returns the value of <int_id> // in case the caller needs to deallocate memory. Returns 0 if @@ -239,40 +239,40 @@ protected: // These methods assume that the locks are held by the private // methods. - int bind_i (const EXT_ID &ext_id, + int bind_i (const EXT_ID &ext_id, const INT_ID &int_id); // Performs the binding of <ext_id> to <int_id>. Must be called // with locks held. - int shared_bind (const EXT_ID &ext_id, + int shared_bind (const EXT_ID &ext_id, const INT_ID &int_id); // Bind an entry (without finding first). Must be called with locks // held. - int rebind_i (const EXT_ID &ext_id, + int rebind_i (const EXT_ID &ext_id, const INT_ID &int_id, - EXT_ID &old_ext_id, + EXT_ID &old_ext_id, INT_ID &old_int_id); // Performs a rebinding of <ext_it> to <int_id>. Also, recovers old // values. Must be called with locks held. - int rebind_i (const EXT_ID &ext_id, + int rebind_i (const EXT_ID &ext_id, const INT_ID &int_id, INT_ID &old_int_id); // Performs a rebinding of <ext_it> to <int_id>. Also, recovers old // values. Must be called with locks held. - int rebind_i (const EXT_ID &ext_id, + int rebind_i (const EXT_ID &ext_id, const INT_ID &int_id); // Performs a rebinding of <ext_it> to <int_id>. Must be called // with locks held. - int trybind_i (const EXT_ID &ext_id, + int trybind_i (const EXT_ID &ext_id, INT_ID &int_id); // Performs a conditional bind of <int_id> using <ext_id> as the // key. Must be called with locks held. - int find_i (const EXT_ID &ext_id, + int find_i (const EXT_ID &ext_id, INT_ID &int_id); // Performs a find of <int_id> using <ext_id> as the key. Must be // called with locks held. @@ -282,7 +282,7 @@ protected: // Performs a find using <ext_id> as the key. Must be called with // locks held. - int unbind_i (const EXT_ID &ext_id, + int unbind_i (const EXT_ID &ext_id, INT_ID &int_id); // Performs an unbind of <int_id> using <ext_id> as the key. Must // be called with locks held. @@ -424,7 +424,7 @@ protected: void dump_i (void) const; // Dump the state of an object. - ACE_Map_Manager <EXT_ID, INT_ID, ACE_LOCK> *map_man_; + ACE_Map_Manager <EXT_ID, INT_ID, ACE_LOCK> &map_man_; // Map we are iterating over. size_t next_; diff --git a/ace/Map_Manager.i b/ace/Map_Manager.i index ded8b4b0357..99bd092c70c 100644 --- a/ace/Map_Manager.i +++ b/ace/Map_Manager.i @@ -266,17 +266,17 @@ ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::rend (void) template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::ACE_Map_Iterator_Base (ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK> &mm) - : map_man_ (&mm), - next_ (this->map_man_->occupied_list_id ()) + : map_man_ (mm), + next_ (this->map_man_.occupied_list_id ()) { } template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE int ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::next (ACE_Map_Entry<EXT_ID, INT_ID> *&mm) const { - if (this->next_ != this->map_man_->occupied_list_id ()) + if (this->next_ != this->map_man_.occupied_list_id ()) { - mm = &this->map_man_->search_structure_[this->next_]; + mm = &this->map_man_.search_structure_[this->next_]; return 1; } else @@ -288,50 +288,50 @@ ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::next (ACE_Map_Entry<EXT_ID, INT template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE int ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::done (void) const { - return this->next_ == this->map_man_->occupied_list_id (); + return this->next_ == this->map_man_.occupied_list_id (); } template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE int ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::forward_i (void) { - if (this->next_ == this->map_man_->occupied_list_id ()) + if (this->next_ == this->map_man_.occupied_list_id ()) { - this->next_ = this->map_man_->occupied_list_.next (); + this->next_ = this->map_man_.occupied_list_.next (); } else { - this->next_ = this->map_man_->search_structure_[this->next_].next (); + this->next_ = this->map_man_.search_structure_[this->next_].next (); } - return this->next_ != this->map_man_->occupied_list_id (); + return this->next_ != this->map_man_.occupied_list_id (); } template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE int ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::reverse_i (void) { - if (this->next_ == this->map_man_->occupied_list_id ()) + if (this->next_ == this->map_man_.occupied_list_id ()) { - this->next_ = this->map_man_->occupied_list_.prev (); + this->next_ = this->map_man_.occupied_list_.prev (); } else { - this->next_ = this->map_man_->search_structure_[this->next_].prev (); + this->next_ = this->map_man_.search_structure_[this->next_].prev (); } - return this->next_ != this->map_man_->occupied_list_id (); + return this->next_ != this->map_man_.occupied_list_id (); } template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE -ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK> & +ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>& ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::map (void) { - return *this->map_man_; + return this->map_man_; } template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE int ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::operator== (const ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> &rhs) const { - return (this->map_man_ == rhs.map_man_ && + return (&this->map_man_ == &rhs.map_man_ && this->next_ == rhs.next_); } diff --git a/ace/Message_Block.cpp b/ace/Message_Block.cpp index 87e4271b777..0b890748dc8 100644 --- a/ace/Message_Block.cpp +++ b/ace/Message_Block.cpp @@ -213,21 +213,6 @@ ACE_Message_Block::size (size_t length) return 0; } -size_t -ACE_Message_Block::total_size (void) const -{ - ACE_TRACE ("ACE_Message_Block::total_size"); - - size_t s = 0; - - for (ACE_Message_Block *temp = ACE_const_cast (ACE_Message_Block *, this); - temp != 0; - temp = temp->cont ()) - s += temp->size (); - - return s; -} - ACE_Data_Block::ACE_Data_Block (void) : type_ (ACE_Message_Block::MB_DATA), cur_size_ (0), @@ -298,13 +283,12 @@ ACE_Message_Block::ACE_Message_Block (const char *data, ACE_Time_Value::zero, // execution time ACE_Time_Value::max_time, // absolute time of deadline 0, // data block - 0, // data_block allocator - 0) == -1) // message_block allocator + 0) == -1) // data_block allocator ACE_ERROR ((LM_ERROR, ASYS_TEXT ("ACE_Message_Block"))); } -ACE_Message_Block::ACE_Message_Block (ACE_Allocator *message_block_allocator) +ACE_Message_Block::ACE_Message_Block (void) : data_block_ (0) { ACE_TRACE ("ACE_Message_Block::ACE_Message_Block"); @@ -320,8 +304,7 @@ ACE_Message_Block::ACE_Message_Block (ACE_Allocator *message_block_allocator) ACE_Time_Value::zero, // execution time ACE_Time_Value::max_time, // absolute time of deadline 0, // data block - 0, // data_block allocator - message_block_allocator) == -1) // message_block allocator + 0) == -1) // data_block allocator ACE_ERROR ((LM_ERROR, ASYS_TEXT ("ACE_Message_Block"))); } @@ -335,8 +318,7 @@ ACE_Message_Block::ACE_Message_Block (size_t size, u_long priority, const ACE_Time_Value & execution_time, const ACE_Time_Value & deadline_time, - ACE_Allocator *data_block_allocator, - ACE_Allocator *message_block_allocator) + ACE_Allocator *data_block_allocator) : data_block_ (0) { ACE_TRACE ("ACE_Message_Block::ACE_Message_Block"); @@ -352,8 +334,7 @@ ACE_Message_Block::ACE_Message_Block (size_t size, execution_time, deadline_time, 0, // data block - data_block_allocator, - message_block_allocator) == -1) + data_block_allocator) == -1) ACE_ERROR ((LM_ERROR, ASYS_TEXT ("ACE_Message_Block"))); } @@ -368,8 +349,7 @@ ACE_Message_Block::init (size_t size, u_long priority, const ACE_Time_Value & execution_time, const ACE_Time_Value & deadline_time, - ACE_Allocator *data_block_allocator, - ACE_Allocator *message_block_allocator) + ACE_Allocator *data_block_allocator) { ACE_TRACE ("ACE_Message_Block::init"); @@ -384,8 +364,7 @@ ACE_Message_Block::init (size_t size, execution_time, deadline_time, 0, // data block - data_block_allocator, - message_block_allocator); + data_block_allocator); } int @@ -406,8 +385,7 @@ ACE_Message_Block::init (const char *data, ACE_Time_Value::zero, // execution time ACE_Time_Value::max_time, // absolute time of deadline 0, // data block - 0, // data_block allocator - 0); // message_block allocator + 0); } ACE_Message_Block::ACE_Message_Block (size_t size, @@ -421,8 +399,7 @@ ACE_Message_Block::ACE_Message_Block (size_t size, const ACE_Time_Value & execution_time, const ACE_Time_Value & deadline_time, ACE_Data_Block *db, - ACE_Allocator *data_block_allocator, - ACE_Allocator *message_block_allocator) + ACE_Allocator *data_block_allocator) : data_block_ (0) { ACE_TRACE ("ACE_Message_Block::ACE_Message_Block"); @@ -438,14 +415,12 @@ ACE_Message_Block::ACE_Message_Block (size_t size, execution_time, deadline_time, db, - data_block_allocator, - message_block_allocator) == -1) + data_block_allocator) == -1) ACE_ERROR ((LM_ERROR, ASYS_TEXT ("ACE_Message_Block"))); } -ACE_Message_Block::ACE_Message_Block (ACE_Data_Block *data_block, - ACE_Allocator *message_block_allocator) +ACE_Message_Block::ACE_Message_Block (ACE_Data_Block *data_block) : data_block_ (0) { ACE_TRACE ("ACE_Message_Block::ACE_Message_Block"); @@ -460,9 +435,8 @@ ACE_Message_Block::ACE_Message_Block (ACE_Data_Block *data_block, 0, // priority ACE_Time_Value::zero, // execution time ACE_Time_Value::max_time, // absolute time of deadline - data_block, // data block - data_block->data_block_allocator (), - message_block_allocator) == -1) + data_block, + data_block->data_block_allocator ()) == -1) // data block ACE_ERROR ((LM_ERROR, ASYS_TEXT ("ACE_Message_Block"))); } @@ -479,8 +453,7 @@ ACE_Message_Block::init_i (size_t size, const ACE_Time_Value & execution_time, const ACE_Time_Value & deadline_time, ACE_Data_Block *db, - ACE_Allocator *data_block_allocator, - ACE_Allocator *message_block_allocator) + ACE_Allocator *data_block_allocator) { ACE_TRACE ("ACE_Message_Block::init_i"); ACE_FUNCTION_TIMEPROBE (ACE_MESSAGE_BLOCK_INIT_I_ENTER); @@ -494,8 +467,6 @@ ACE_Message_Block::init_i (size_t size, this->next_ = 0; this->prev_ = 0; - this->message_block_allocator_ = message_block_allocator; - if (this->data_block_ != 0) { this->data_block_->release (); @@ -712,13 +683,8 @@ ACE_Message_Block::release_i (ACE_Lock *lock) } // We will now commit suicide: this object *must* have come from the - // allocator given. - if (this->message_block_allocator_ == 0) - delete this; - else - ACE_DES_FREE (this, - message_block_allocator_->free, - ACE_Message_Block); + // heap. + delete this; return result; } @@ -774,50 +740,24 @@ ACE_Message_Block::duplicate (void) const // Create a new <ACE_Message_Block> that contains unique copies of // the message block fields, but a reference counted duplicate of // the <ACE_Data_Block>. - - // If there is no allocator, use the standard new and delete calls. - if (this->message_block_allocator_ == 0) - ACE_NEW_RETURN (nb, - ACE_Message_Block (0, // size - ACE_Message_Type (0), // type - 0, // cont - 0, // data - 0, // allocator - 0, // locking strategy - 0, // flags - this->priority_, // priority - this->execution_time_, // execution time - this->deadline_time_, // absolute time to deadline - // Get a pointer to a - // "duplicated" <ACE_Data_Block> - // (will simply increment the - // reference count). - this->data_block ()->duplicate (), - this->data_block ()->data_block_allocator (), - this->message_block_allocator_), + ACE_NEW_RETURN (nb, + ACE_Message_Block (0, // size + ACE_Message_Type (0), // type + 0, // cont + 0, // data + 0, // allocator + 0, // locking strategy + 0, // flags + this->priority_, // priority + this->execution_time_, // execution time + this->deadline_time_, // absolute time to deadline + // Get a pointer to a + // "duplicated" <ACE_Data_Block> + // (will simply increment the + // reference count). + this->data_block ()->duplicate (), + this->data_block ()->data_block_allocator ()), 0); - else // Otherwise, use the message_block_allocator passed in. - ACE_NEW_MALLOC_RETURN (nb, - ACE_reinterpret_cast(ACE_Message_Block*, - message_block_allocator_->malloc (sizeof (ACE_Message_Block))), - ACE_Message_Block (0, // size - ACE_Message_Type (0), // type - 0, // cont - 0, // data - 0, // allocator - 0, // locking strategy - 0, // flags - this->priority_, // priority - this->execution_time_, // execution time - this->deadline_time_, // absolute time to deadline - // Get a pointer to a - // "duplicated" <ACE_Data_Block> - // (will simply increment the - // reference count). - this->data_block ()->duplicate (), - this->data_block ()->data_block_allocator (), - this->message_block_allocator_), - 0); // Set the read and write pointers in the new <Message_Block> to the // same relative offset as in the existing <Message_Block>. Note @@ -899,52 +839,19 @@ ACE_Message_Block::clone (Message_Flags mask) const if (db == 0) return 0; - ACE_Message_Block *nb; - - if(message_block_allocator_ == 0) - { - nb = new ACE_Message_Block (0, // size - ACE_Message_Type (0), // type - 0, // cont - 0, // data - 0, // allocator - 0, // locking strategy - 0, // flags - this->priority_, // priority - this->execution_time_, // execution time - this->deadline_time_, // absolute time to deadline - // Get a pointer to a - // "duplicated" <ACE_Data_Block> - // (will simply increment the - // reference count). - db, - db->data_block_allocator (), - this->message_block_allocator_); - } - else - { - // This is the ACE_NEW_MALLOC macro with the return check removed. - // We need to do it this way because if it fails we need to release - // the cloned data block that was created above. If we used - // ACE_NEW_MALLOC_RETURN, there would be a memory leak because the - // above db pointer would be left dangling. - nb = ACE_static_cast(ACE_Message_Block*,message_block_allocator_->malloc (sizeof (ACE_Message_Block))); - if(nb != 0) - new (nb) ACE_Message_Block (0, // size - ACE_Message_Type (0), // type - 0, // cont - 0, // data - 0, // allocator - 0, // locking strategy - 0, // flags - this->priority_, // priority - this->execution_time_, // execution time - this->deadline_time_, // absolute time to deadline - db, - db->data_block_allocator(), - this->message_block_allocator_); - } - + ACE_Message_Block *nb = + new ACE_Message_Block (0, // size + ACE_Message_Type (0), // type + 0, // cont + 0, // data + 0, // allocator + 0, // locking strategy + 0, // flags + this->priority_, // priority + this->execution_time_, // execution time + this->deadline_time_, // absolute time to deadline + db, // data_block + db->data_block_allocator ()); if (nb == 0) { db->release (); diff --git a/ace/Message_Block.h b/ace/Message_Block.h index 3826646765c..dc7f989bcab 100644 --- a/ace/Message_Block.h +++ b/ace/Message_Block.h @@ -100,11 +100,10 @@ public: }; // = Initialization and termination. - ACE_Message_Block (ACE_Allocator *message_block_allocator = 0); + ACE_Message_Block (void); // Create an empty message. - ACE_Message_Block (ACE_Data_Block *, - ACE_Allocator *message_block_allocator = 0); + ACE_Message_Block (ACE_Data_Block *); // Create an <ACE_Message_Block> that owns the <ACE_Data_Block> *. ACE_Message_Block (const char *data, @@ -124,8 +123,7 @@ public: u_long priority = 0, const ACE_Time_Value & execution_time = ACE_Time_Value::zero, const ACE_Time_Value & deadline_time = ACE_Time_Value::max_time, - ACE_Allocator *data_block_allocator = 0, - ACE_Allocator *message_block_allocator = 0); + ACE_Allocator *data_block_allocator = 0); // Create an initialized message of type <type> containing <size> // bytes. The <cont> argument initializes the continuation field in // the <Message_Block>. If <data> == 0 then we create and own the @@ -139,13 +137,6 @@ public: // The <data_block_allocator> is use to allocate the data blocks // while the <allocator_strategy> is used to allocate the buffers // contained by those. - // The <message_block_allocator> is used to allocate new - // <Message_Block> objects when a duplicate method is called. If - // a <message_block_allocator> is given, this <Message_Block> and - // future <Message_Block> objects created by duplicate will be free'ed - // into this allocator when they are released. Note: if you use this - // allocator, the <Message_Block> you created should have been created - // using this allocator because it will be released to the same allocator. int init (const char *data, size_t size = 0); @@ -163,8 +154,7 @@ public: u_long priority = 0, const ACE_Time_Value & execution_time = ACE_Time_Value::zero, const ACE_Time_Value & deadline_time = ACE_Time_Value::max_time, - ACE_Allocator *data_block_allocator = 0, - ACE_Allocator *message_block_allocator = 0); + ACE_Allocator *data_block_allocator = 0); // Create an initialized message of type <type> containing <size> // bytes. The <cont> argument initializes the continuation field in // the <Message_Block>. If <data> == 0 then we create and own the @@ -181,9 +171,6 @@ public: virtual ~ACE_Message_Block (void); // Delete all the resources held in the message. - // - // Note that release() is designed to release the continuation - // chain; the destructor is not. See release() for details. // = Message Type accessors and mutators. @@ -250,24 +237,6 @@ public: // ACE_Data_Block's reference count goes to 0, it is deleted. // In all cases, this ACE_Message_Block is deleted - it must have come // from the heap, or there will be trouble. - // - // release() is designed to release the continuation chain; the - // destructor is not. If we make the destructor release the - // continuation chain by calling release() or delete on the message - // blocks in the continuation chain, the following code will not - // work since the message block in the continuation chain is not off - // the heap: - // - // ACE_Message_Block mb1 (1024); - // ACE_Message_Block mb2 (1024); - // - // mb1.cont (&mb2); - // - // And hence, call release() on a dynamically allocated message - // block. This will release all the message blocks in the - // continuation chain. If you call delete or let the message block - // fall off the stack, cleanup of the message blocks in the - // continuation chain becomes the responsibility of the user. static ACE_Message_Block *release (ACE_Message_Block *mb); // This behaves like the non-static method <release>, except that it @@ -323,23 +292,17 @@ public: void length (size_t n); // Set the length of the message - // = Set/get <Message_Block> size info. - size_t total_size (void) const; - // Get the total number of bytes in all <Message_Block>s, including - // chained <Message_Block>s. - + // = Message size is the total amount of space alloted. size_t size (void) const; - // Get the number of bytes in the top-level <Message_Block> (i.e., - // does not consider the bytes in chained <Message_Block>s). - + // Get the total amount of space in the message. int size (size_t length); - // Set the number of bytes in the top-level <Message_Block>, - // reallocating space if necessary. However, the <rd_ptr_> and - // <wr_ptr_> remain at the original offsets into the buffer, even if - // it is reallocated. Returns 0 if successful, else -1. + // Set the total amount of space in the message, reallocating space + // if necessary. However, the <rd_ptr_> and <wr_ptr_> remain at the + // original offsets into the buffer, even if it is reallocated. + // Returns 0 if successful, else -1. size_t space (void) const; - // Get the number of bytes in the top-level <Message_Block>. + // Get the amount of space remaining in the message. void crunch (void); // Normalizes data in message block to align with the base. @@ -396,8 +359,7 @@ protected: const ACE_Time_Value & execution_time, const ACE_Time_Value & deadline_time, ACE_Data_Block *db, - ACE_Allocator *data_block_allocator, - ACE_Allocator *message_block_allocator); + ACE_Allocator *data_block_allocator); // Perform the actual initialization. int release_i (ACE_Lock *lock); @@ -415,8 +377,7 @@ protected: const ACE_Time_Value & execution_time, const ACE_Time_Value & deadline_time, ACE_Data_Block *db, - ACE_Allocator *data_block_allocator, - ACE_Allocator *message_block_allocator); + ACE_Allocator *data_block_allocator); // Perform the actual initialization. size_t rd_ptr_; @@ -448,10 +409,6 @@ protected: // Pointer to the reference counted data structure that contains the // actual memory buffer. - ACE_Allocator *message_block_allocator_; - // The allocator used to destroy ourselves when release is called - // and create new message blocks on duplicate. - private: // = Disallow these operations for now (use <clone> instead). ACE_Message_Block &operator= (const ACE_Message_Block &); diff --git a/ace/Message_Block_T.i b/ace/Message_Block_T.i index 279dcaa704d..fa4f1aba34c 100644 --- a/ace/Message_Block_T.i +++ b/ace/Message_Block_T.i @@ -7,7 +7,6 @@ template<class ACE_LOCK> ACE_INLINE ACE_Locked_Data_Block<ACE_LOCK>::ACE_Locked_Data_Block (void) { - this->locking_strategy_ = &this->lock_; } template<class ACE_LOCK> ACE_INLINE diff --git a/ace/Message_Queue.h b/ace/Message_Queue.h index 01328a6655b..7006e18e5ae 100644 --- a/ace/Message_Queue.h +++ b/ace/Message_Queue.h @@ -146,7 +146,7 @@ class ACE_Message_Queue_Vx : public ACE_Message_Queue<ACE_NULL_SYNCH> // MsgQ. It does not use any synchronization, because it relies // on the native MsgQ implementation to take care of that. The // only system calls that it uses are VxWorks msgQLib calls, so - // it is suitable for use in interrupt service routines. + // it is suitable for use in iterrupt service routines. // // NOTE: *Many* ACE_Message_Queue features are not supported with // this specialization, including: diff --git a/ace/Message_Queue_T.cpp b/ace/Message_Queue_T.cpp index f1255f597a6..fa4bd8951d2 100644 --- a/ace/Message_Queue_T.cpp +++ b/ace/Message_Queue_T.cpp @@ -24,6 +24,11 @@ ACE_ALLOC_HOOK_DEFINE(ACE_Message_Queue) ACE_ALLOC_HOOK_DEFINE(ACE_Dynamic_Message_Queue) + +////////////////////////////////////// +// class ACE_Message_Queue_Iterator // +////////////////////////////////////// + template <ACE_SYNCH_DECL> ACE_Message_Queue_Iterator<ACE_SYNCH_USE>::ACE_Message_Queue_Iterator (ACE_Message_Queue <ACE_SYNCH_USE> &q) : queue_ (q), @@ -34,7 +39,7 @@ ACE_Message_Queue_Iterator<ACE_SYNCH_USE>::ACE_Message_Queue_Iterator (ACE_Messa template <ACE_SYNCH_DECL> int ACE_Message_Queue_Iterator<ACE_SYNCH_USE>::next (ACE_Message_Block *&entry) { - ACE_READ_GUARD_RETURN (ACE_SYNCH_MUTEX_T, m, this->queue_.lock_, -1) + ACE_Read_Guard<ACE_SYNCH_MUTEX_T> m (this->queue_.lock_); if (this->curr_ != 0) { @@ -48,7 +53,7 @@ ACE_Message_Queue_Iterator<ACE_SYNCH_USE>::next (ACE_Message_Block *&entry) template <ACE_SYNCH_DECL> int ACE_Message_Queue_Iterator<ACE_SYNCH_USE>::done (void) const { - ACE_READ_GUARD_RETURN (ACE_SYNCH_MUTEX_T, m, this->queue_.lock_, -1) + ACE_Read_Guard<ACE_SYNCH_MUTEX_T> m (this->queue_.lock_); return this->curr_ == 0; } @@ -56,7 +61,7 @@ ACE_Message_Queue_Iterator<ACE_SYNCH_USE>::done (void) const template <ACE_SYNCH_DECL> int ACE_Message_Queue_Iterator<ACE_SYNCH_USE>::advance (void) { - ACE_READ_GUARD_RETURN (ACE_SYNCH_MUTEX_T, m, this->queue_.lock_, -1) + ACE_Read_Guard<ACE_SYNCH_MUTEX_T> m (this->queue_.lock_); if (this->curr_) this->curr_ = this->curr_->next (); @@ -70,6 +75,11 @@ ACE_Message_Queue_Iterator<ACE_SYNCH_USE>::dump (void) const ACE_ALLOC_HOOK_DEFINE(ACE_Message_Queue_Iterator) + +////////////////////////////////////////////// +// class ACE_Message_Queue_Reverse_Iterator // +////////////////////////////////////////////// + template <ACE_SYNCH_DECL> ACE_Message_Queue_Reverse_Iterator<ACE_SYNCH_USE>::ACE_Message_Queue_Reverse_Iterator (ACE_Message_Queue <ACE_SYNCH_USE> &q) : queue_ (q), @@ -80,7 +90,7 @@ ACE_Message_Queue_Reverse_Iterator<ACE_SYNCH_USE>::ACE_Message_Queue_Reverse_Ite template <ACE_SYNCH_DECL> int ACE_Message_Queue_Reverse_Iterator<ACE_SYNCH_USE>::next (ACE_Message_Block *&entry) { - ACE_READ_GUARD_RETURN (ACE_SYNCH_MUTEX_T, m, this->queue_.lock_, -1) + ACE_Read_Guard<ACE_SYNCH_MUTEX_T> m (this->queue_.lock_); if (this->curr_ != 0) { @@ -94,7 +104,7 @@ ACE_Message_Queue_Reverse_Iterator<ACE_SYNCH_USE>::next (ACE_Message_Block *&ent template <ACE_SYNCH_DECL> int ACE_Message_Queue_Reverse_Iterator<ACE_SYNCH_USE>::done (void) const { - ACE_READ_GUARD_RETURN (ACE_SYNCH_MUTEX_T, m, this->queue_.lock_, -1) + ACE_Read_Guard<ACE_SYNCH_MUTEX_T> m (this->queue_.lock_); return this->curr_ == 0; } @@ -102,7 +112,7 @@ ACE_Message_Queue_Reverse_Iterator<ACE_SYNCH_USE>::done (void) const template <ACE_SYNCH_DECL> int ACE_Message_Queue_Reverse_Iterator<ACE_SYNCH_USE>::advance (void) { - ACE_READ_GUARD_RETURN (ACE_SYNCH_MUTEX_T, m, this->queue_.lock_, -1) + ACE_Read_Guard<ACE_SYNCH_MUTEX_T> m (this->queue_.lock_); if (this->curr_) this->curr_ = this->curr_->prev (); @@ -114,6 +124,11 @@ ACE_Message_Queue_Reverse_Iterator<ACE_SYNCH_USE>::dump (void) const { } + +///////////////////////////// +// class ACE_Message_Queue // +///////////////////////////// + template <ACE_SYNCH_DECL> void ACE_Message_Queue<ACE_SYNCH_USE>::dump (void) const { @@ -236,9 +251,15 @@ ACE_Message_Queue<ACE_SYNCH_USE>::close (void) { this->cur_count_--; - this->cur_bytes_ -= this->head_->total_size (); + ACE_Message_Block *temp; + + // Decrement all the counts. + for (temp = this->head_; + temp != 0; + temp = temp->cont ()) + this->cur_bytes_ -= temp->size (); - ACE_Message_Block *temp = this->head_; + temp = this->head_; this->head_ = this->head_->next (); // Make sure to use <release> rather than <delete> since this is @@ -310,8 +331,12 @@ ACE_Message_Queue<ACE_SYNCH_USE>::enqueue_tail_i (ACE_Message_Block *new_item) this->tail_ = new_item; } - // Make sure to count all the bytes in a composite message!!! - this->cur_bytes_ += new_item->total_size (); + // Make sure to count *all* the bytes in a composite message!!! + + for (ACE_Message_Block *temp = new_item; + temp != 0; + temp = temp->cont ()) + this->cur_bytes_ += temp->size (); this->cur_count_++; @@ -341,8 +366,12 @@ ACE_Message_Queue<ACE_SYNCH_USE>::enqueue_head_i (ACE_Message_Block *new_item) this->head_ = new_item; - // Make sure to count all the bytes in a composite message!!! - this->cur_bytes_ += new_item->total_size (); + // Make sure to count *all* the bytes in a composite message!!! + + for (ACE_Message_Block *temp = new_item; + temp != 0; + temp = temp->cont ()) + this->cur_bytes_ += temp->size (); this->cur_count_++; @@ -406,8 +435,12 @@ ACE_Message_Queue<ACE_SYNCH_USE>::enqueue_i (ACE_Message_Block *new_item) } } - // Make sure to count all the bytes in a composite message!!! - this->cur_bytes_ += new_item->total_size (); + // Make sure to count *all* the bytes in a composite message!!! + + for (ACE_Message_Block *temp = new_item; + temp != 0; + temp = temp->cont ()) + this->cur_bytes_ += temp->size (); this->cur_count_++; @@ -425,9 +458,10 @@ template <ACE_SYNCH_DECL> int ACE_Message_Queue<ACE_SYNCH_USE>::dequeue_head_i (ACE_Message_Block *&first_item) { if (this->head_ ==0) - ACE_ERROR_RETURN ((LM_ERROR, - ASYS_TEXT ("Attempting to dequeue from empty queue")), - -1); + { + ACE_ERROR_RETURN((LM_ERROR, ASYS_TEXT ("Attempting to dequeue from empty queue")), -1); + } + ACE_TRACE ("ACE_Message_Queue<ACE_SYNCH_USE>::dequeue_head_i"); first_item = this->head_; this->head_ = this->head_->next (); @@ -439,8 +473,12 @@ ACE_Message_Queue<ACE_SYNCH_USE>::dequeue_head_i (ACE_Message_Block *&first_item // NULL... this->head_->prev (0); - // Subtract off all of the bytes associated with this message. - this->cur_bytes_ -= first_item->total_size (); + // Make sure to subtract off all of the bytes associated with this + // message. + for (ACE_Message_Block *temp = first_item; + temp != 0; + temp = temp->cont ()) + this->cur_bytes_ -= temp->size (); this->cur_count_--; @@ -736,9 +774,10 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::~ACE_Dynamic_Message_Queue (void) // dtor: free message strategy and let base class dtor do the rest template <ACE_SYNCH_DECL> int -ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::remove_messages (ACE_Message_Block *&list_head, - ACE_Message_Block *&list_tail, - u_int status_flags) +ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::remove_messages ( + ACE_Message_Block *&list_head, + ACE_Message_Block *&list_tail, + u_int status_flags) { int result = 0; @@ -753,121 +792,130 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::remove_messages (ACE_Message_Block *&l // refresh priority status boundaries in the queue result = this->refresh_queue (current_time); if (result < 0) + { return result; + } - if ((status_flags & (u_int) ACE_Dynamic_Message_Strategy::PENDING) - && this->pending_head_ - && this->pending_tail_) + if ((status_flags & (u_int) ACE_Dynamic_Message_Strategy::PENDING) && + (this->pending_head_) && (this->pending_tail_)) + { + // patch up pointers for the new tail of the queue + if (this->pending_head_->prev ()) { - // patch up pointers for the new tail of the queue - if (this->pending_head_->prev ()) - { - this->tail_ = this->pending_head_->prev (); - this->pending_head_->prev ()->next (0); - } - else - { - // the list has become empty - this->head_ = 0; - this->tail_ = 0; - } - - // point to the head and tail of the list - list_head = this->pending_head_; - list_tail = this->pending_tail_; - - // cut the pending messages out of the queue entirely - this->pending_head_->prev (0); - this->pending_head_ = 0; - this->pending_tail_ = 0; + this->tail_ = this->pending_head_->prev (); + this->pending_head_->prev ()->next (0); } - - if ((status_flags & (u_int) ACE_Dynamic_Message_Strategy::LATE) - && this->late_head_ - && this->late_tail_) + else { - // Patch up pointers for the (possibly) new head and tail of the - // queue. - if (this->late_tail_->next ()) - this->late_tail_->next ()->prev (this->late_head_->prev ()); - else - this->tail_ = this->late_head_->prev (); - - if (this->late_head_->prev ()) - this->late_head_->prev ()->next (this->late_tail_->next ()); - else - this->head_ = this->late_tail_->next (); - - // put late messages behind pending messages (if any) being returned - this->late_head_->prev (list_tail); - if (list_tail) - list_tail->next (this->late_head_); - else - list_head = this->late_head_; - - list_tail = this->late_tail_; - - this->late_tail_->next (0); - this->late_head_ = 0; - this->late_tail_ = 0; + // the list has become empty + this->head_ = 0; + this->tail_ = 0; } - if ((status_flags & (u_int) ACE_Dynamic_Message_Strategy::BEYOND_LATE) - && this->beyond_late_head_ - && this->beyond_late_tail_) + // point to the head and tail of the list + list_head = this->pending_head_; + list_tail = this->pending_tail_; + + // cut the pending messages out of the queue entirely + this->pending_head_->prev (0); + this->pending_head_ = 0; + this->pending_tail_ = 0; + } + + if ((status_flags & (u_int) ACE_Dynamic_Message_Strategy::LATE) && + (this->late_head_) && (this->late_tail_)) + { + // patch up pointers for the (possibly) new head and tail of the queue + if (this->late_tail_->next ()) { - // Patch up pointers for the new tail of the queue - if (this->beyond_late_tail_->next ()) - { - this->head_ = this->beyond_late_tail_->next (); - this->beyond_late_tail_->next ()->prev (0); - } - else - { - // the list has become empty - this->head_ = 0; - this->tail_ = 0; - } - - // Put beyond late messages at the end of the list being - // returned. - if (list_tail) - { - this->beyond_late_head_->prev (list_tail); - list_tail->next (this->beyond_late_head_); - } - else - list_head = this->beyond_late_head_; + this->late_tail_->next ()->prev (this->late_head_->prev ()); + } + else + { + this->tail_ = this->late_head_->prev (); + } + if (this->late_head_->prev ()) + { + this->late_head_->prev ()->next (this->late_tail_->next ()); + } + else + { + this->head_ = this->late_tail_->next (); + } - list_tail = this->beyond_late_tail_; + // put late messages behind pending messages (if any) being returned + this->late_head_->prev (list_tail); + if (list_tail) + { + list_tail->next (this->late_head_); + } + else + { + list_head = this->late_head_; + } + list_tail = this->late_tail_; + + this->late_tail_->next (0); + this->late_head_ = 0; + this->late_tail_ = 0; + } + + if ((status_flags & (u_int) ACE_Dynamic_Message_Strategy::BEYOND_LATE) && + (this->beyond_late_head_) && (this->beyond_late_tail_)) + { + // patch up pointers for the new tail of the queue + if (this->beyond_late_tail_->next ()) + { + this->head_ = this->beyond_late_tail_->next (); + this->beyond_late_tail_->next ()->prev (0); + } + else + { + // the list has become empty + this->head_ = 0; + this->tail_ = 0; + } - this->beyond_late_tail_->next (0); - this->beyond_late_head_ = 0; - this->beyond_late_tail_ = 0; + // put beyond late messages at the end of the list being returned + if (list_tail) + { + this->beyond_late_head_->prev (list_tail); + list_tail->next (this->beyond_late_head_); + } + else + { + list_head = this->beyond_late_head_; } + list_tail = this->beyond_late_tail_; - // Decrement message and size counts for removed messages. - ACE_Message_Block *temp1; + this->beyond_late_tail_->next (0); + this->beyond_late_head_ = 0; + this->beyond_late_tail_ = 0; + } - for (temp1 = list_head; - temp1 != 0; - temp1 = temp1->next ()) - { - this->cur_count_--; + // decrement message and size counts for removed messages + ACE_Message_Block *temp1, *temp2; + for (temp1 = list_head; temp1 != 0; temp1 = temp1->next ()) + { + this->cur_count_--; - this->cur_bytes_ -= temp1->total_size (); + for (temp2 = temp1; temp2 != 0; temp2 = temp2->cont ()) + { + this->cur_bytes_ -= temp2->size (); } + } return result; } + // Detach all messages with status given in the passed flags from + // the queue and return them by setting passed head and tail pointers + // to the linked list they comprise. This method is intended primarily + // as a means of periodically harvesting messages that have missed + // their deadlines, but is available in its most general form. All + // messages are returned in priority order, from head to tail, as of + // the time this method was called. + -// Detach all messages with status given in the passed flags from the -// queue and return them by setting passed head and tail pointers to -// the linked list they comprise. This method is intended primarily -// as a means of periodically harvesting messages that have missed -// their deadlines, but is available in its most general form. All -// messages are returned in priority order, from head to tail, as of -// the time this method was called. template <ACE_SYNCH_DECL> int ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::dequeue_head (ACE_Message_Block *&first_item, @@ -891,23 +939,26 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::dequeue_head (ACE_Message_Block *&firs // refresh priority status boundaries in the queue result = this->refresh_queue (current_time); if (result < 0) + { return result; + } // *now* it's appropriate to wait for an enqueued item result = this->wait_not_empty_cond (ace_mon, timeout); if (result == -1) + { return result; + } - // call the internal dequeue method, which selects an item from the - // highest priority status portion of the queue that has messages - // enqueued. - result = this->dequeue_head_i (first_item); + // call the internal dequeue method, which selects an + // item from the highest priority status portion of + // the queue that has messages enqueued. + result = dequeue_head_i (first_item); return result; } - -// Dequeue and return the <ACE_Message_Block *> at the (logical) head -// of the queue. + // Dequeue and return the <ACE_Message_Block *> + // at the (logical) head of the queue. template <ACE_SYNCH_DECL> void ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::dump (void) const @@ -945,121 +996,130 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::enqueue_i (ACE_Message_Block *new_item ACE_TRACE ("ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::enqueue_i"); if (new_item == 0) + { return -1; + } int result = 0; - // Get the current time. + // get the current time ACE_Time_Value current_time = ACE_OS::gettimeofday (); - // Refresh priority status boundaries in the queue. - + // refresh priority status boundaries in the queue result = this->refresh_queue (current_time); if (result < 0) + { return result; + } - // Where we enqueue depends on the message's priority status. - switch (message_strategy_.priority_status (*new_item, - current_time)) - { + // where we enqueue depends on the message's priority status + switch (message_strategy_.priority_status (*new_item, current_time)) + { case ACE_Dynamic_Message_Strategy::PENDING: if (this->pending_tail_ == 0) - { - // Check for simple case of an empty pending queue, where - // all we need to do is insert <new_item> into the tail of - // the queue. - pending_head_ = new_item; - pending_tail_ = pending_head_; - return this->enqueue_tail_i (new_item); - } + { + // Check for simple case of an empty pending queue, where all we need to + // do is insert <new_item> into the tail of the queue. + pending_head_ = new_item; + pending_tail_ = pending_head_; + return this->enqueue_tail_i (new_item); + } else - { - // Enqueue the new message in priority order in the pending - // sublist - result = sublist_enqueue_i (new_item, - current_time, - this->pending_head_, - this->pending_tail_, - ACE_Dynamic_Message_Strategy::PENDING); - } + { + // enqueue the new message in priority order in the pending sublist + result = sublist_enqueue_i (new_item, + current_time, + this->pending_head_, + this->pending_tail_, + ACE_Dynamic_Message_Strategy::PENDING); + } + break; case ACE_Dynamic_Message_Strategy::LATE: if (this->late_tail_ == 0) + { + late_head_ = new_item; + late_tail_ = late_head_; + + if (this->pending_head_ == 0) { - late_head_ = new_item; - late_tail_ = late_head_; - - if (this->pending_head_ == 0) - // Check for simple case of an empty pending queue, - // where all we need to do is insert <new_item> into the - // tail of the queue. - return this->enqueue_tail_i (new_item); - else if (this->beyond_late_tail_ == 0) - // Check for simple case of an empty beyond late queue, where all - // we need to do is insert <new_item> into the head of the queue. - return this->enqueue_head_i (new_item); - else - { - // Otherwise, we can just splice the new message in - // between the pending and beyond late portions of the - // queue. - this->beyond_late_tail_->next (new_item); - new_item->prev (this->beyond_late_tail_); - this->pending_head_->prev (new_item); - new_item->next (this->pending_head_); - } + // Check for simple case of an empty pending queue, where all + // we need to do is insert <new_item> into the tail of the queue. + return this->enqueue_tail_i (new_item); } - else + else if (this->beyond_late_tail_ == 0) + { + // Check for simple case of an empty beyond late queue, where all + // we need to do is insert <new_item> into the head of the queue. + return this->enqueue_head_i (new_item); + } + else { - // Enqueue the new message in priority order in the late - // sublist - result = sublist_enqueue_i (new_item, - current_time, - this->late_head_, - this->late_tail_, - ACE_Dynamic_Message_Strategy::LATE); + // otherwise, we can just splice the new message in between + // the pending and beyond late portions of the queue + this->beyond_late_tail_->next (new_item); + new_item->prev (this->beyond_late_tail_); + this->pending_head_->prev (new_item); + new_item->next (this->pending_head_); } + } + else + { + // enqueue the new message in priority order in the late sublist + result = sublist_enqueue_i (new_item, + current_time, + this->late_head_, + this->late_tail_, + ACE_Dynamic_Message_Strategy::LATE); + } break; case ACE_Dynamic_Message_Strategy::BEYOND_LATE: if (this->beyond_late_tail_ == 0) + { + // Check for simple case of an empty beyond late queue, where all + // we need to do is insert <new_item> into the head of the queue. + beyond_late_head_ = new_item; + beyond_late_tail_ = beyond_late_head_; + return this->enqueue_head_i (new_item); + } + else + { + // all beyond late messages have the same (zero) priority, so + // just put the new one at the end of the beyond late messages + if (this->beyond_late_tail_->next ()) { - // Check for simple case of an empty beyond late queue, - // where all we need to do is insert <new_item> into the - // head of the queue. - beyond_late_head_ = new_item; - beyond_late_tail_ = beyond_late_head_; - return this->enqueue_head_i (new_item); + this->beyond_late_tail_->next ()->prev (new_item); } - else + else { - // all beyond late messages have the same (zero) priority, - // so just put the new one at the end of the beyond late - // messages - if (this->beyond_late_tail_->next ()) - this->beyond_late_tail_->next ()->prev (new_item); - else - this->tail_ = new_item; - - new_item->next (this->beyond_late_tail_->next ()); - this->beyond_late_tail_->next (new_item); - new_item->prev (this->beyond_late_tail_); - this->beyond_late_tail_ = new_item; + this->tail_ = new_item; } + new_item->next (this->beyond_late_tail_->next ()); + this->beyond_late_tail_->next (new_item); + new_item->prev (this->beyond_late_tail_); + this->beyond_late_tail_ = new_item; + } + break; - // should never get here, but just in case... + // should never get here, but just in case... default: result = -1; break; - } + } if (result < 0) + { return result; + } - this->cur_bytes_ += new_item->total_size (); + for (ACE_Message_Block *temp = new_item; + temp != 0; + temp = temp->cont ()) + this->cur_bytes_ += temp->size (); this->cur_count_++; @@ -1068,12 +1128,12 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::enqueue_i (ACE_Message_Block *new_item else return this->cur_count_; } + // Enqueue an <ACE_Message_Block *> in accordance with its priority. + // priority may be *dynamic* or *static* or a combination or *both* + // It calls the priority evaluation function passed into the Dynamic + // Message Queue constructor to update the priorities of all enqueued + // messages. -// Enqueue an <ACE_Message_Block *> in accordance with its priority. -// priority may be *dynamic* or *static* or a combination or *both* It -// calls the priority evaluation function passed into the Dynamic -// Message Queue constructor to update the priorities of all enqueued -// messages. template <ACE_SYNCH_DECL> int ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::sublist_enqueue_i (ACE_Message_Block *new_item, @@ -1085,64 +1145,72 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::sublist_enqueue_i (ACE_Message_Block * int result = 0; ACE_Message_Block *current_item = 0; - // Find message after which to enqueue new item, based on message - // priority and priority status. + // find message after which to enqueue new item, + // based on message priority and priority status for (current_item = sublist_tail; current_item; current_item = current_item->prev ()) + { + if (message_strategy_.priority_status (*current_item, current_time) == status) { - if (message_strategy_.priority_status (*current_item, current_time) == status) - { - if (current_item->msg_priority () >= new_item->msg_priority ()) - break; - } - else - { - sublist_head = new_item; - break; - } + if (current_item->msg_priority () >= new_item->msg_priority ()) + { + break; + } } + else + { + sublist_head = new_item; + break; + } + } if (current_item == 0) + { + // if the new message has highest priority of any, + // put it at the head of the list (and sublist) + new_item->prev (0); + new_item->next (this->head_); + if (this->head_ != 0) { - // If the new message has highest priority of any, put it at the - // head of the list (and sublist). - new_item->prev (0); - new_item->next (this->head_); - if (this->head_ != 0) - this->head_->prev (new_item); - else - { - this->tail_ = new_item; - sublist_tail = new_item; - } - this->head_ = new_item; - sublist_head = new_item; + this->head_->prev (new_item); + } + else + { + this->tail_ = new_item; + sublist_tail = new_item; } + this->head_ = new_item; + sublist_head = new_item; + } else + { + // insert the new item into the list + new_item->next (current_item->next ()); + new_item->prev (current_item); + if (current_item->next ()) { - // insert the new item into the list - new_item->next (current_item->next ()); - new_item->prev (current_item); - - if (current_item->next ()) - current_item->next ()->prev (new_item); - else - this->tail_ = new_item; + current_item->next ()->prev (new_item); + } + else + { + this->tail_ = new_item; + } - current_item->next (new_item); + current_item->next (new_item); - // If the new item has lowest priority of any in the sublist, - // move the tail pointer of the sublist back to the new item - if (current_item == sublist_tail) - sublist_tail = new_item; + // if the new item has lowest priority of any in the sublist, + // move the tail pointer of the sublist back to the new item + if (current_item == sublist_tail) + { + sublist_tail = new_item; } + } return result; } + // enqueue a message in priority order within a given priority status sublist -// Enqueue a message in priority order within a given priority status -// sublist. template <ACE_SYNCH_DECL> int ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::dequeue_head_i (ACE_Message_Block *&first_item) @@ -1177,8 +1245,7 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::dequeue_head_i (ACE_Message_Block *&fi first_item->prev (0); first_item->next (0); } - - // Second, try to dequeue from the head of the late list + // second, try to dequeue from the head of the late list else if (this->late_head_) { last_in_subqueue = this->late_head_ == this->late_tail_ ? 1 : 0; @@ -1245,7 +1312,10 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::dequeue_head_i (ACE_Message_Block *&fi // Make sure to subtract off all of the bytes associated with this // message. - this->cur_bytes_ -= first_item->total_size (); + for (ACE_Message_Block *temp = first_item; + temp != 0; + temp = temp->cont ()) + this->cur_bytes_ -= temp->size (); this->cur_count_--; @@ -1288,8 +1358,7 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::refresh_pending_queue (const ACE_Time_ // refresh priority status boundaries in the queue if (this->pending_head_) { - current_status = message_strategy_.priority_status (*this->pending_head_, - current_time); + current_status = message_strategy_.priority_status (*this->pending_head_, current_time); switch (current_status) { case ACE_Dynamic_Message_Strategy::BEYOND_LATE: @@ -1397,6 +1466,7 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::refresh_pending_queue (const ACE_Time_ -1); } } + return 0; } @@ -1489,11 +1559,11 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::refresh_late_queue (const ACE_Time_Val // function. template <ACE_SYNCH_DECL> int -ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::peek_dequeue_head (ACE_Message_Block *&first_item, - ACE_Time_Value *timeout) +ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::peek_dequeue_head ( + ACE_Message_Block *&first_item, + ACE_Time_Value *timeout) { - return ACE_Message_Queue<ACE_SYNCH_USE>::peek_dequeue_head (first_item, - timeout); + return ACE_Message_Queue<ACE_SYNCH_USE>::peek_dequeue_head (first_item, timeout); } // Private method to hide public base class method: just calls base @@ -1525,6 +1595,10 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::enqueue_head (ACE_Message_Block *new_i // where it was placed after the queue is refreshed prior to the next // enqueue or dequeue operation. +///////////////////////////////////// +// class ACE_Message_Queue_Factory // +///////////////////////////////////// + template <ACE_SYNCH_DECL> ACE_Message_Queue<ACE_SYNCH_USE> * ACE_Message_Queue_Factory<ACE_SYNCH_USE>::create_static_message_queue (size_t hwm, @@ -1632,4 +1706,7 @@ ACE_Message_Queue_Factory<ACE_SYNCH_USE>::create_NT_message_queue (size_t max_th #endif /* ACE_WIN32 && ACE_HAS_WINNT4 != 0 */ #endif /* defined (VXWORKS) */ + + + #endif /* ACE_MESSAGE_QUEUE_T_C */ diff --git a/ace/Naming_Context.cpp b/ace/Naming_Context.cpp index b165a601ac9..d0ff74ee5c5 100644 --- a/ace/Naming_Context.cpp +++ b/ace/Naming_Context.cpp @@ -585,11 +585,11 @@ ACE_Name_Options::parse_args (int argc, char *argv[]) { case 'c': { - if (ACE_OS::strcmp (get_opt.optarg, "PROC_LOCAL") == 0) + if (ACE_OS::strcmp (get_opt.optarg, "PROC_LOCAL")) this->context (ACE_Naming_Context::PROC_LOCAL); - else if (ACE_OS::strcmp (get_opt.optarg, "NODE_LOCAL") == 0) + else if (ACE_OS::strcmp (get_opt.optarg, "NODE_LOCAL")) this->context (ACE_Naming_Context::NODE_LOCAL); - else if (ACE_OS::strcmp (get_opt.optarg, "NET_LOCAL") == 0) + else if (ACE_OS::strcmp (get_opt.optarg, "NET_LOCAL")) this->context (ACE_Naming_Context::NET_LOCAL); } break; diff --git a/ace/OS.cpp b/ace/OS.cpp index 425bcad3dbf..30766fa8710 100644 --- a/ace/OS.cpp +++ b/ace/OS.cpp @@ -205,7 +205,6 @@ ACE_OS::netdb_release (void) ACE_EXIT_HOOK ACE_OS::exit_hook_ = 0; // Static constant representing `zero-time'. -// Note: this object requires static construction. const ACE_Time_Value ACE_Time_Value::zero; // Constant for maximum time representable. Note that this time @@ -213,7 +212,7 @@ const ACE_Time_Value ACE_Time_Value::zero; // have *their own* implementation-specific maximum time representations. // Its primary use is in time computations such as those used by the // dynamic subpriority strategies in the ACE_Dynamic_Message_Queue class. -// Note: this object requires static construction. + const ACE_Time_Value ACE_Time_Value::max_time (LONG_MAX, ACE_ONE_SECOND_IN_USECS - 1); @@ -254,7 +253,7 @@ void ACE_Time_Value::set (const FILETIME &file_time) ACE_Time_Value::operator FILETIME () const { - ACE_TRACE ("ACE_Time_Value::operator FILETIME"); + // ACE_TRACE ("ACE_Time_Value::operator FILETIME"); ULARGE_INTEGER _100ns; _100ns.QuadPart = (((DWORDLONG) this->tv_.tv_sec * (10000 * 1000) + this->tv_.tv_usec * 10) + @@ -301,7 +300,7 @@ ACE_Cleanup_Info::operator!= (const ACE_Cleanup_Info &o) const void ACE_Time_Value::dump (void) const { - ACE_TRACE ("ACE_Time_Value::dump"); + // ACE_TRACE ("ACE_Time_Value::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ntv_sec_ = %d"), this->tv_.tv_sec)); ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ntv_usec_ = %d\n"), this->tv_.tv_usec)); @@ -399,7 +398,7 @@ ACE_Countdown_Time::~ACE_Countdown_Time (void) void ACE_OS::readPPCTimeBase (u_long &most, u_long &least) { - ACE_TRACE ("ACE_OS::readPPCTimeBase"); + // ACE_TRACE ("ACE_OS::readPPCTimeBase"); // This function can't be inline because it depends on the arguments // being in particular registers (r3 and r4), in conformance with the @@ -419,7 +418,7 @@ ACE_OS::readPPCTimeBase (u_long &most, u_long &least) void ACE_OS::readPPCTimeBase (u_long &most, u_long &least) { - ACE_TRACE ("ACE_OS::readPPCTimeBase"); + // ACE_TRACE ("ACE_OS::readPPCTimeBase"); // This function can't be inline because it defines a symbol, // aclock. If there are multiple calls to the function in a @@ -446,7 +445,7 @@ ACE_OS::readPPCTimeBase (u_long &most, u_long &least) int ACE_OS::uname (struct utsname *name) { - ACE_TRACE ("ACE_OS::uname"); + // ACE_TRACE ("ACE_OS::uname"); # if defined (ACE_WIN32) size_t maxnamelen = sizeof name->nodename; ACE_OS::strcpy (name->sysname, ACE_TEXT ("Win32")); @@ -612,7 +611,7 @@ ACE_OS::uname (struct utsname *name) struct hostent * ACE_OS::gethostbyname (const char *name) { - ACE_TRACE ("ACE_OS::gethostbyname"); + // ACE_TRACE ("ACE_OS::gethostbyname"); // not thread safe! static hostent ret; @@ -641,7 +640,7 @@ ACE_OS::gethostbyname (const char *name) struct hostent * ACE_OS::gethostbyaddr (const char *addr, int length, int type) { - ACE_TRACE ("ACE_OS::gethostbyaddr"); + // ACE_TRACE ("ACE_OS::gethostbyaddr"); if (length != 4 || type != AF_INET) { @@ -680,7 +679,7 @@ ACE_OS::gethostbyaddr_r (const char *addr, int length, int type, hostent *result, ACE_HOSTENT_DATA buffer, int *h_errnop) { - ACE_TRACE ("ACE_OS::gethostbyaddr_r"); + // ACE_TRACE ("ACE_OS::gethostbyaddr_r"); if (length != 4 || type != AF_INET) { errno = EINVAL; @@ -730,7 +729,7 @@ ACE_OS::gethostbyname_r (const char *name, hostent *result, ACE_HOSTENT_DATA buffer, int *h_errnop) { - ACE_TRACE ("ACE_OS::gethostbyname_r"); + // ACE_TRACE ("ACE_OS::gethostbyname_r"); if (ACE_OS::netdb_acquire ()) return 0; @@ -777,7 +776,7 @@ ACE_OS::gethostbyname_r (const char *name, hostent *result, void ACE_OS::ace_flock_t::dump (void) const { -ACE_TRACE ("ACE_OS::ace_flock_t::dump"); +// ACE_TRACE ("ACE_OS::ace_flock_t::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("handle_ = %u"), this->handle_)); @@ -798,7 +797,7 @@ ACE_TRACE ("ACE_OS::ace_flock_t::dump"); void ACE_OS::mutex_lock_cleanup (void *mutex) { -ACE_TRACE ("ACE_OS::mutex_lock_cleanup"); +// ACE_TRACE ("ACE_OS::mutex_lock_cleanup"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) ACE_mutex_t *p_lock = (ACE_mutex_t *) mutex; @@ -818,7 +817,7 @@ ACE_TRACE ("ACE_OS::mutex_lock_cleanup"); FILE * ACE_OS::fopen (const char *filename, const char *mode) { - ACE_TRACE ("ACE_OS::fopen"); + // ACE_TRACE ("ACE_OS::fopen"); int hmode = _O_TEXT; for (const char *mode_ptr = mode; *mode_ptr != 0; mode_ptr++) @@ -846,7 +845,7 @@ ACE_OS::fopen (const char *filename, const char *mode) FILE * ACE_OS::fopen (const wchar_t *filename, const wchar_t *mode) { - ACE_TRACE ("ACE_OS::fopen"); + // ACE_TRACE ("ACE_OS::fopen"); int hmode = _O_TEXT; for (const wchar_t *mode_ptr = mode; *mode_ptr != 0; mode_ptr++) @@ -878,7 +877,7 @@ ACE_OS::fopen (const wchar_t *filename, const wchar_t *mode) int ACE_OS::fprintf (FILE *fp, const char *format, ...) { - ACE_TRACE ("ACE_OS::fprintf"); + // ACE_TRACE ("ACE_OS::fprintf"); int result = 0; va_list ap; va_start (ap, format); @@ -890,7 +889,7 @@ ACE_OS::fprintf (FILE *fp, const char *format, ...) int ACE_OS::printf (const char *format, ...) { - ACE_TRACE ("ACE_OS::printf"); + // ACE_TRACE ("ACE_OS::printf"); int result; va_list ap; va_start (ap, format); @@ -903,7 +902,6 @@ int ACE_OS::sprintf (char *buf, const char *format, ...) { // ACE_TRACE ("ACE_OS::sprintf"); - int result; va_list ap; va_start (ap, format); @@ -915,7 +913,7 @@ ACE_OS::sprintf (char *buf, const char *format, ...) char * ACE_OS::gets (char *str, int n) { - ACE_TRACE ("ACE_OS::gets"); + // ACE_TRACE ("ACE_OS::gets"); int c; char *s = str; @@ -957,7 +955,7 @@ fprintf (FILE *fp, char *format, const char *msg) int ACE_OS::fprintf (FILE *fp, const wchar_t *format, ...) { - ACE_TRACE ("ACE_OS::fprintf"); + // ACE_TRACE ("ACE_OS::fprintf"); # if defined (ACE_HAS_WINCE) ACE_NOTSUP_RETURN (-1); # else @@ -973,7 +971,7 @@ ACE_OS::fprintf (FILE *fp, const wchar_t *format, ...) int ACE_OS::sprintf (wchar_t *buf, const wchar_t *format, ...) { - ACE_TRACE ("ACE_OS::sprintf"); + // ACE_TRACE ("ACE_OS::sprintf"); int result; va_list ap; va_start (ap, format); @@ -986,7 +984,7 @@ ACE_OS::sprintf (wchar_t *buf, const wchar_t *format, ...) int ACE_OS::sprintf (wchar_t *buf, const char *format, ...) { - ACE_TRACE ("ACE_OS::sprintf"); + // ACE_TRACE ("ACE_OS::sprintf"); const wchar_t *wide_format = ACE_WString (format).fast_rep (); int result; va_list ap; @@ -1003,7 +1001,7 @@ ACE_OS::sprintf (wchar_t *buf, const char *format, ...) wchar_t * ACE_OS::mktemp (wchar_t *s) { - ACE_TRACE ("ACE_OS::mktemp"); + // ACE_TRACE ("ACE_OS::mktemp"); if (s == 0) // check for null template string failed! return 0; @@ -1025,13 +1023,11 @@ ACE_OS::mktemp (wchar_t *s) // condition if multiple threads in a process use the same // template). This appears to match the behavior of the // SunOS 5.5 mktemp(). - ACE_OS::sprintf (xxxxxx, ACE_TEXT ("%05d%c"), - ACE_OS::getpid (), unique_letter); + ACE_OS::sprintf (xxxxxx, ACE_TEXT ("%05d%c"), getpid (), unique_letter); while (ACE_OS::stat (s, &sb) >= 0) { if (++unique_letter <= L'z') - ACE_OS::sprintf (xxxxxx, ACE_TEXT ("%05d%c"), - ACE_OS::getpid (), unique_letter); + ACE_OS::sprintf (xxxxxx, ACE_TEXT ("%05d%c"), getpid (), unique_letter); else { // maximum of 26 unique files per template, per process @@ -1049,7 +1045,7 @@ ACE_OS::mktemp (wchar_t *s) int ACE_OS::execl (const char * /* path */, const char * /* arg0 */, ...) { - ACE_TRACE ("ACE_OS::execl"); + // ACE_TRACE ("ACE_OS::execl"); #if defined (ACE_WIN32) || defined (VXWORKS) ACE_NOTSUP_RETURN (-1); #else @@ -1062,7 +1058,7 @@ ACE_OS::execl (const char * /* path */, const char * /* arg0 */, ...) int ACE_OS::execle (const char * /* path */, const char * /* arg0 */, ...) { - ACE_TRACE ("ACE_OS::execle"); + // ACE_TRACE ("ACE_OS::execle"); #if defined (ACE_WIN32) || defined (VXWORKS) ACE_NOTSUP_RETURN (-1); #else @@ -1075,7 +1071,7 @@ ACE_OS::execle (const char * /* path */, const char * /* arg0 */, ...) int ACE_OS::execlp (const char * /* file */, const char * /* arg0 */, ...) { - ACE_TRACE ("ACE_OS::execlp"); + // ACE_TRACE ("ACE_OS::execlp"); #if defined (ACE_WIN32) || defined (VXWORKS) ACE_NOTSUP_RETURN (-1); #else @@ -1085,6 +1081,11 @@ ACE_OS::execlp (const char * /* file */, const char * /* arg0 */, ...) #endif /* ACE_WIN32 */ } +#if defined (ACE_HAS_PRIOCNTL) +# include /**/ <sys/rtpriocntl.h> +# include /**/ <sys/tspriocntl.h> +#endif /* ACE_HAS_PRIOCNTL */ + int ACE_OS::scheduling_class (const char *class_name, ACE_id_t &id) { @@ -1254,7 +1255,7 @@ int ACE_OS::sched_params (const ACE_Sched_Params &sched_params, ACE_id_t id) { - ACE_TRACE ("ACE_OS::sched_params"); + // ACE_TRACE ("ACE_OS::sched_params"); # if defined (CHORUS) ACE_UNUSED_ARG (id); int result; @@ -1389,7 +1390,6 @@ ACE_OS::sched_params (const ACE_Sched_Params &sched_params, // ACE_thread_t, ACE_hthread_t, and ACE_thread_key_t are implemented // as structures... Under no circumstances should these be given // initial values. -// Note: these three objects require static construction. ACE_thread_t ACE_OS::NULL_thread; ACE_hthread_t ACE_OS::NULL_hthread; #if defined (ACE_HAS_TSS_EMULATION) @@ -1421,19 +1421,19 @@ int ACE_OS::socket_initialized_; ACE_TSS_Ref::ACE_TSS_Ref (ACE_thread_t id) : tid_(id) { -ACE_TRACE ("ACE_TSS_Ref::ACE_TSS_Ref"); +// ACE_TRACE ("ACE_TSS_Ref::ACE_TSS_Ref"); } ACE_TSS_Ref::ACE_TSS_Ref (void) { -ACE_TRACE ("ACE_TSS_Ref::ACE_TSS_Ref"); +// ACE_TRACE ("ACE_TSS_Ref::ACE_TSS_Ref"); } // Check for equality. int ACE_TSS_Ref::operator== (const ACE_TSS_Ref &info) const { -ACE_TRACE ("ACE_TSS_Ref::operator=="); +// ACE_TRACE ("ACE_TSS_Ref::operator=="); return this->tid_ == info.tid_; } @@ -1443,7 +1443,7 @@ inline int ACE_TSS_Ref::operator!= (const ACE_TSS_Ref &tss_ref) const { -ACE_TRACE ("ACE_TSS_Ref::operator=="); +// ACE_TRACE ("ACE_TSS_Ref::operator=="); return !(*this == tss_ref); } @@ -1460,7 +1460,7 @@ ACE_TSS_Info::ACE_TSS_Info (ACE_thread_key_t key, tss_obj_ (tss_inst), thread_count_ (-1) { -ACE_TRACE ("ACE_TSS_Info::ACE_TSS_Info"); +// ACE_TRACE ("ACE_TSS_Info::ACE_TSS_Info"); } ACE_TSS_Info::ACE_TSS_Info (void) @@ -1469,7 +1469,7 @@ ACE_TSS_Info::ACE_TSS_Info (void) tss_obj_ (0), thread_count_ (-1) { -ACE_TRACE ("ACE_TSS_Info::ACE_TSS_Info"); +// ACE_TRACE ("ACE_TSS_Info::ACE_TSS_Info"); } # if defined (ACE_HAS_NONSCALAR_THREAD_KEY_T) @@ -1490,7 +1490,7 @@ ACE_TRACE ("ACE_TSS_Info::ACE_TSS_Info"); int ACE_TSS_Info::operator== (const ACE_TSS_Info &info) const { -ACE_TRACE ("ACE_TSS_Info::operator=="); +// ACE_TRACE ("ACE_TSS_Info::operator=="); return this->key_ == info.key_; } @@ -1499,7 +1499,7 @@ ACE_TRACE ("ACE_TSS_Info::operator=="); int ACE_TSS_Info::operator!= (const ACE_TSS_Info &info) const { -ACE_TRACE ("ACE_TSS_Info::operator=="); +// ACE_TRACE ("ACE_TSS_Info::operator=="); return !(*this == info); } @@ -1655,7 +1655,7 @@ ACE_TSS_Cleanup::~ACE_TSS_Cleanup (void) void ACE_TSS_Cleanup::exit (void * /* status */) { - ACE_TRACE ("ACE_TSS_Cleanup::exit"); + // ACE_TRACE ("ACE_TSS_Cleanup::exit"); ACE_TSS_TABLE_ITERATOR key_info = table_; ACE_TSS_Info info_arr[ACE_DEFAULT_THREAD_KEYS]; @@ -1797,13 +1797,13 @@ ACE_TSS_Cleanup::ACE_TSS_Cleanup (void) , in_use_key_ (ACE_TSS_Emulation::total_keys ()) #endif /* ACE_HAS_TSS_EMULATION */ { - ACE_TRACE ("ACE_TSS_Cleanup::ACE_TSS_Cleanup"); + // ACE_TRACE ("ACE_TSS_Cleanup::ACE_TSS_Cleanup"); } ACE_TSS_Cleanup * ACE_TSS_Cleanup::instance (void) { - ACE_TRACE ("ACE_TSS_Cleanup::instance"); + // ACE_TRACE ("ACE_TSS_Cleanup::instance"); // Create and initialize thread-specific key. if (ACE_TSS_Cleanup::instance_ == 0) @@ -1827,7 +1827,7 @@ ACE_TSS_Cleanup::insert (ACE_thread_key_t key, void (*destructor)(void *), void *inst) { -ACE_TRACE ("ACE_TSS_Cleanup::insert"); +// ACE_TRACE ("ACE_TSS_Cleanup::insert"); ACE_TSS_CLEANUP_GUARD ACE_KEY_INDEX (key_index, key); @@ -1845,7 +1845,7 @@ ACE_TRACE ("ACE_TSS_Cleanup::insert"); int ACE_TSS_Cleanup::remove (ACE_thread_key_t key) { - ACE_TRACE ("ACE_TSS_Cleanup::remove"); + // ACE_TRACE ("ACE_TSS_Cleanup::remove"); ACE_TSS_CLEANUP_GUARD ACE_KEY_INDEX (key_index, key); @@ -2404,7 +2404,7 @@ ace_cleanup_destroyer (ACE_Cleanup *object, void *param) extern "C" void * ace_thread_adapter (void *args) { - ACE_TRACE ("ace_thread_adapter"); + // ACE_TRACE ("ace_thread_adapter"); #if defined (ACE_HAS_TSS_EMULATION) // As early as we can in the execution of the new thread, allocate @@ -2452,7 +2452,7 @@ ACE_Thread_Adapter::ACE_Thread_Adapter (ACE_THR_FUNC user_func, # endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ #endif /* ACE_THREADS_DONT_INHERIT_LOG_MSG */ { -ACE_TRACE ("Ace_Thread_Adapter::Ace_Thread_Adapter"); +// ACE_TRACE ("Ace_Thread_Adapter::Ace_Thread_Adapter"); #if !defined (ACE_THREADS_DONT_INHERIT_LOG_MSG) && \ !defined (ACE_HAS_MINIMAL_ACE_OS) if (ACE_Log_Msg::exists ()) @@ -2482,7 +2482,7 @@ ACE_OS::thr_create (ACE_THR_FUNC func, size_t stacksize, ACE_Thread_Adapter *thread_adapter) { - ACE_TRACE ("ACE_OS::thr_create"); + // ACE_TRACE ("ACE_OS::thr_create"); if (ACE_BIT_DISABLED (flags, THR_DETACHED) && ACE_BIT_DISABLED (flags, THR_JOINABLE)) @@ -3319,7 +3319,7 @@ ACE_OS::thr_create (ACE_THR_FUNC func, void ACE_OS::thr_exit (void *status) { -ACE_TRACE ("ACE_OS::thr_exit"); +// ACE_TRACE ("ACE_OS::thr_exit"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) ::pthread_exit (status); @@ -3461,7 +3461,7 @@ ACE_OS::lwp_setparams (const ACE_Sched_Params &sched_params) int ACE_OS::thr_setspecific (ACE_OS_thread_key_t key, void *data) { - // ACE_TRACE ("ACE_OS::thr_setspecific"); +// ACE_TRACE ("ACE_OS::thr_setspecific"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) # if defined (ACE_HAS_FSU_PTHREADS) @@ -3492,7 +3492,7 @@ ACE_OS::thr_setspecific (ACE_OS_thread_key_t key, void *data) int ACE_OS::thr_setspecific (ACE_thread_key_t key, void *data) { - // ACE_TRACE ("ACE_OS::thr_setspecific"); +// ACE_TRACE ("ACE_OS::thr_setspecific"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_TSS_EMULATION) ACE_KEY_INDEX (key_index, key); @@ -3551,7 +3551,7 @@ ACE_OS::thr_setspecific (ACE_thread_key_t key, void *data) int ACE_OS::thr_keyfree (ACE_thread_key_t key) { -ACE_TRACE ("ACE_OS::thr_keyfree"); +// ACE_TRACE ("ACE_OS::thr_keyfree"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_TSS_EMULATION) return ACE_TSS_Cleanup::instance ()->remove (key); @@ -3590,7 +3590,7 @@ ACE_OS::thr_keycreate (ACE_OS_thread_key_t *key, # endif /* ACE_HAS_THR_C_DEST */ void *inst) { - // ACE_TRACE ("ACE_OS::thr_keycreate"); +// ACE_TRACE ("ACE_OS::thr_keycreate"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) ACE_UNUSED_ARG (inst); @@ -3644,7 +3644,7 @@ ACE_OS::thr_keycreate (ACE_thread_key_t *key, # endif /* ACE_HAS_THR_C_DEST */ void *inst) { - // ACE_TRACE ("ACE_OS::thr_keycreate"); +// ACE_TRACE ("ACE_OS::thr_keycreate"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_TSS_EMULATION) if (ACE_TSS_Emulation::next_key (*key) == 0) @@ -4038,7 +4038,7 @@ ACE_OS::read_n (ACE_HANDLE handle, void *buf, size_t len) { - ACE_TRACE ("ACE_OS::read_n"); + // ACE_TRACE ("ACE_OS::read_n"); size_t bytes_read; ssize_t n; @@ -4066,7 +4066,7 @@ ACE_OS::read_n (ACE_HANDLE handle, ssize_t ACE_OS::send_n (ACE_HANDLE handle, const void *buf, size_t len) { - ACE_TRACE ("ACE_OS::send_n"); + // ACE_TRACE ("ACE_OS::send_n"); size_t bytes_written; ssize_t n; @@ -4103,7 +4103,7 @@ ACE_OS::write_n (ACE_HANDLE handle, const void *buf, size_t len) { - ACE_TRACE ("ACE_OS::write_n"); + // ACE_TRACE ("ACE_OS::write_n"); size_t bytes_written; ssize_t n; @@ -4132,7 +4132,7 @@ ACE_OS::write_n (ACE_HANDLE handle, extern "C" int writev (ACE_HANDLE handle, ACE_WRITEV_TYPE iov[], int n) { - ACE_TRACE ("::writev"); + // ACE_TRACE ("::writev"); size_t length = 0; int i; @@ -4178,7 +4178,7 @@ readv (ACE_HANDLE handle, ACE_READV_TYPE *iov, int n) { -ACE_TRACE ("readv"); +// ACE_TRACE ("readv"); ssize_t length = 0; int i; @@ -4234,7 +4234,7 @@ ftruncate (ACE_HANDLE handle, long len) fl.l_start = len; fl.l_type = F_WRLCK; - return ACE_OS::fcntl (handle, F_FREESP, ACE_reinterpret_cast (long, &fl)); + return ::fcntl (handle, F_FREESP, &fl); } # endif /* ACE_NEEDS_FTRUNCATE */ @@ -4242,7 +4242,7 @@ ftruncate (ACE_HANDLE handle, long len) char * ACE_OS::mktemp (char *s) { - ACE_TRACE ("ACE_OS::mktemp"); + // ACE_TRACE ("ACE_OS::mktemp"); if (s == 0) // check for null template string failed! return 0; @@ -4264,12 +4264,11 @@ ACE_OS::mktemp (char *s) // condition if multiple threads in a process use the same // template). This appears to match the behavior of the // SunOS 5.5 mktemp(). - ACE_OS::sprintf (xxxxxx, "%05d%c", ACE_OS::getpid (), unique_letter); + ACE_OS::sprintf (xxxxxx, "%05d%c", getpid (), unique_letter); while (ACE_OS::stat (s, &sb) >= 0) { if (++unique_letter <= 'z') - ACE_OS::sprintf (xxxxxx, "%05d%c", ACE_OS::getpid (), - unique_letter); + ACE_OS::sprintf (xxxxxx, "%05d%c", getpid (), unique_letter); else { // maximum of 26 unique files per template, per process @@ -4435,7 +4434,7 @@ siginfo_t::siginfo_t (ACE_HANDLE *handles) pid_t ACE_OS::fork (const char *program_name) { - ACE_TRACE ("ACE_OS::fork"); + // ACE_TRACE ("ACE_OS::fork"); # if defined (ACE_LACKS_FORK) ACE_UNUSED_ARG (program_name); ACE_NOTSUP_RETURN (pid_t (-1)); @@ -4794,7 +4793,7 @@ ACE_OS::open (const char *filename, int perms, LPSECURITY_ATTRIBUTES sa) { - ACE_TRACE ("ACE_OS::open"); + // ACE_TRACE ("ACE_OS::open"); #if defined (ACE_HAS_WINCE) ACE_UNUSED_ARG (filename); ACE_UNUSED_ARG (mode); @@ -4913,7 +4912,7 @@ ACE_OS::open (const wchar_t *filename, LPSECURITY_ATTRIBUTES sa) { ACE_UNUSED_ARG (perms); - ACE_TRACE ("ACE_OS::open"); + // ACE_TRACE ("ACE_OS::open"); // Warning: This function ignores _O_APPEND DWORD access = GENERIC_READ; if (ACE_BIT_ENABLED (mode, O_WRONLY)) @@ -5181,7 +5180,7 @@ ACE_OS::ctime_r (const time_t *clock, time_t ACE_OS::mktime (struct tm *t) { - ACE_TRACE ("ACE_OS::mktime"); + // ACE_TRACE ("ACE_OS::mktime"); # if defined (ACE_PSOS) && ! defined (ACE_PSOS_HAS_TIME) ACE_UNUSED_ARG (t); ACE_NOTSUP_RETURN (-1); @@ -5270,7 +5269,7 @@ ACE_OS::rwlock_init (ACE_rwlock_t *rw, int ACE_OS::cond_destroy (ACE_cond_t *cv) { - ACE_TRACE ("ACE_OS::cond_destroy"); + // ACE_TRACE ("ACE_OS::cond_destroy"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_WTHREADS) ACE_OS::event_destroy (&cv->waiters_done_); @@ -5288,7 +5287,7 @@ ACE_OS::cond_destroy (ACE_cond_t *cv) int ACE_OS::cond_init (ACE_cond_t *cv, int type, LPCTSTR name, void *arg) { -ACE_TRACE ("ACE_OS::cond_init"); +// ACE_TRACE ("ACE_OS::cond_init"); # if defined (ACE_HAS_THREADS) cv->waiters_ = 0; cv->was_broadcast_ = 0; @@ -5317,7 +5316,7 @@ ACE_TRACE ("ACE_OS::cond_init"); int ACE_OS::cond_signal (ACE_cond_t *cv) { -ACE_TRACE ("ACE_OS::cond_signal"); +// ACE_TRACE ("ACE_OS::cond_signal"); # if defined (ACE_HAS_THREADS) // If there aren't any waiters, then this is a no-op. Note that // this function *must* be called with the <external_mutex> held @@ -5342,7 +5341,7 @@ ACE_TRACE ("ACE_OS::cond_signal"); int ACE_OS::cond_broadcast (ACE_cond_t *cv) { -ACE_TRACE ("ACE_OS::cond_broadcast"); +// ACE_TRACE ("ACE_OS::cond_broadcast"); # if defined (ACE_HAS_THREADS) // The <external_mutex> must be locked before this call is made. @@ -5390,7 +5389,7 @@ int ACE_OS::cond_wait (ACE_cond_t *cv, ACE_mutex_t *external_mutex) { - ACE_TRACE ("ACE_OS::cond_wait"); + // ACE_TRACE ("ACE_OS::cond_wait"); # if defined (ACE_HAS_THREADS) // Prevent race conditions on the <waiters_> count. ACE_OS::thread_mutex_lock (&cv->waiters_lock_); @@ -5485,7 +5484,7 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, ACE_mutex_t *external_mutex, ACE_Time_Value *timeout) { - ACE_TRACE ("ACE_OS::cond_timedwait"); + // ACE_TRACE ("ACE_OS::cond_timedwait"); # if defined (ACE_HAS_THREADS) // Handle the easy case first. if (timeout == 0) @@ -5633,10 +5632,7 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, /* NOTREACHED */ } # endif /* ACE_HAS_SIGNAL_OBJECT_AND_WAIT */ - // Note that this *must* be an "if" statement rather than an "else - // if" statement since the caller may have timed out and hence the - // result would have been -1 above. - if (last_waiter) + else if (last_waiter) // Release the signaler/broadcaster if we're the last waiter. # if defined (ACE_WIN32) ACE_OS::event_signal (&cv->waiters_done_); @@ -5665,7 +5661,7 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, ACE_thread_mutex_t *external_mutex, ACE_Time_Value *timeout) { - ACE_TRACE ("ACE_OS::cond_timedwait"); + // ACE_TRACE ("ACE_OS::cond_timedwait"); # if defined (ACE_HAS_THREADS) // Handle the easy case first. if (timeout == 0) @@ -5754,7 +5750,7 @@ int ACE_OS::cond_wait (ACE_cond_t *cv, ACE_thread_mutex_t *external_mutex) { - ACE_TRACE ("ACE_OS::cond_wait"); + // ACE_TRACE ("ACE_OS::cond_wait"); # if defined (ACE_HAS_THREADS) ACE_OS::thread_mutex_lock (&cv->waiters_lock_); cv->waiters_++; @@ -5821,7 +5817,7 @@ ACE_OS::cond_wait (ACE_cond_t *cv, void ACE_OS::exit (int status) { - ACE_TRACE ("ACE_OS::exit"); + // ACE_TRACE ("ACE_OS::exit"); #if defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) && !defined (ACE_HAS_WINCE) && !defined (ACE_DOESNT_INSTANTIATE_NONSTATIC_OBJECT_MANAGER) // Shut down the ACE_Object_Manager, if it had registered its exit_hook. @@ -6123,7 +6119,7 @@ ACE_OS_WString::ACE_OS_WString (const ACE_USHORT16 *s) { size_t len = ACE_OS::strlen (s); ACE_NEW (this->rep_, - char[len+1]); + char[len]); for (size_t i = 0; i < len; i++) { @@ -6140,7 +6136,7 @@ ACE_OS_CString::ACE_OS_CString (const char *s) { size_t len = ACE_OS::strlen (s); ACE_NEW (this->rep_, - ACE_USHORT16[len+1]); + ACE_USHORT16[len]); for (size_t i = 0; i < len; i++) this->rep_[i] = s[i]; @@ -6194,6 +6190,8 @@ ACE_OS_Object_Manager_Internal_Exit_Hook () ACE_OS_Object_Manager::instance ()->fini (); } +u_int ACE_OS_Object_Manager::init_fini_count_ = 0; + ACE_OS_Object_Manager *ACE_OS_Object_Manager::instance_ = 0; void *ACE_OS_Object_Manager::preallocated_object[ @@ -6201,25 +6199,21 @@ void *ACE_OS_Object_Manager::preallocated_object[ ACE_OS_Object_Manager::ACE_OS_Object_Manager () { - // If instance_ was not 0, then another ACE_OS_Object_Manager has - // already been instantiated (it is likely to be one initialized by way - // of library/DLL loading). Let this one go through construction in - // case there really is a good reason for it (like, ACE is a static/archive - // library, and this one is the non-static instance (with - // ACE_HAS_NONSTATIC_OBJECT_MANAGER, or the user has a good reason for - // creating a separate one) but the original one will be the one retrieved - // from calls to ACE_Object_Manager::instance(). + // If Instance_ was not 0, then another ACE_OS_Object_Manager has + // already been instantiated. Because this might be the non-static + // instance (with ACE_HAS_NONSTATIC_OBJECT_MANAGER), use it and leak + // the old one. We can't destroy it, because the application might + // be using some of its resources, via static constructors. - // Be sure that no further instances are created via instance (). - if (instance_ == 0) - instance_ = this; + // Store the address of the instance so that instance () doesn't + // allocate a new one when called. + instance_ = this; init (); } ACE_OS_Object_Manager::~ACE_OS_Object_Manager () { - dynamically_allocated_ = 0; // Don't delete this again in fini() fini (); } @@ -6237,7 +6231,9 @@ ACE_OS_Object_Manager::instance (void) ACE_NEW_RETURN (instance_pointer, ACE_OS_Object_Manager, 0); ACE_ASSERT (instance_pointer == instance_); +#if defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) instance_pointer->dynamically_allocated_ = 1; +#endif /* ACE_HAS_NONSTATIC_OBJECT_MANAGER */ } @@ -6247,50 +6243,49 @@ ACE_OS_Object_Manager::instance (void) int ACE_OS_Object_Manager::init (void) { + ++init_fini_count_; + if (starting_up_i ()) { - // First, indicate that this ACE_OS_Object_Manager instance is being + // First, indicate that the ACE_OS_Object_Manager instance is being // initialized. object_manager_state_ = OBJ_MAN_INITIALIZING; - if (this == instance_) - { # if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_OS_PREALLOCATE_OBJECT (ACE_thread_mutex_t, ACE_OS_MONITOR_LOCK) - if (ACE_OS::thread_mutex_init (ACE_reinterpret_cast ( + ACE_OS_PREALLOCATE_OBJECT (ACE_thread_mutex_t, ACE_OS_MONITOR_LOCK) + if (ACE_OS::thread_mutex_init (ACE_reinterpret_cast ( ACE_thread_mutex_t *, ACE_OS_Object_Manager::preallocated_object[ACE_OS_MONITOR_LOCK])) != 0) - ACE_ERROR ((LM_ERROR, - ASYS_TEXT("%p\n"), - ASYS_TEXT("ACE_OS_Object_Manager::init (1)"))); - ACE_OS_PREALLOCATE_OBJECT (ACE_recursive_thread_mutex_t, - ACE_TSS_CLEANUP_LOCK) - if (ACE_OS::recursive_mutex_init (ACE_reinterpret_cast ( + ACE_ERROR ((LM_ERROR, + ASYS_TEXT("%p\n"), + ASYS_TEXT("ACE_OS_Object_Manager::init (1)"))); + ACE_OS_PREALLOCATE_OBJECT (ACE_recursive_thread_mutex_t, + ACE_TSS_CLEANUP_LOCK) + if (ACE_OS::recursive_mutex_init (ACE_reinterpret_cast ( ACE_recursive_thread_mutex_t *, ACE_OS_Object_Manager::preallocated_object[ACE_TSS_CLEANUP_LOCK])) != 0) - ACE_ERROR ((LM_ERROR, - ASYS_TEXT("%p\n"), - ASYS_TEXT("ACE_OS_Object_Manager::init (2)"))); + ACE_ERROR ((LM_ERROR, + ASYS_TEXT("%p\n"), + ASYS_TEXT("ACE_OS_Object_Manager::init (2)"))); # if defined (ACE_HAS_TSS_EMULATION) && \ defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) - ACE_OS_PREALLOCATE_OBJECT (ACE_recursive_thread_mutex_t, - ACE_TSS_BASE_LOCK) - if (ACE_OS::recursive_mutex_init (ACE_reinterpret_cast ( - ACE_recursive_thread_mutex_t *, - ACE_OS_Object_Manager::preallocated_object[ACE_TSS_BASE_LOCK])) != 0) - ACE_ERROR ((LM_ERROR, - ASYS_TEXT("%p\n"), - ASYS_TEXT("ACE_OS_Object_Manager::init (3)"))); + ACE_OS_PREALLOCATE_OBJECT (ACE_recursive_thread_mutex_t, + ACE_TSS_BASE_LOCK) + if (ACE_OS::recursive_mutex_init (ACE_reinterpret_cast ( + ACE_recursive_thread_mutex_t *, + ACE_OS_Object_Manager::preallocated_object[ACE_TSS_BASE_LOCK])) != 0) + ACE_ERROR ((LM_ERROR, + ASYS_TEXT("%p\n"), + ASYS_TEXT("ACE_OS_Object_Manager::init (3)"))); # endif /* ACE_HAS_TSS_EMULATION && ACE_HAS_THREAD_SPECIFIC_STORAGE */ # endif /* ACE_MT_SAFE */ - // Open Winsock (no-op on other platforms). - ACE_OS::socket_init (ACE_WSOCK_VERSION); + // Open Winsock (no-op on other platforms). + ACE_OS::socket_init (ACE_WSOCK_VERSION); - // Register the exit hook, for use by ACE_OS::exit (). - ACE_OS::set_exit_hook (ACE_OS_Object_Manager_Internal_Exit_Hook); - } + // Register the exit hook, for use by ACE_OS::exit (). + ACE_OS::set_exit_hook (ACE_OS_Object_Manager_Internal_Exit_Hook); // Finally, indicate that the ACE_OS_Object_Manager instance has // been initialized. @@ -6303,13 +6298,18 @@ ACE_OS_Object_Manager::init (void) } } -// Clean up an ACE_OS_Object_Manager. There can be instances of this object -// other than The Instance. This can happen if a user creates one for some -// reason. All objects clean up their per-object information and managed -// objects, but only The Instance cleans up the static preallocated objects. int ACE_OS_Object_Manager::fini (void) { + if (init_fini_count_ > 0) + { + if (--init_fini_count_ > 0) + // Wait for remaining fini () calls. + return 1; + } + else + return -1; + if (instance_ == 0 || shutting_down_i ()) // Too late. Or, maybe too early. Either fini () has already // been called, or init () was never called. @@ -6330,66 +6330,51 @@ ACE_OS_Object_Manager::fini (void) next_ = 0; // Protect against recursive calls. } - // Only clean up preallocated objects when the singleton Instance is being - // destroyed. - if (this == instance_) - { - // Close down Winsock (no-op on other platforms). - ACE_OS::socket_fini (); + // Close down Winsock (no-op on other platforms). + ACE_OS::socket_fini (); #if ! defined (ACE_HAS_STATIC_PREALLOCATION) - // Cleanup the dynamically preallocated objects. + // Cleanup the dynamically preallocated objects. # if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) -# if !defined (__Lynx__) - // LynxOS 3.0.0 has problems with this after fork. - if (ACE_OS::thread_mutex_destroy (ACE_reinterpret_cast ( - ACE_thread_mutex_t *, - ACE_OS_Object_Manager::preallocated_object[ACE_OS_MONITOR_LOCK])) != 0) - ACE_ERROR ((LM_ERROR, - ASYS_TEXT("%p\n"), - ASYS_TEXT("ACE_OS_Object_Manager::fini (1)"))); -# endif /* ! __Lynx__ */ - ACE_OS_DELETE_PREALLOCATED_OBJECT (ACE_thread_mutex_t, - ACE_OS_MONITOR_LOCK) -# if !defined (__Lynx__) - // LynxOS 3.0.0 has problems with this after fork. - if (ACE_OS::recursive_mutex_destroy (ACE_reinterpret_cast ( - ACE_recursive_thread_mutex_t *, - ACE_OS_Object_Manager::preallocated_object[ACE_TSS_CLEANUP_LOCK])) != 0) - ACE_ERROR ((LM_ERROR, - ASYS_TEXT("%p\n"), - ASYS_TEXT("ACE_OS_Object_Manager::fini (2)"))); -# endif /* ! __Lynx__ */ - ACE_OS_DELETE_PREALLOCATED_OBJECT (ACE_recursive_thread_mutex_t, - ACE_TSS_CLEANUP_LOCK) + if (ACE_OS::thread_mutex_destroy (ACE_reinterpret_cast ( + ACE_thread_mutex_t *, + ACE_OS_Object_Manager::preallocated_object[ACE_OS_MONITOR_LOCK])) != 0) + ACE_ERROR ((LM_ERROR, + ASYS_TEXT("%p\n"), + ASYS_TEXT("ACE_OS_Object_Manager::fini (1)"))); + ACE_OS_DELETE_PREALLOCATED_OBJECT (ACE_thread_mutex_t, ACE_OS_MONITOR_LOCK) + if (ACE_OS::recursive_mutex_destroy (ACE_reinterpret_cast ( + ACE_recursive_thread_mutex_t *, + ACE_OS_Object_Manager::preallocated_object[ACE_TSS_CLEANUP_LOCK])) != 0) + ACE_ERROR ((LM_ERROR, + ASYS_TEXT("%p\n"), + ASYS_TEXT("ACE_OS_Object_Manager::fini (2)"))); + ACE_OS_DELETE_PREALLOCATED_OBJECT (ACE_recursive_thread_mutex_t, + ACE_TSS_CLEANUP_LOCK) # if defined (ACE_HAS_TSS_EMULATION) && \ defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) -# if !defined (__Lynx__) - // LynxOS 3.0.0 has problems with this after fork. - if (ACE_OS::recursive_mutex_destroy (ACE_reinterpret_cast ( - ACE_recursive_thread_mutex_t *, - ACE_OS_Object_Manager::preallocated_object[ACE_TSS_BASE_LOCK])) != 0) - ACE_ERROR ((LM_ERROR, - ASYS_TEXT("%p\n"), - ASYS_TEXT("ACE_OS_Object_Manager::fini (3)"))); -# endif /* ! __Lynx__ */ - ACE_OS_DELETE_PREALLOCATED_OBJECT (ACE_recursive_thread_mutex_t, - ACE_TSS_BASE_LOCK) + if (ACE_OS::recursive_mutex_destroy (ACE_reinterpret_cast ( + ACE_recursive_thread_mutex_t *, + ACE_OS_Object_Manager::preallocated_object[ACE_TSS_BASE_LOCK])) != 0) + ACE_ERROR ((LM_ERROR, + ASYS_TEXT("%p\n"), + ASYS_TEXT("ACE_OS_Object_Manager::fini (3)"))); + ACE_OS_DELETE_PREALLOCATED_OBJECT (ACE_recursive_thread_mutex_t, + ACE_TSS_BASE_LOCK) # endif /* ACE_HAS_TSS_EMULATION && ACE_HAS_THREAD_SPECIFIC_STORAGE */ # endif /* ACE_MT_SAFE */ #endif /* ! ACE_HAS_STATIC_PREALLOCATION */ - } - // Indicate that this ACE_OS_Object_Manager instance has been shut down. + // Indicate that the ACE_OS_Object_Manager instance has been shut down. object_manager_state_ = OBJ_MAN_SHUT_DOWN; +#if defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) if (dynamically_allocated_) { - delete this; + delete instance_; + instance_ = 0; } - - if (this == instance_) - instance_ = 0; +#endif /* ACE_HAS_NONSTATIC_OBJECT_MANAGER */ return 0; } @@ -118,6 +118,11 @@ # define ACE_NESTED_CLASS(TYPE, NAME) TYPE::NAME # endif /* ! ACE_HAS_BROKEN_NAMESPACES */ +// Define some helpful macros. +# define ACE_ONE_SECOND_IN_MSECS 1000L +# define ACE_ONE_SECOND_IN_USECS 1000000L +# define ACE_ONE_SECOND_IN_NSECS 1000000000L + # if defined (ACE_NO_INLINE) // ACE inlining has been explicitly disabled. Implement // internally within ACE by undefining __ACE_INLINE__. @@ -560,14 +565,14 @@ private: # define ACE_UNUSED_ARG(a) (a) # endif /* ghs */ -# if defined (__sgi) || defined (ghs) || defined (DEC_CXX) || defined(__BORLANDC__) || defined (__KCC) +# if defined (__sgi) || defined (ghs) || defined (DEC_CXX) || defined(__BORLANDC__) # define ACE_NOTREACHED(a) -# else /* ! defined . . . */ +# else # define ACE_NOTREACHED(a) a -# endif /* ! defined . . . */ +# endif /* defined (__sgi) || defined (ghs) || defined (DEC_CXX) || defined(__BORLANDC__) */ # if defined (ACE_NEEDS_FUNC_DEFINITIONS) - // It just evaporated ;-) Not pleasant. +// It just evaporated ;-) Not pleasant. # define ACE_UNIMPLEMENTED_FUNC(f) # else # define ACE_UNIMPLEMENTED_FUNC(f) f; @@ -1118,9 +1123,12 @@ extern "C" pthread_t pthread_self (void); // overlap or are otherwise confused. This is an attempt to start // straightening them out. # if defined (ACE_HAS_PTHREADS_STD) /* POSIX.1c threads (pthreads) */ + // POSIX.1c threads implies pthread_sigmask() +# if !defined (ACE_HAS_PTHREAD_SIGMASK) +# define ACE_HAS_PTHREAD_SIGMASK +# endif /* ! ACE_HAS_PTHREAD_SIGMASK */ // ... and 2-parameter asctime_r and ctime_r -# if !defined (ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R) && \ - !defined (ACE_HAS_STHREADS) +# if !defined (ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R) && !defined (ACE_HAS_STHREADS) # define ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R # endif # endif /* ACE_HAS_PTHREADS_STD */ @@ -1815,12 +1823,6 @@ struct stat # define ACE_THROW_SPEC(X) # endif /* ! ACE_HAS_EXCEPTIONS */ -#if defined (ACE_HAS_PRIOCNTL) - // Need to #include these before #defining USYNC_PROCESS on SunOS 5.x. -# include /**/ <sys/rtpriocntl.h> -# include /**/ <sys/tspriocntl.h> -#endif /* ACE_HAS_PRIOCNTL */ - # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) @@ -2193,8 +2195,7 @@ struct sockaddr_un { # define VX_UNBREAKABLE 0x0002 /* breakpoints ignored */ # define VX_FP_TASK 0x0008 /* floating point coprocessor */ # define VX_PRIVATE_ENV 0x0080 /* private environment support */ -# define VX_NO_STACK_FILL 0x0100 /* do not stack fill for - checkstack () */ +# define VX_NO_STACK_FILL 0x0100 /* do not stack fill for checkstack () */ # define THR_CANCEL_DISABLE 0 # define THR_CANCEL_ENABLE 0 @@ -2210,8 +2211,8 @@ struct sockaddr_un { # define THR_SCHED_RR 0 # define THR_SCHED_DEFAULT 0 # define USYNC_THREAD 0 -# define USYNC_PROCESS 1 /* It's all global on VxWorks - (without MMU option). */ +# define USYNC_PROCESS 1 /* it's all global on VxWorks (without MMU + option) */ # if !defined (ACE_DEFAULT_SYNCH_TYPE) // Types include these options: SEM_Q_PRIORITY, SEM_Q_FIFO, @@ -2221,8 +2222,7 @@ struct sockaddr_un { # endif /* ! ACE_DEFAULT_SYNCH_TYPE */ typedef SEM_ID ACE_mutex_t; -// Implement ACE_thread_mutex_t with ACE_mutex_t because there's just -// one process . . . +// implement ACE_thread_mutex_t with ACE_mutex_t sinces there's just one process . . . typedef ACE_mutex_t ACE_thread_mutex_t; # if !defined (ACE_HAS_POSIX_SEM) // Use VxWorks semaphores, wrapped . . . @@ -2394,11 +2394,9 @@ protected: typedef rwlock_t ACE_rwlock_t; # endif /* ACE_LACKS_RWLOCK_T */ -// Define some default thread priorities on all threaded platforms, if -// not defined above or in the individual platform config file. -// ACE_THR_PRI_FIFO_DEF should be used by applications for default -// real-time thread priority. ACE_THR_PRI_OTHER_DEF should be used -// for non-real-time priority. +// #define ACE_THR_PRI_FIFO_DEF on all threaded platforms, if not defined +// above or in the individual platform config file. It should be used by +// applications for a default real-time thread priority. # if !defined(ACE_THR_PRI_FIFO_DEF) # if defined (ACE_WTHREADS) // It would be more in spirit to use THREAD_PRIORITY_NORMAL. But, @@ -2411,18 +2409,6 @@ typedef rwlock_t ACE_rwlock_t; # endif /* ! ACE_WTHREADS */ # endif /* ! ACE_THR_PRI_FIFO_DEF */ -# if !defined(ACE_THR_PRI_OTHER_DEF) -# if defined (ACE_WTHREADS) - // It would be more in spirit to use THREAD_PRIORITY_NORMAL. But, - // using THREAD_PRIORITY_ABOVE_NORMAL should give preference to the - // threads in this process, even if the process is not in the - // REALTIME_PRIORITY_CLASS. -# define ACE_THR_PRI_OTHER_DEF THREAD_PRIORITY_NORMAL -# else /* ! ACE_WTHREADS */ -# define ACE_THR_PRI_OTHER_DEF 0 -# endif /* ! ACE_WTHREADS */ -# endif /* ! ACE_THR_PRI_OTHER_DEF */ - #if defined (ACE_HAS_RECURSIVE_MUTEXES) typedef ACE_thread_mutex_t ACE_recursive_thread_mutex_t; #else @@ -2474,12 +2460,8 @@ public: # define THR_SCHED_FIFO 0 # define THR_SCHED_RR 0 # define THR_SCHED_DEFAULT 0 -# if !defined (USYNC_THREAD) -# define USYNC_THREAD 0 -# endif /* ! USYNC_THREAD */ -# if !defined (USYNC_PROCESS) -# define USYNC_PROCESS 0 -# endif /* ! USYNC_PROCESS */ +# define USYNC_THREAD 0 +# define USYNC_PROCESS 0 // These are dummies needed for class OS.h typedef int ACE_cond_t; typedef int ACE_mutex_t; @@ -2637,17 +2619,6 @@ typedef unsigned int size_t; # endif /* ACE_HAS_BYTESEX_H */ # include "ace/Basic_Types.h" -// Define some helpful constants. -// Not type-safe, and signed. For backward compatibility. -#define ACE_ONE_SECOND_IN_MSECS 1000l -#define ACE_ONE_SECOND_IN_USECS 1000000l -#define ACE_ONE_SECOND_IN_NSECS 1000000000l - -// Type-safe, and unsigned. -static const ACE_UINT32 ACE_U_ONE_SECOND_IN_MSECS = 1000u; -static const ACE_UINT32 ACE_U_ONE_SECOND_IN_USECS = 1000000u; -static const ACE_UINT32 ACE_U_ONE_SECOND_IN_NSECS = 1000000000u; - # if defined (ACE_HAS_SIG_MACROS) # undef sigemptyset # undef sigfillset @@ -3417,7 +3388,14 @@ unsigned long inet_network(const char *); # endif /* howmany */ # endif /* __Lynx__ */ -# if defined (CHORUS) +# if defined (CYGWIN32) +# include /**/ <sys/uio.h> +# include /**/ <sys/file.h> +# include /**/ <sys/time.h> +# include /**/ <sys/resource.h> +# include /**/ <sys/wait.h> +# include /**/ <pwd.h> +# elif defined (CHORUS) # include /**/ <chorus.h> # include /**/ <cx/select.h> # include /**/ <sys/uio.h> @@ -3443,23 +3421,6 @@ typedef cx_fd_mask fd_mask; # define howmany(x, y) (((x)+((y)-1))/(y)) # endif /* howmany */ typedef void (*__sighandler_t)(int); // keep Signal compilation happy -# elif defined (CYGWIN32) -# include /**/ <sys/uio.h> -# include /**/ <sys/file.h> -# include /**/ <sys/time.h> -# include /**/ <sys/resource.h> -# include /**/ <sys/wait.h> -# include /**/ <pwd.h> -# elif defined (__QNX__) -# include /**/ <sys/uio.h> -# include /**/ <sys/ipc.h> -# include /**/ <sys/sem.h> -# include /**/ <sys/time.h> -# include /**/ <sys/wait.h> -# include /**/ <pwd.h> -# ifndef howmany -# define howmany(x, y) (((x)+((y)-1))/(y)) -# endif /* howmany */ # elif ! defined (VXWORKS) # include /**/ <sys/uio.h> # include /**/ <sys/ipc.h> @@ -3485,11 +3446,7 @@ typedef void (*__sighandler_t)(int); // keep Signal compilation happy # endif /* ACE_HAS_STRINGS */ # if defined (ACE_HAS_TERM_IOCTLS) -# if defined (__QNX__) -# include /**/ <termios.h> -# else /* ! __QNX__ */ -# include /**/ <sys/termios.h> -# endif /* ! __QNX__ */ +# include /**/ <sys/termios.h> # endif /* ACE_HAS_TERM_IOCTLS */ # if !defined (ACE_LACKS_UNISTD_H) @@ -3510,11 +3467,7 @@ typedef void (*__sighandler_t)(int); // keep Signal compilation happy # if defined (ACE_HAS_SIGINFO_T) # if !defined (ACE_LACKS_SIGINFO_H) -# if defined (__QNX__) -# include /**/ <sys/siginfo.h> -# else /* ! __QNX__ */ -# include /**/ <siginfo.h> -# endif /* ! __QNX__ */ +# include /**/ <siginfo.h> # endif /* ACE_LACKS_SIGINFO_H */ # if !defined (ACE_LACKS_UCONTEXT_H) # include /**/ <ucontext.h> @@ -3813,18 +3766,6 @@ typedef fd_set ACE_FD_SET_TYPE; # define MAXHOSTNAMELEN 256 # endif /* MAXHOSTNAMELEN */ -// Define INET string length constants if they haven't been defined -// -// for IPv4 dotted-decimal -# if !defined (INET_ADDRSTRLEN) -# define INET_ADDRSTRLEN 16 -# endif /* INET_ADDRSTRLEN */ -// -// for IPv6 hex string -# if !defined (INET6_ADDRSTRLEN) -# define INET6_ADDRSTRLEN 46 -# endif /* INET6_ADDRSTRLEN */ - # if defined (ACE_LACKS_SIGSET) typedef u_int sigset_t; # endif /* ACE_LACKS_SIGSET */ @@ -4814,7 +4755,7 @@ public: static int fclose (FILE *fp); static int fcntl (ACE_HANDLE handle, int cmd, - long arg = 0); + int val = 0); static int fdetach (const char *file); static int fsync(ACE_HANDLE handle); @@ -5052,9 +4993,6 @@ public: static int memcmp (const void *t, const void *s, size_t len); - static void *memchr(const void *s, - int c, - size_t len); static void *memcpy (void *t, const void *s, size_t len); @@ -5399,10 +5337,6 @@ public: const sigset_t *nsp, sigset_t *osp); - static int pthread_sigmask (int how, - const sigset_t *nsp, - sigset_t *osp); - // = A set of wrappers for sockets. static ACE_HANDLE accept (ACE_HANDLE handle, struct sockaddr *addr, @@ -5418,7 +5352,6 @@ public: int length, int type); static struct hostent *gethostbyname (const char *name); - static struct hostent *gethostbyname2 (const char *name, int type); static struct hostent *gethostbyaddr_r (const char *addr, int length, int type, @@ -5459,15 +5392,6 @@ public: static int inet_aton (const char *strptr, struct in_addr *addr); - static const char *inet_ntop (int family, - const void *addrptr, - char *strptr, - size_t len); - static int inet_pton (int family, - const char *strptr, - void *addrptr); - - static int listen (ACE_HANDLE handle, int backlog); static int recv (ACE_HANDLE handle, @@ -6167,6 +6091,11 @@ private: friend void ACE_OS_Object_Manager_Internal_Exit_Hook (); // This class is for internal use by ACE_OS, etc., only. + static u_int init_fini_count_; + // Counter to match init ()/fini () calls. init () must increment + // it; fini () must decrement it. fini () then does nothing until + // it reaches 0. + static ACE_OS_Object_Manager *instance (void); // Accessor to singleton instance. @@ -6548,11 +6477,7 @@ private: // introduces other stuff that breaks things, like <memory>, which // screws up auto_ptr. # include /**/ <new> -# if defined (__HP_aCC) && !defined (RWSTD_NO_NAMESPACE) -# define ACE_bad_alloc std::bad_alloc -# else -# define ACE_bad_alloc bad_alloc -# endif /* RWSTD_NO_NAMESPACE */ +# define ACE_bad_alloc bad_alloc # endif /* __SUNPRO_CC */ # define ACE_NEW_RETURN(POINTER,CONSTRUCTOR,RET_VAL) \ @@ -6604,209 +6529,38 @@ private: # define ACE_NOOP(x) -# define ACE_DES_NOFREE (POINTER,CLASS) \ - do { \ - if (POINTER) \ - { \ - POINTER->~CLASS (); \ - } \ - } \ - while (0) - -# define ACE_DES_ARRAY_NOFREE (POINTER,SIZE,CLASS) \ - do { \ - if (POINTER) \ - { \ - for (size_t i = 0; \ - i < SIZE; \ - ++i) \ - { \ - POINTER[i].~CLASS (); \ - } \ - } \ - } \ - while (0) - +# define ACE_DES_NOFREE (POINTER,CLASS) POINTER->~CLASS () # define ACE_DES_FREE(POINTER,DEALLOCATOR,CLASS) \ - do { \ - if (POINTER) \ - { \ - POINTER->~CLASS (); \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - -# define ACE_DES_ARRAY_FREE(POINTER,SIZE,DEALLOCATOR,CLASS) \ - do { \ - if (POINTER) \ - { \ - for (size_t i = 0; \ - i < SIZE; \ - ++i) \ - { \ - POINTER[i].~CLASS (); \ - } \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) + do { POINTER->~CLASS (); DEALLOCATOR (POINTER); } while (0) # if defined (ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR) # define ACE_DES_NOFREE_TEMPLATE (POINTER,T_CLASS,T_PARAMETER) \ - do { \ - if (POINTER) \ - { \ - POINTER->~T_CLASS (); \ - } \ - } \ - while (0) - -# define ACE_DES_ARRAY_NOFREE_TEMPLATE (POINTER,SIZE,T_CLASS,T_PARAMETER) \ - do { \ - if (POINTER) \ - { \ - for (size_t i = 0; \ - i < SIZE; \ - ++i) \ - { \ - POINTER[i].~T_CLASS (); \ - } \ - } \ - } \ - while (0) - + POINTER->~ T_CLASS () # define ACE_DES_FREE_TEMPLATE(POINTER,DEALLOCATOR,T_CLASS,T_PARAMETER) \ - do { \ - if (POINTER) \ - { \ - POINTER->~T_CLASS (); \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - -# define ACE_DES_ARRAY_FREE_TEMPLATE(POINTER,SIZE,DEALLOCATOR,T_CLASS,T_PARAMETER) \ - do { \ - if (POINTER) \ - { \ - for (size_t i = 0; \ - i < SIZE; \ - ++i) \ - { \ - POINTER[i].~T_CLASS (); \ - } \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - + do { POINTER->~ T_CLASS (); \ + DEALLOCATOR (POINTER); \ + } while (0) # define ACE_DES_FREE_TEMPLATE2(POINTER,DEALLOCATOR,T_CLASS,T_PARAM1,T_PARAM2) \ - do { \ - if (POINTER) \ - { \ - POINTER->~T_CLASS (); \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - -# define ACE_DES_ARRAY_FREE_TEMPLATE2(POINTER,SIZE,DEALLOCATOR,T_CLASS,T_PARAM1,T_PARAM2) \ - do { \ - if (POINTER) \ - { \ - for (size_t i = 0; \ - i < SIZE; \ - ++i) \ - { \ - POINTER[i].~T_CLASS (); \ - } \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - + do { POINTER->~ T_CLASS (); \ + DEALLOCATOR (POINTER); \ + } while (0) # else /* ! ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR */ # define ACE_DES_NOFREE_TEMPLATE (POINTER,T_CLASS,T_PARAMETER) \ - do { \ - if (POINTER) \ - { \ - POINTER->T_CLASS T_PARAMETER::~T_CLASS (); \ - } \ - } \ - while (0) - -# define ACE_DES_ARRAY_NOFREE_TEMPLATE (POINTER,SIZE,T_CLASS,T_PARAMETER) \ - do { \ - if (POINTER) \ - { \ - for (size_t i = 0; \ - i < SIZE; \ - ++i) \ - { \ - POINTER[i].T_CLASS T_PARAMETER::~T_CLASS (); \ - } \ - } \ - } \ - while (0) + POINTER -> T_CLASS T_PARAMETER ::~ T_CLASS () # if defined (__Lynx__) && __LYNXOS_SDK_VERSION == 199701L // LynxOS 3.0.0's g++ has trouble with the real versions of these. # define ACE_DES_FREE_TEMPLATE(POINTER,DEALLOCATOR,T_CLASS,T_PARAMETER) -# define ACE_DES_ARRAY_FREE_TEMPLATE(POINTER,DEALLOCATOR,T_CLASS,T_PARAMETER) # define ACE_DES_FREE_TEMPLATE2(POINTER,DEALLOCATOR,T_CLASS,T_PARAM1,T_PARAM2) -# define ACE_DES_ARRAY_FREE_TEMPLATE2(POINTER,DEALLOCATOR,T_CLASS,T_PARAM1,T_PARAM2) # else # define ACE_DES_FREE_TEMPLATE(POINTER,DEALLOCATOR,T_CLASS,T_PARAMETER) \ - do { \ - if (POINTER) \ - { \ - POINTER->T_CLASS T_PARAMETER::~T_CLASS (); \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - -# define ACE_DES_ARRAY_FREE_TEMPLATE(POINTER,SIZE,DEALLOCATOR,T_CLASS,T_PARAMETER) \ - do { \ - if (POINTER) \ - { \ - for (size_t i = 0; \ - i < SIZE; \ - ++i) \ - { \ - POINTER[i].T_CLASS T_PARAMETER::~T_CLASS (); \ - } \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - + do { POINTER-> T_CLASS T_PARAMETER ::~ T_CLASS (); \ + DEALLOCATOR (POINTER); \ + } while (0) # define ACE_DES_FREE_TEMPLATE2(POINTER,DEALLOCATOR,T_CLASS,T_PARAM1,T_PARAM2) \ - do { \ - if (POINTER) \ - { \ - POINTER->T_CLASS <T_PARAM1, T_PARAM2>::~T_CLASS (); \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - -# define ACE_DES_ARRAY_FREE_TEMPLATE2(POINTER,SIZE,DEALLOCATOR,T_CLASS,T_PARAM1,T_PARAM2) \ - do { \ - if (POINTER) \ - { \ - for (size_t i = 0; \ - i < SIZE; \ - ++i) \ - { \ - POINTER[i].T_CLASS <T_PARAM1, T_PARAM2>::~T_CLASS (); \ - } \ - DEALLOCATOR (POINTER); \ - } \ - } \ - while (0) - + do { POINTER-> T_CLASS <T_PARAM1, T_PARAM2> ::~ T_CLASS (); \ + DEALLOCATOR (POINTER); \ + } while (0) # endif /* defined (__Lynx__) && __LYNXOS_SDK_VERSION == 199701L */ # endif /* defined ! ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR */ @@ -7153,10 +6907,6 @@ typedef ACE_TRANSMIT_FILE_BUFFERS* ACE_LPTRANSMIT_FILE_BUFFERS; # define ASYS_INLINE inline # endif /* ACE_LACKS_INLINE_FUNCTIONS */ -# if !defined (ACE_HAS_MINIMAL_ACE_OS) -# include "ace/Trace.h" -# endif /* ! ACE_HAS_MINIMAL_ACE_OS */ - # if defined (ACE_HAS_INLINED_OSCALLS) # if defined (ACE_INLINE) # undef ACE_INLINE @@ -7166,8 +6916,10 @@ typedef ACE_TRANSMIT_FILE_BUFFERS* ACE_LPTRANSMIT_FILE_BUFFERS; # endif /* ACE_HAS_INLINED_OSCALLS */ # if !defined (ACE_HAS_MINIMAL_ACE_OS) - // This needs to come here to avoid problems with circular dependencies. -# include "ace/Log_Msg.h" +# include "ace/Trace.h" + +// These need to come here to avoid problems with circular dependencies. +# include "ace/Log_Msg.h" # endif /* ! ACE_HAS_MINIMAL_ACE_OS */ // The following are some insane macros that are useful in cases when @@ -112,7 +112,7 @@ typedef const struct timespec * ACE_TIMESPEC_PTR; ACE_INLINE ACE_Time_Value::operator timeval () const { - ACE_TRACE ("ACE_Time_Value::operator timeval"); + // ACE_TRACE ("ACE_Time_Value::operator timeval"); return this->tv_; } @@ -121,7 +121,7 @@ ACE_Time_Value::operator timeval () const ACE_INLINE ACE_Time_Value::operator const timeval * () const { - ACE_TRACE ("ACE_Time_Value::operator timeval"); + // ACE_TRACE ("ACE_Time_Value::operator timeval"); return (const timeval *) &this->tv_; } @@ -207,7 +207,7 @@ ACE_INLINE int operator > (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) { - ACE_TRACE ("operator >"); + // ACE_TRACE ("operator >"); if (tv1.tv_.tv_sec > tv2.tv_.tv_sec) return 1; else if (tv1.tv_.tv_sec == tv2.tv_.tv_sec @@ -223,7 +223,7 @@ ACE_INLINE int operator >= (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) { - ACE_TRACE ("operator >="); + // ACE_TRACE ("operator >="); if (tv1.tv_.tv_sec > tv2.tv_.tv_sec) return 1; else if (tv1.tv_.tv_sec == tv2.tv_.tv_sec @@ -238,7 +238,7 @@ operator >= (const ACE_Time_Value &tv1, ACE_INLINE ACE_Time_Value::operator timespec_t () const { - ACE_TRACE ("ACE_Time_Value::operator timespec_t"); + // ACE_TRACE ("ACE_Time_Value::operator timespec_t"); timespec_t tv; #if ! defined(ACE_HAS_BROKEN_TIMESPEC_MEMBERS) tv.tv_sec = this->tv_.tv_sec; @@ -276,7 +276,7 @@ ACE_Time_Value::ACE_Time_Value (const ACE_Time_Value &tv) ACE_INLINE long ACE_Time_Value::sec (void) const { - ACE_TRACE ("ACE_Time_Value::sec"); + // ACE_TRACE ("ACE_Time_Value::sec"); return this->tv_.tv_sec; } @@ -285,7 +285,7 @@ ACE_Time_Value::sec (void) const ACE_INLINE void ACE_Time_Value::sec (long sec) { - ACE_TRACE ("ACE_Time_Value::sec"); + // ACE_TRACE ("ACE_Time_Value::sec"); this->tv_.tv_sec = sec; } @@ -294,7 +294,7 @@ ACE_Time_Value::sec (long sec) ACE_INLINE long ACE_Time_Value::msec (void) const { - ACE_TRACE ("ACE_Time_Value::msec"); + // ACE_TRACE ("ACE_Time_Value::msec"); return this->tv_.tv_sec * 1000 + this->tv_.tv_usec / 1000; } @@ -303,7 +303,7 @@ ACE_Time_Value::msec (void) const ACE_INLINE void ACE_Time_Value::msec (long milliseconds) { - ACE_TRACE ("ACE_Time_Value::msec"); + // ACE_TRACE ("ACE_Time_Value::msec"); // Convert millisecond units to seconds; this->tv_.tv_sec = milliseconds / 1000; // Convert remainder to microseconds; @@ -315,7 +315,7 @@ ACE_Time_Value::msec (long milliseconds) ACE_INLINE long ACE_Time_Value::usec (void) const { - ACE_TRACE ("ACE_Time_Value::usec"); + // ACE_TRACE ("ACE_Time_Value::usec"); return this->tv_.tv_usec; } @@ -324,7 +324,7 @@ ACE_Time_Value::usec (void) const ACE_INLINE void ACE_Time_Value::usec (long usec) { - ACE_TRACE ("ACE_Time_Value::usec"); + // ACE_TRACE ("ACE_Time_Value::usec"); this->tv_.tv_usec = usec; } @@ -334,7 +334,7 @@ ACE_INLINE int operator < (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) { - ACE_TRACE ("operator <"); + // ACE_TRACE ("operator <"); return tv2 > tv1; } @@ -344,7 +344,7 @@ ACE_INLINE int operator <= (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) { - ACE_TRACE ("operator <="); + // ACE_TRACE ("operator <="); return tv2 >= tv1; } @@ -374,7 +374,7 @@ operator != (const ACE_Time_Value &tv1, ACE_INLINE void ACE_Time_Value::operator+= (const ACE_Time_Value &tv) { - ACE_TRACE ("ACE_Time_Value::operator+="); + // ACE_TRACE ("ACE_Time_Value::operator+="); this->tv_.tv_sec += tv.tv_.tv_sec; this->tv_.tv_usec += tv.tv_.tv_usec; this->normalize (); @@ -385,7 +385,7 @@ ACE_Time_Value::operator+= (const ACE_Time_Value &tv) ACE_INLINE void ACE_Time_Value::operator-= (const ACE_Time_Value &tv) { - ACE_TRACE ("ACE_Time_Value::operator-="); + // ACE_TRACE ("ACE_Time_Value::operator-="); this->tv_.tv_sec -= tv.tv_.tv_sec; this->tv_.tv_usec -= tv.tv_.tv_usec; this->normalize (); @@ -397,7 +397,7 @@ ACE_INLINE ACE_Time_Value operator + (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) { - ACE_TRACE ("operator +"); + // ACE_TRACE ("operator +"); ACE_Time_Value sum (tv1.tv_.tv_sec + tv2.tv_.tv_sec, tv1.tv_.tv_usec + tv2.tv_.tv_usec); @@ -411,7 +411,7 @@ ACE_INLINE ACE_Time_Value operator - (const ACE_Time_Value &tv1, const ACE_Time_Value &tv2) { - ACE_TRACE ("operator -"); + // ACE_TRACE ("operator -"); ACE_Time_Value delta (tv1.tv_.tv_sec - tv2.tv_.tv_sec, tv1.tv_.tv_usec - tv2.tv_.tv_usec); delta.normalize (); @@ -484,7 +484,7 @@ extern "C" char *mktemp (char *); ACE_INLINE int ACE_OS::chdir (const char *path) { - ACE_TRACE ("ACE_OS::chdir"); + // ACE_TRACE ("ACE_OS::chdir"); # if defined (VXWORKS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::chdir ((char *) path), ace_result_), int, -1); @@ -503,23 +503,23 @@ ACE_OS::chdir (const char *path) # endif /* ACE_HAS_MOSTLY_UNICODE_APIS */ ACE_INLINE int -ACE_OS::fcntl (ACE_HANDLE handle, int cmd, long arg) +ACE_OS::fcntl (ACE_HANDLE handle, int cmd, int value) { - ACE_TRACE ("ACE_OS::fcntl"); + // ACE_TRACE ("ACE_OS::fcntl"); # if defined (ACE_LACKS_FCNTL) ACE_UNUSED_ARG (handle); ACE_UNUSED_ARG (cmd); - ACE_UNUSED_ARG (arg); + ACE_UNUSED_ARG (value); ACE_NOTSUP_RETURN (-1); # else - ACE_OSCALL_RETURN (::fcntl (handle, cmd, arg), int, -1); + ACE_OSCALL_RETURN (::fcntl (handle, cmd, value), int, -1); # endif /* ACE_LACKS_FCNTL */ } ACE_INLINE int ACE_OS::fstat (ACE_HANDLE handle, struct stat *stp) { - ACE_TRACE ("ACE_OS::fstat"); + // ACE_TRACE ("ACE_OS::fstat"); #if defined (ACE_PSOS_LACKS_PHILE) ACE_UNUSED_ARG (handle); ACE_UNUSED_ARG (stp); @@ -541,7 +541,7 @@ ACE_OS::fstat (ACE_HANDLE handle, struct stat *stp) ACE_INLINE int ACE_OS::lstat (const char *file, struct stat *stp) { - ACE_TRACE ("ACE_OS::lstat"); + // ACE_TRACE ("ACE_OS::lstat"); # if defined (ACE_LACKS_LSTAT) || \ defined (ACE_HAS_WINCE) || defined (ACE_WIN32) ACE_UNUSED_ARG (file); @@ -561,19 +561,19 @@ ACE_OS::lstat (const char *file, struct stat *stp) ACE_INLINE int ACE_OS::fsync (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::fsync"); + // ACE_TRACE ("ACE_OS::fsync"); # if defined (ACE_LACKS_FSYNC) ACE_UNUSED_ARG (handle); ACE_NOTSUP_RETURN (-1); # else ACE_OSCALL_RETURN (::fsync (handle), int, -1); -# endif /* ACE_LACKS_FSYNC */ +# endif /* ACE_LACKS_FCNTL */ } ACE_INLINE gid_t ACE_OS::getgid (void) { - ACE_TRACE ("ACE_OS::getgid"); + // ACE_TRACE ("ACE_OS::getgid"); # if defined (VXWORKS) || defined(CHORUS) || defined (ACE_PSOS) // getgid() is not supported: just one group anyways return 0; @@ -585,7 +585,7 @@ ACE_OS::getgid (void) ACE_INLINE int ACE_OS::getopt (int argc, char *const *argv, const char *optstring) { - ACE_TRACE ("ACE_OS::getopt"); + // ACE_TRACE ("ACE_OS::getopt"); #if defined (VXWORKS) || defined (ACE_PSOS) ACE_UNUSED_ARG (argc); ACE_UNUSED_ARG (argv); @@ -604,7 +604,7 @@ ACE_OS::getopt (int argc, char *const *argv, const char *optstring) ACE_INLINE int ACE_OS::mkfifo (const char *file, mode_t mode) { - ACE_TRACE ("ACE_OS::mkfifo"); + // ACE_TRACE ("ACE_OS::mkfifo"); #if defined (ACE_LACKS_MKFIFO) ACE_UNUSED_ARG (file); ACE_UNUSED_ARG (mode); @@ -626,7 +626,7 @@ ACE_OS::mktemp (char *s) ACE_INLINE int ACE_OS::pipe (ACE_HANDLE fds[]) { - ACE_TRACE ("ACE_OS::pipe"); + // ACE_TRACE ("ACE_OS::pipe"); #if defined (VXWORKS) || defined (ACE_PSOS) ACE_UNUSED_ARG (fds); ACE_NOTSUP_RETURN (-1); @@ -650,7 +650,7 @@ extern "C" { ACE_INLINE int ACE_OS::rand_r (ACE_RANDR_TYPE &seed) { - ACE_TRACE ("ACE_OS::rand_r"); + // ACE_TRACE ("ACE_OS::rand_r"); # if defined (ACE_HAS_REENTRANT_FUNCTIONS) # if defined (DIGITAL_UNIX) ACE_OSCALL_RETURN (::_Prand_r (&seed), int, -1); @@ -675,7 +675,7 @@ ACE_OS::rand_r (ACE_RANDR_TYPE &seed) ACE_INLINE pid_t ACE_OS::setsid (void) { - ACE_TRACE ("ACE_OS::setsid"); + // ACE_TRACE ("ACE_OS::setsid"); #if defined (VXWORKS) || defined (CHORUS) || defined (ACE_PSOS) ACE_NOTSUP_RETURN (-1); # else @@ -686,7 +686,7 @@ ACE_OS::setsid (void) ACE_INLINE mode_t ACE_OS::umask (mode_t cmask) { - ACE_TRACE ("ACE_OS::umask"); + // ACE_TRACE ("ACE_OS::umask"); #if defined (VXWORKS) || defined (ACE_PSOS) ACE_UNUSED_ARG (cmask); ACE_NOTSUP_RETURN (-1); @@ -739,7 +739,7 @@ ACE_OS::default_win32_security_attributes (LPSECURITY_ATTRIBUTES sa) ACE_INLINE int ACE_OS::chdir (const char *path) { - ACE_TRACE ("ACE_OS::chdir"); + // ACE_TRACE ("ACE_OS::chdir"); ACE_OSCALL_RETURN (::_chdir (path), int, -1); } @@ -753,12 +753,12 @@ ACE_OS::mktemp (char *s) # endif /* !ACE_HAS_MOSTLY_UNICODE_APIS */ ACE_INLINE int -ACE_OS::fcntl (ACE_HANDLE handle, int cmd, long arg) +ACE_OS::fcntl (ACE_HANDLE handle, int cmd, int value) { - ACE_TRACE ("ACE_OS::fcntl"); + // ACE_TRACE ("ACE_OS::fcntl"); ACE_UNUSED_ARG (handle); ACE_UNUSED_ARG (cmd); - ACE_UNUSED_ARG (arg); + ACE_UNUSED_ARG (value); ACE_NOTSUP_RETURN (-1); // We should be able to map this stuff } @@ -766,7 +766,7 @@ ACE_OS::fcntl (ACE_HANDLE handle, int cmd, long arg) ACE_INLINE uid_t ACE_OS::getgid (void) { - ACE_TRACE ("ACE_OS::getgid"); + // ACE_TRACE ("ACE_OS::getgid"); ACE_NOTSUP_RETURN (-1); } @@ -777,7 +777,7 @@ ACE_OS::getopt (int argc, char *const *argv, const char *optstring) ACE_UNUSED_ARG (argv); ACE_UNUSED_ARG (optstring); - ACE_TRACE ("ACE_OS::getopt"); + // ACE_TRACE ("ACE_OS::getopt"); ACE_NOTSUP_RETURN (-1); } @@ -788,7 +788,7 @@ ACE_OS::mkfifo (const char *file, mode_t mode) ACE_UNUSED_ARG (file); ACE_UNUSED_ARG (mode); - ACE_TRACE ("ACE_OS::mkfifo"); + // ACE_TRACE ("ACE_OS::mkfifo"); ACE_NOTSUP_RETURN (-1); } # endif /* ACE_HAS_MOSTLY_UNICODE_APIS */ @@ -797,7 +797,7 @@ ACE_INLINE int ACE_OS::pipe (ACE_HANDLE fds[]) { # if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::pipe"); + // ACE_TRACE ("ACE_OS::pipe"); ACE_OSCALL_RETURN (::_pipe ((int *) fds, PIPE_BUF, 0), int, -1); // Use default mode # else ACE_NOTSUP_RETURN (-1); @@ -809,14 +809,14 @@ ACE_OS::rand_r (ACE_RANDR_TYPE& seed) { ACE_UNUSED_ARG (seed); - ACE_TRACE ("ACE_OS::rand_r"); + // ACE_TRACE ("ACE_OS::rand_r"); ACE_NOTSUP_RETURN (-1); } ACE_INLINE pid_t ACE_OS::setsid (void) { - ACE_TRACE ("ACE_OS::setsid"); + // ACE_TRACE ("ACE_OS::setsid"); ACE_NOTSUP_RETURN (-1); } @@ -824,7 +824,7 @@ ACE_INLINE mode_t ACE_OS::umask (mode_t cmask) { # if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::umask"); + // ACE_TRACE ("ACE_OS::umask"); ACE_OSCALL_RETURN (::_umask (cmask), int, -1); # else ACE_NOTSUP_RETURN (-1); @@ -834,8 +834,8 @@ ACE_OS::umask (mode_t cmask) ACE_INLINE int ACE_OS::fstat (ACE_HANDLE handle, struct stat *stp) { - ACE_TRACE ("ACE_OS::fstat"); -# if 1 + // ACE_TRACE ("ACE_OS::fstat"); +# if defined (ACE_HAS_WINCE) BY_HANDLE_FILE_INFORMATION fdata; if (::GetFileInformationByHandle (handle, &fdata) == FALSE) @@ -851,19 +851,11 @@ ACE_OS::fstat (ACE_HANDLE handle, struct stat *stp) else { stp->st_size = fdata.nFileSizeLow; - stp->st_atime = ACE_Time_Value (fdata.ftLastAccessTime).sec (); - stp->st_mtime = ACE_Time_Value (fdata.ftLastWriteTime).sec (); -#if !defined (ACE_HAS_WINCE) - stp->st_ctime = ACE_Time_Value (fdata.ftCreationTime).sec (); - stp->st_nlink = ACE_static_cast (short, fdata.nNumberOfLinks); - stp->st_dev = stp->st_rdev = 0; // No equivalent conversion. - stp->st_mode = S_IXOTH | S_IROTH | - (fdata.dwFileAttributes & FILE_ATTRIBUTE_READONLY ? 0 : S_IWOTH); -#endif /* !ACE_HAS_WINCE */ + stp->st_atime = ACE_Time_Value (fdata.ftLastAccessTime); + stp->st_mtime = ACE_Time_Value (fdata.ftLastWriteTime); } return 0; -# else /* 1 */ - // This implementation close the handle. +# else int retval = -1; int fd = ::_open_osfhandle ((long) handle, 0); if (fd != -1) @@ -872,7 +864,7 @@ ACE_OS::fstat (ACE_HANDLE handle, struct stat *stp) ::_close (fd); // Remember to close the file handle. return retval; -# endif /* 1 */ +# endif /* ACE_HAS_WINCE */ } #endif /* WIN32 */ @@ -880,7 +872,7 @@ ACE_OS::fstat (ACE_HANDLE handle, struct stat *stp) ACE_INLINE int ACE_OS::clock_gettime (clockid_t clockid, struct timespec *ts) { - ACE_TRACE ("ACE_OS::clock_gettime"); + // ACE_TRACE ("ACE_OS::clock_gettime"); #if defined (ACE_HAS_CLOCK_GETTIME) ACE_OSCALL_RETURN (::clock_gettime (clockid, ts), int, -1); # elif defined (ACE_PSOS) && ! defined (ACE_PSOS_DIAB_MIPS) @@ -900,7 +892,6 @@ ACE_INLINE ACE_Time_Value ACE_OS::gettimeofday (void) { // ACE_TRACE ("ACE_OS::gettimeofday"); - timeval tv; int result = 0; #if defined (ACE_HAS_WINCE) @@ -954,7 +945,7 @@ ACE_OS::gettimeofday (void) ACE_INLINE int ACE_OS::stat (const char *file, struct stat *stp) { - ACE_TRACE ("ACE_OS::stat"); + // ACE_TRACE ("ACE_OS::stat"); # if defined (VXWORKS) ACE_OSCALL_RETURN (::stat ((char *) file, stp), int, -1); #elif defined (ACE_PSOS_LACKS_PHILE) @@ -979,7 +970,7 @@ ACE_INLINE time_t ACE_OS::time (time_t *tloc) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::time"); + // ACE_TRACE ("ACE_OS::time"); # if defined (ACE_PSOS) && ! defined (ACE_PSOS_HAS_TIME) unsigned long d_date, d_time, d_tick; tm_get(&d_date, &d_time, &d_tick); // get current time @@ -1000,14 +991,14 @@ ACE_OS::time (time_t *tloc) ACE_INLINE void ACE_OS::srand (u_int seed) { - ACE_TRACE ("ACE_OS::srand"); + // ACE_TRACE ("ACE_OS::srand"); ::srand (seed); } ACE_INLINE int ACE_OS::rand (void) { - ACE_TRACE ("ACE_OS::rand"); + // ACE_TRACE ("ACE_OS::rand"); ACE_OSCALL_RETURN (::rand (), int, -1); } @@ -1015,7 +1006,7 @@ ACE_OS::rand (void) ACE_INLINE int ACE_OS::unlink (const char *path) { - ACE_TRACE ("ACE_OS::unlink"); + // ACE_TRACE ("ACE_OS::unlink"); # if defined (VXWORKS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::unlink ((char *) path), ace_result_), @@ -1049,7 +1040,7 @@ ACE_OS::rename (const char *old_name, const char *new_name) ACE_INLINE char * ACE_OS::tempnam (const char *dir, const char *pfx) { - ACE_TRACE ("ACE_OS::tempnam"); + // ACE_TRACE ("ACE_OS::tempnam"); # if defined (VXWORKS) || defined (ACE_LACKS_TEMPNAM) ACE_UNUSED_ARG (dir); ACE_UNUSED_ARG (pfx); @@ -1074,7 +1065,7 @@ ACE_OS::tempnam (const char *dir, const char *pfx) ACE_INLINE int ACE_OS::shm_unlink (const char *path) { - ACE_TRACE ("ACE_OS::shm_unlink"); + // ACE_TRACE ("ACE_OS::shm_unlink"); # if defined (ACE_HAS_SHM_OPEN) ACE_OSCALL_RETURN (::shm_unlink (path), int, -1); # else /* ! ACE_HAS_SHM_OPEN */ @@ -1087,7 +1078,7 @@ ACE_OS::shm_unlink (const char *path) ACE_INLINE LPTSTR ACE_OS::cuserid (LPTSTR user, size_t maxlen) { - ACE_TRACE ("ACE_OS::cuserid"); + // ACE_TRACE ("ACE_OS::cuserid"); #if defined (VXWORKS) ACE_UNUSED_ARG (maxlen); if (user == 0) @@ -1101,7 +1092,7 @@ ACE_OS::cuserid (LPTSTR user, size_t maxlen) ::remCurIdGet (user, 0); return user; } -#elif defined (CHORUS) || defined (ACE_HAS_WINCE) || defined (ACE_PSOS) || defined (__QNXNTO__) +#elif defined (CHORUS) || defined (ACE_HAS_WINCE) || defined (ACE_PSOS) // @@ WinCE doesn't support GetUserName. But there should be a way // to get around this. ACE_UNUSED_ARG (user); @@ -1125,7 +1116,7 @@ ACE_OS::cuserid (LPTSTR user, size_t maxlen) ACE_INLINE void ACE_OS::_exit (int status) { - ACE_TRACE ("ACE_OS::_exit"); + // ACE_TRACE ("ACE_OS::_exit"); #if defined (VXWORKS) ::exit (status); #elif defined (ACE_PSOSIM) @@ -1158,7 +1149,7 @@ ACE_OS::abort (void) ACE_INLINE void * ACE_OS::malloc (size_t nbytes) { - ACE_TRACE ("ACE_OS::malloc"); + // ACE_TRACE ("ACE_OS::malloc"); return ::malloc (nbytes); } @@ -1166,7 +1157,7 @@ ACE_INLINE void * ACE_OS::calloc (size_t elements, size_t sizeof_elements) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::calloc"); + // ACE_TRACE ("ACE_OS::calloc"); return ::calloc (elements, sizeof_elements); #else // @@ This will probably not work since it doesn't consider @@ -1178,7 +1169,7 @@ ACE_OS::calloc (size_t elements, size_t sizeof_elements) ACE_INLINE void * ACE_OS::realloc (void *ptr, size_t nbytes) { - ACE_TRACE ("ACE_OS::realloc"); + // ACE_TRACE ("ACE_OS::realloc"); return ::realloc (ACE_MALLOC_T (ptr), nbytes); } @@ -1192,31 +1183,11 @@ ACE_OS::free (void *ptr) ACE_INLINE int ACE_OS::memcmp (const void *t, const void *s, size_t len) { - ACE_TRACE ("ACE_OS::memcmp"); + // ACE_TRACE ("ACE_OS::memcmp"); return ::memcmp (t, s, len); } ACE_INLINE void * -ACE_OS::memchr (const void *s, int c, size_t len) -{ -#if defined (ACE_HAS_MEMCHR) - ACE_TRACE ("ACE_OS::memchr"); - return ::memchr (s, c, len); -#else - unsigned char *t = (unsigned char *) s; - unsigned char *e = (unsigned char *) s + len; - while (t < e) - { - if (((int) *t) == c) - return t; - else - t++; - } - return 0; -#endif /* ACE_HAS_MEMCHR */ -} - -ACE_INLINE void * ACE_OS::memcpy (void *t, const void *s, size_t len) { // ACE_TRACE ("ACE_OS::memcpy"); @@ -1226,21 +1197,21 @@ ACE_OS::memcpy (void *t, const void *s, size_t len) ACE_INLINE void * ACE_OS::memmove (void *t, const void *s, size_t len) { - ACE_TRACE ("ACE_OS::memmove"); + // ACE_TRACE ("ACE_OS::memcpy"); return ::memmove (t, s, len); } ACE_INLINE void * ACE_OS::memset (void *s, int c, size_t len) { - ACE_TRACE ("ACE_OS::memset"); + // ACE_TRACE ("ACE_OS::memset"); return ::memset (s, c, len); } ACE_INLINE char * ACE_OS::strcat (char *s, const char *t) { - ACE_TRACE ("ACE_OS::strcat"); + // ACE_TRACE ("ACE_OS::strcat"); return ::strcat (s, t); } @@ -1248,7 +1219,7 @@ ACE_INLINE size_t ACE_OS::strcspn (const char *s, const char *reject) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strcspn"); + // ACE_TRACE ("ACE_OS::strcspn"); return ::strcspn (s, reject); #else const char *scan; @@ -1273,7 +1244,7 @@ ACE_INLINE size_t ACE_OS::strspn (const char *s, const char *t) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strspn"); + // ACE_TRACE ("ACE_OS::strspn"); return ::strspn (s, t); #else ACE_UNUSED_ARG (s); @@ -1286,7 +1257,7 @@ ACE_INLINE char * ACE_OS::strchr (char *s, int c) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strchr"); + // ACE_TRACE ("ACE_OS::strchr"); return ::strchr (s, c); #else for (;;++s) @@ -1303,7 +1274,7 @@ ACE_INLINE const char * ACE_OS::strchr (const char *s, int c) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strchr"); + // ACE_TRACE ("ACE_OS::strchr"); return (const char *) ::strchr (s, c); #else for (;;++s) @@ -1335,14 +1306,14 @@ ACE_OS::strnchr (char *s, int c, size_t len) ACE_INLINE const char * ACE_OS::strstr (const char *s, const char *t) { - ACE_TRACE ("ACE_OS::strstr"); + // ACE_TRACE ("ACE_OS::strstr"); return (const char *) ::strstr (s, t); } ACE_INLINE char * ACE_OS::strstr (char *s, const char *t) { - ACE_TRACE ("ACE_OS::strstr"); + // ACE_TRACE ("ACE_OS::strstr"); return ::strstr (s, t); } @@ -1385,7 +1356,7 @@ ACE_OS::strnstr (char *s, const char *t, size_t len) ACE_INLINE char * ACE_OS::strrchr (char *s, int c) { - ACE_TRACE ("ACE_OS::strrchr"); + // ACE_TRACE ("ACE_OS::strrchr"); #if !defined (ACE_LACKS_STRRCHR) return ::strrchr (s, c); #else @@ -1404,7 +1375,7 @@ ACE_OS::strrchr (char *s, int c) ACE_INLINE const char * ACE_OS::strrchr (const char *s, int c) { - ACE_TRACE ("ACE_OS::strrchr"); + // ACE_TRACE ("ACE_OS::strrchr"); #if !defined (ACE_LACKS_STRRCHR) return (const char *) ::strrchr (s, c); #else @@ -1423,7 +1394,7 @@ ACE_OS::strrchr (const char *s, int c) ACE_INLINE int ACE_OS::strcmp (const char *s, const char *t) { - ACE_TRACE ("ACE_OS::strcmp"); + // ACE_TRACE ("ACE_OS::strcmp"); return ::strcmp (s, t); } @@ -1431,7 +1402,6 @@ ACE_INLINE char * ACE_OS::strcpy (char *s, const char *t) { // ACE_TRACE ("ACE_OS::strcpy"); - return ::strcpy (s, t); } @@ -1451,7 +1421,7 @@ ACE_OS::strecpy (char *s, const char *t) ACE_INLINE int ACE_OS::to_lower (int c) { - ACE_TRACE ("ACE_OS::to_lower"); + // ACE_TRACE ("ACE_OS::to_lower"); return tolower (c); } @@ -1483,7 +1453,6 @@ ACE_INLINE char * ACE_OS::strdup (const char *s) { // ACE_TRACE ("ACE_OS::strdup"); - // @@ Should we provide this function on WinCE? #if defined (ACE_HAS_STRDUP_EMULATION) char *t = (char *) ::malloc (::strlen (s) + 1); @@ -1508,7 +1477,7 @@ ACE_INLINE int ACE_OS::strcasecmp (const char *s, const char *t) { #if !defined (ACE_WIN32) || defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strcasecmp"); + // ACE_TRACE ("ACE_OS::strcasecmp"); # if defined (ACE_LACKS_STRCASECMP) // Handles most of what the BSD version does, but does not indicate // lexicographic ordering if the strings are unequal. Just @@ -1539,7 +1508,7 @@ ACE_INLINE int ACE_OS::strncasecmp (const char *s, const char *t, size_t len) { #if !defined (ACE_WIN32) || defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strcasecmp"); + // ACE_TRACE ("ACE_OS::strcasecmp"); # if defined (ACE_LACKS_STRCASECMP) // Handles most of what the BSD version does, but does not indicate // lexicographic ordering if the strings are unequal. Just @@ -1570,7 +1539,7 @@ ACE_OS::strncasecmp (const char *s, const char *t, size_t len) ACE_INLINE int ACE_OS::strncmp (const char *s, const char *t, size_t len) { - ACE_TRACE ("ACE_OS::strncmp"); + // ACE_TRACE ("ACE_OS::strncmp"); return ::strncmp (s, t, len); } @@ -1584,21 +1553,21 @@ ACE_OS::strncpy (char *s, const char *t, size_t len) ACE_INLINE char * ACE_OS::strncat (char *s, const char *t, size_t len) { - ACE_TRACE ("ACE_OS::strncat"); + // ACE_TRACE ("ACE_OS::strncat"); return ::strncat (s, t, len); } ACE_INLINE char * ACE_OS::strtok (char *s, const char *tokens) { - ACE_TRACE ("ACE_OS::strtok"); + // ACE_TRACE ("ACE_OS::strtok"); return ::strtok (s, tokens); } ACE_INLINE char * ACE_OS::strtok_r (char *s, const char *tokens, char **lasts) { - ACE_TRACE ("ACE_OS::strtok_r"); + // ACE_TRACE ("ACE_OS::strtok_r"); #if defined (ACE_HAS_REENTRANT_FUNCTIONS) return ::strtok_r (s, tokens, lasts); #else @@ -1623,7 +1592,7 @@ ACE_OS::strtol (const char *s, char **ptr, int base) // @@ We must implement this function for WinCE also. // Notice WinCE support wcstol. #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strtol"); + // ACE_TRACE ("ACE_OS::strtol"); return ::strtol (s, ptr, base); #else ACE_UNUSED_ARG (s); @@ -1639,7 +1608,7 @@ ACE_OS::strtoul (const char *s, char **ptr, int base) // @@ We must implement this function for WinCE also. // Notice WinCE support wcstoul. #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strtoul"); + // ACE_TRACE ("ACE_OS::strtoul"); # if defined (linux) && defined (__GLIBC__) // ::strtoul () appears to be broken on Linux 2.0.30/Alpha w/glibc: // it returns 0 for a negative number. @@ -1660,7 +1629,7 @@ ACE_OS::strtod (const char *s, char **endptr) { // @@ WinCE only support wcstod #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::strtod"); + // ACE_TRACE ("ACE_OS::strtod"); return ::strtod (s, endptr); #else /* ACE_HAS_WINCE */ ACE_UNUSED_ARG (s); @@ -1683,7 +1652,7 @@ ACE_OS::ace_isspace (const char s) ACE_INLINE long ACE_OS::sysconf (int name) { - ACE_TRACE ("ACE_OS::sysconf"); + // ACE_TRACE ("ACE_OS::sysconf"); #if defined (ACE_WIN32) || defined (VXWORKS) || defined (ACE_PSOS) ACE_UNUSED_ARG (name); ACE_NOTSUP_RETURN (-1); @@ -1717,10 +1686,10 @@ ACE_OS::mutex_init (ACE_mutex_t *m, && ::pthread_mutex_init (m, attributes) == 0) # elif defined (ACE_HAS_PTHREADS_DRAFT7) || defined (ACE_HAS_PTHREADS_STD) if (ACE_ADAPT_RETVAL(::pthread_mutexattr_init (&attributes), result) == 0 -# if defined (_POSIX_THREAD_PROCESS_SHARED) && !defined (ACE_LACKS_MUTEXATTR_PSHARED) +# if defined (_POSIX_THREAD_PROCESS_SHARED) && ACE_ADAPT_RETVAL(::pthread_mutexattr_setpshared(&attributes, type), result) == 0 -# endif /* _POSIX_THREAD_PROCESS_SHARED && ! ACE_LACKS_MUTEXATTR_PSHARED */ +# endif /* _POSIX_THREAD_PROCESS_SHARED */ && ACE_ADAPT_RETVAL(::pthread_mutex_init (m, &attributes), result)== 0) # else // draft 6 if (::pthread_mutexattr_init (&attributes) == 0 @@ -1798,7 +1767,7 @@ ACE_OS::mutex_init (ACE_mutex_t *m, ACE_INLINE int ACE_OS::mutex_destroy (ACE_mutex_t *m) { - ACE_TRACE ("ACE_OS::mutex_destroy"); + // ACE_TRACE ("ACE_OS::mutex_destroy"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) # if (defined (ACE_HAS_PTHREADS_DRAFT4) || defined (ACE_HAS_PTHREADS_DRAFT6)) @@ -1837,7 +1806,7 @@ ACE_OS::mutex_destroy (ACE_mutex_t *m) ACE_INLINE int ACE_OS::mutex_lock (ACE_mutex_t *m) { - ACE_TRACE ("ACE_OS::mutex_lock"); + // ACE_TRACE ("ACE_OS::mutex_lock"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) // Note, don't use "::" here since the following call is often a macro. @@ -1889,7 +1858,7 @@ ACE_INLINE int ACE_OS::mutex_lock (ACE_mutex_t *m, int &abandoned) { - ACE_TRACE ("ACE_OS::mutex_lock"); + // ACE_TRACE ("ACE_OS::mutex_lock"); #if defined (ACE_HAS_THREADS) && defined (ACE_HAS_WTHREADS) abandoned = 0; switch (m->type_) @@ -1926,7 +1895,7 @@ ACE_OS::mutex_lock (ACE_mutex_t *m, ACE_INLINE int ACE_OS::mutex_trylock (ACE_mutex_t *m) { - ACE_TRACE ("ACE_OS::mutex_trylock"); + // ACE_TRACE ("ACE_OS::mutex_trylock"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) // Note, don't use "::" here since the following call is often a macro. @@ -2049,7 +2018,7 @@ ACE_OS::mutex_trylock (ACE_mutex_t *m, int &abandoned) ACE_INLINE int ACE_OS::mutex_unlock (ACE_mutex_t *m) { - ACE_TRACE ("ACE_OS::mutex_unlock"); + // ACE_TRACE ("ACE_OS::mutex_unlock"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) // Note, don't use "::" here since the following call is often a macro. @@ -2120,7 +2089,7 @@ ACE_OS::thread_mutex_init (ACE_thread_mutex_t *m, ACE_INLINE int ACE_OS::thread_mutex_destroy (ACE_thread_mutex_t *m) { - ACE_TRACE ("ACE_OS::thread_mutex_destroy"); + // ACE_TRACE ("ACE_OS::thread_mutex_destroy"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) || defined (ACE_HAS_PTHREADS) return ACE_OS::mutex_destroy (m); @@ -2139,7 +2108,7 @@ ACE_OS::thread_mutex_destroy (ACE_thread_mutex_t *m) ACE_INLINE int ACE_OS::thread_mutex_lock (ACE_thread_mutex_t *m) { - ACE_TRACE ("ACE_OS::thread_mutex_lock"); + // ACE_TRACE ("ACE_OS::thread_mutex_lock"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) || defined (ACE_HAS_PTHREADS) return ACE_OS::mutex_lock (m); @@ -2158,7 +2127,7 @@ ACE_OS::thread_mutex_lock (ACE_thread_mutex_t *m) ACE_INLINE int ACE_OS::thread_mutex_trylock (ACE_thread_mutex_t *m) { - ACE_TRACE ("ACE_OS::thread_mutex_trylock"); + // ACE_TRACE ("ACE_OS::thread_mutex_trylock"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) || defined (ACE_HAS_PTHREADS) return ACE_OS::mutex_trylock (m); @@ -2188,7 +2157,7 @@ ACE_OS::thread_mutex_trylock (ACE_thread_mutex_t *m) ACE_INLINE int ACE_OS::thread_mutex_unlock (ACE_thread_mutex_t *m) { - ACE_TRACE ("ACE_OS::thread_mutex_unlock"); + // ACE_TRACE ("ACE_OS::thread_mutex_unlock"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) || defined (ACE_HAS_PTHREADS) return ACE_OS::mutex_unlock (m); @@ -2213,7 +2182,7 @@ ACE_OS::thread_mutex_unlock (ACE_thread_mutex_t *m) ACE_INLINE int ACE_OS::cond_destroy (ACE_cond_t *cv) { - ACE_TRACE ("ACE_OS::cond_destroy"); + // ACE_TRACE ("ACE_OS::cond_destroy"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) # if defined (ACE_HAS_PTHREADS_DRAFT4) || defined (ACE_HAS_PTHREADS_DRAFT6) @@ -2233,7 +2202,7 @@ ACE_OS::cond_destroy (ACE_cond_t *cv) ACE_INLINE int ACE_OS::cond_init (ACE_cond_t *cv, int type, LPCTSTR name, void *arg) { - // ACE_TRACE ("ACE_OS::cond_init"); +// ACE_TRACE ("ACE_OS::cond_init"); ACE_UNUSED_ARG (type); ACE_UNUSED_ARG (name); ACE_UNUSED_ARG (arg); @@ -2247,10 +2216,10 @@ ACE_OS::cond_init (ACE_cond_t *cv, int type, LPCTSTR name, void *arg) && ::pthread_cond_init (cv, attributes) == 0 # elif defined (ACE_HAS_PTHREADS_STD) || defined (ACE_HAS_PTHREADS_DRAFT7) if (ACE_ADAPT_RETVAL(::pthread_condattr_init (&attributes), result) == 0 -# if defined (_POSIX_THREAD_PROCESS_SHARED) && !defined (ACE_LACKS_MUTEXATTR_PSHARED) +# if defined (_POSIX_THREAD_PROCESS_SHARED) && ACE_ADAPT_RETVAL(::pthread_condattr_setpshared(&attributes, type), result) == 0 -# endif /* _POSIX_THREAD_PROCESS_SHARED && ! ACE_LACKS_MUTEXATTR_PSHARED */ +# endif /* _POSIX_THREAD_PROCESS_SHARED */ && ACE_ADAPT_RETVAL(::pthread_cond_init (cv, &attributes), result) == 0 # else /* this is draft 6 */ if (::pthread_condattr_init (&attributes) == 0 @@ -2290,7 +2259,7 @@ ACE_OS::cond_init (ACE_cond_t *cv, int type, LPCTSTR name, void *arg) ACE_INLINE int ACE_OS::cond_signal (ACE_cond_t *cv) { -ACE_TRACE ("ACE_OS::cond_signal"); +// ACE_TRACE ("ACE_OS::cond_signal"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) # if defined (ACE_HAS_PTHREADS_DRAFT4) || defined (ACE_HAS_PTHREADS_DRAFT6) @@ -2311,7 +2280,7 @@ ACE_TRACE ("ACE_OS::cond_signal"); ACE_INLINE int ACE_OS::cond_broadcast (ACE_cond_t *cv) { -ACE_TRACE ("ACE_OS::cond_broadcast"); +// ACE_TRACE ("ACE_OS::cond_broadcast"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) # if defined (ACE_HAS_PTHREADS_DRAFT4) || defined (ACE_HAS_PTHREADS_DRAFT6) @@ -2336,7 +2305,7 @@ ACE_INLINE int ACE_OS::cond_wait (ACE_cond_t *cv, ACE_mutex_t *external_mutex) { - ACE_TRACE ("ACE_OS::cond_wait"); + // ACE_TRACE ("ACE_OS::cond_wait"); # if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) # if defined (ACE_HAS_PTHREADS_DRAFT4) || defined (ACE_HAS_PTHREADS_DRAFT6) @@ -2361,7 +2330,7 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, ACE_mutex_t *external_mutex, ACE_Time_Value *timeout) { - ACE_TRACE ("ACE_OS::cond_timedwait"); + // ACE_TRACE ("ACE_OS::cond_timedwait"); # if defined (ACE_HAS_THREADS) int result; timespec_t ts; @@ -2455,7 +2424,7 @@ ACE_OS::thr_equal (ACE_thread_t t1, ACE_thread_t t2) ACE_INLINE void ACE_OS::thr_self (ACE_hthread_t &self) { - ACE_TRACE ("ACE_OS::thr_self"); + // ACE_TRACE ("ACE_OS::thr_self"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) // Note, don't use "::" here since the following call is often a macro. @@ -2479,7 +2448,7 @@ ACE_OS::thr_self (ACE_hthread_t &self) ACE_INLINE ACE_thread_t ACE_OS::thr_self (void) { - ACE_TRACE ("ACE_OS::thr_self"); + // ACE_TRACE ("ACE_OS::thr_self"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) // Note, don't use "::" here since the following call is often a macro. @@ -2649,7 +2618,7 @@ ACE_OS::recursive_mutex_unlock (ACE_recursive_thread_mutex_t *m) #if defined (ACE_HAS_RECURSIVE_MUTEXES) return ACE_OS::thread_mutex_unlock (m); #else -ACE_TRACE ("ACE_Recursive_Thread_Mutex::release"); +// ACE_TRACE ("ACE_Recursive_Thread_Mutex::release"); #if !defined (ACE_NDEBUG) ACE_thread_t t_id = ACE_OS::thr_self (); #endif /* ACE_NDEBUG */ @@ -2696,7 +2665,7 @@ ACE_TRACE ("ACE_Recursive_Thread_Mutex::release"); ACE_INLINE int ACE_OS::sema_destroy (ACE_sema_t *s) { - ACE_TRACE ("ACE_OS::sema_destroy"); + // ACE_TRACE ("ACE_OS::sema_destroy"); # if defined (ACE_HAS_POSIX_SEM) int result; # if defined (ACE_LACKS_NAMED_POSIX_SEM) @@ -2766,7 +2735,7 @@ ACE_OS::sema_init (ACE_sema_t *s, int max, LPSECURITY_ATTRIBUTES sa) { - ACE_TRACE ("ACE_OS::sema_init"); + // ACE_TRACE ("ACE_OS::sema_init"); # if defined (ACE_HAS_POSIX_SEM) ACE_UNUSED_ARG (arg); ACE_UNUSED_ARG (max); @@ -2953,7 +2922,7 @@ ACE_OS::sema_init (ACE_sema_t *s, ACE_INLINE int ACE_OS::sema_post (ACE_sema_t *s) { - ACE_TRACE ("ACE_OS::sema_post"); + // ACE_TRACE ("ACE_OS::sema_post"); # if defined (ACE_HAS_POSIX_SEM) ACE_OSCALL_RETURN (::sem_post (s->sema_), int, -1); # elif defined (ACE_HAS_THREADS) @@ -3037,7 +3006,7 @@ ACE_OS::sema_post (ACE_sema_t *s, size_t release_count) ACE_INLINE int ACE_OS::sema_trywait (ACE_sema_t *s) { - ACE_TRACE ("ACE_OS::sema_trywait"); + // ACE_TRACE ("ACE_OS::sema_trywait"); # if defined (ACE_HAS_POSIX_SEM) // POSIX semaphores set errno to EAGAIN if trywait fails ACE_OSCALL_RETURN (::sem_trywait (s->sema_), int, -1); @@ -3143,7 +3112,7 @@ ACE_OS::sema_trywait (ACE_sema_t *s) ACE_INLINE int ACE_OS::sema_wait (ACE_sema_t *s) { - ACE_TRACE ("ACE_OS::sema_wait"); + // ACE_TRACE ("ACE_OS::sema_wait"); # if defined (ACE_HAS_POSIX_SEM) ACE_OSCALL_RETURN (::sem_wait (s->sema_), int, -1); # elif defined (ACE_HAS_THREADS) @@ -3251,7 +3220,7 @@ ACE_OS::sema_wait (ACE_sema_t *s) ACE_INLINE int ACE_OS::sema_wait (ACE_sema_t *s, ACE_Time_Value &tv) { - ACE_TRACE ("ACE_OS::sema_wait"); + // ACE_TRACE ("ACE_OS::sema_wait"); # if defined (ACE_HAS_POSIX_SEM) ACE_UNUSED_ARG (s); ACE_UNUSED_ARG (tv); @@ -3444,7 +3413,7 @@ ACE_OS::sema_wait (ACE_sema_t *s, ACE_Time_Value &tv) ACE_INLINE int ACE_OS::rw_tryrdlock (ACE_rwlock_t *rw) { - ACE_TRACE ("ACE_OS::rw_tryrdlock"); + // ACE_TRACE ("ACE_OS::rw_tryrdlock"); #if defined (ACE_HAS_THREADS) # if !defined (ACE_LACKS_RWLOCK_T) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::rw_tryrdlock (rw), ace_result_), int, -1); @@ -3480,7 +3449,7 @@ ACE_OS::rw_tryrdlock (ACE_rwlock_t *rw) ACE_INLINE int ACE_OS::rw_trywrlock (ACE_rwlock_t *rw) { - ACE_TRACE ("ACE_OS::rw_trywrlock"); + // ACE_TRACE ("ACE_OS::rw_trywrlock"); #if defined (ACE_HAS_THREADS) # if !defined (ACE_LACKS_RWLOCK_T) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::rw_trywrlock (rw), ace_result_), int, -1); @@ -3516,7 +3485,7 @@ ACE_OS::rw_trywrlock (ACE_rwlock_t *rw) ACE_INLINE int ACE_OS::rw_rdlock (ACE_rwlock_t *rw) { - ACE_TRACE ("ACE_OS::rw_rdlock"); + // ACE_TRACE ("ACE_OS::rw_rdlock"); #if defined (ACE_HAS_THREADS) # if !defined (ACE_LACKS_RWLOCK_T) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::rw_rdlock (rw), ace_result_), int, -1); @@ -3559,7 +3528,7 @@ ACE_OS::rw_rdlock (ACE_rwlock_t *rw) ACE_INLINE int ACE_OS::rw_wrlock (ACE_rwlock_t *rw) { - ACE_TRACE ("ACE_OS::rw_wrlock"); + // ACE_TRACE ("ACE_OS::rw_wrlock"); #if defined (ACE_HAS_THREADS) # if !defined (ACE_LACKS_RWLOCK_T) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::rw_wrlock (rw), ace_result_), int, -1); @@ -3604,7 +3573,7 @@ ACE_OS::rw_wrlock (ACE_rwlock_t *rw) ACE_INLINE int ACE_OS::rw_unlock (ACE_rwlock_t *rw) { - ACE_TRACE ("ACE_OS::rw_unlock"); + // ACE_TRACE ("ACE_OS::rw_unlock"); #if defined (ACE_HAS_THREADS) # if !defined (ACE_LACKS_RWLOCK_T) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::rw_unlock (rw), ace_result_), int, -1); @@ -3662,7 +3631,7 @@ ACE_OS::rw_unlock (ACE_rwlock_t *rw) ACE_INLINE int ACE_OS::rw_trywrlock_upgrade (ACE_rwlock_t *rw) { - ACE_TRACE ("ACE_OS::rw_wrlock"); + // ACE_TRACE ("ACE_OS::rw_wrlock"); #if defined (ACE_HAS_THREADS) # if !defined (ACE_LACKS_RWLOCK_T) // Some native rwlocks, such as those on Solaris, don't @@ -3743,7 +3712,7 @@ ACE_OS::rwlock_init (ACE_rwlock_t *rw, ACE_INLINE int ACE_OS::rwlock_destroy (ACE_rwlock_t *rw) { - ACE_TRACE ("ACE_OS::rwlock_destroy"); + // ACE_TRACE ("ACE_OS::rwlock_destroy"); #if defined (ACE_HAS_THREADS) # if !defined (ACE_LACKS_RWLOCK_T) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::rwlock_destroy (rw), ace_result_), int, -1); @@ -4141,7 +4110,7 @@ ACE_INLINE ACE_HANDLE ACE_OS::accept (ACE_HANDLE handle, struct sockaddr *addr, int *addrlen) { - ACE_TRACE ("ACE_OS::accept"); + // ACE_TRACE ("ACE_OS::accept"); #if defined (ACE_PSOS) # if !defined (ACE_PSOS_DIAB_PPC) ACE_SOCKCALL_RETURN (::accept ((ACE_SOCKET) handle, (struct sockaddr_in *) addr, @@ -4181,7 +4150,7 @@ ACE_SOCKCALL_RETURN (::accept ((ACE_SOCKET) handle, (struct sockaddr *) addr, ACE_INLINE int ACE_OS::bind (ACE_HANDLE handle, struct sockaddr *addr, int addrlen) { - ACE_TRACE ("ACE_OS::bind"); + // ACE_TRACE ("ACE_OS::bind"); #if defined (ACE_PSOS) && !defined (ACE_PSOS_DIAB_PPC) ACE_SOCKCALL_RETURN (::bind ((ACE_SOCKET) handle, (struct sockaddr_in *) addr, (ACE_SOCKET_LEN) addrlen), @@ -4194,7 +4163,7 @@ ACE_OS::bind (ACE_HANDLE handle, struct sockaddr *addr, int addrlen) ACE_INLINE int ACE_OS::connect (ACE_HANDLE handle, struct sockaddr *addr, int addrlen) { - ACE_TRACE ("ACE_OS::connect"); + // ACE_TRACE ("ACE_OS::connect"); #if defined (ACE_PSOS) && !defined (ACE_PSOS_DIAB_PPC) ACE_SOCKCALL_RETURN (::connect ((ACE_SOCKET) handle, (struct sockaddr_in *) addr, (ACE_SOCKET_LEN) addrlen), @@ -4208,7 +4177,7 @@ ACE_OS::connect (ACE_HANDLE handle, struct sockaddr *addr, int addrlen) ACE_INLINE struct hostent * ACE_OS::gethostbyname (const char *name) { - ACE_TRACE ("ACE_OS::gethostbyname"); + // ACE_TRACE ("ACE_OS::gethostbyname"); # if defined (ACE_PSOS) ACE_UNUSED_ARG (name); ACE_NOTSUP_RETURN (0); @@ -4220,34 +4189,9 @@ ACE_OS::gethostbyname (const char *name) } ACE_INLINE struct hostent * -ACE_OS::gethostbyname2 (const char *name, int family) -{ - ACE_TRACE ("ACE_OS::gethostbyname2"); -# if defined (ACE_PSOS) - ACE_UNUSED_ARG (name); - ACE_UNUSED_ARG (family); - ACE_NOTSUP_RETURN (0); -# elif defined (ACE_HAS_IP6) -# if defined (ACE_HAS_NONCONST_GETBY) - ACE_SOCKCALL_RETURN (::gethostbyname2 (ACE_const_cast (char *, name), family), struct hostent *, 0); -# else - ACE_SOCKCALL_RETURN (::gethostbyname2 (name, family), struct hostent *, 0); -# endif /* ACE_HAS_NONCONST_GETBY */ -# else - // IPv4-only implementation - if (family == AF_INET) - { - return ACE_OS::gethostbyname (name); - } - - ACE_NOTSUP_RETURN (0); -# endif /* ACE_PSOS */ -} - -ACE_INLINE struct hostent * ACE_OS::gethostbyaddr (const char *addr, int length, int type) { - ACE_TRACE ("ACE_OS::gethostbyaddr"); + // ACE_TRACE ("ACE_OS::gethostbyaddr"); # if defined (ACE_PSOS) ACE_UNUSED_ARG (addr); ACE_UNUSED_ARG (length); @@ -4270,28 +4214,22 @@ ACE_OS::select (int width, fd_set *rfds, fd_set *wfds, fd_set *efds, const ACE_Time_Value *timeout) { - ACE_TRACE ("ACE_OS::select"); + // ACE_TRACE ("ACE_OS::select"); #if defined (ACE_HAS_NONCONST_SELECT_TIMEVAL) // We must defend against non-conformity! - timeval copy; - timeval *timep; + ACE_Time_Value copy; if (timeout != 0) { copy = *timeout; - timep = © + timeout = © } - else - timep = 0; -#else - const timeval *timep = (timeout == 0 ? (const timeval *)0 : *timeout); #endif /* ACE_HAS_NONCONST_SELECT_TIMEVAL */ ACE_SOCKCALL_RETURN (::select (width, (ACE_FD_SET_TYPE *) rfds, (ACE_FD_SET_TYPE *) wfds, (ACE_FD_SET_TYPE *) efds, - timep), - int, -1); + timeout == 0 ? 0 : (timeval *) (const timeval *) *timeout) , int, -1); } ACE_INLINE int @@ -4299,19 +4237,18 @@ ACE_OS::select (int width, fd_set *rfds, fd_set *wfds, fd_set *efds, const ACE_Time_Value &timeout) { - ACE_TRACE ("ACE_OS::select"); + // ACE_TRACE ("ACE_OS::select"); #if defined (ACE_HAS_NONCONST_SELECT_TIMEVAL) -# define ___ACE_TIMEOUT © - timeval copy = timeout; +# define ___ACE_TIMEOUT copy + ACE_Time_Value copy(timeout); #else -# define ___ACE_TIMEOUT timep - const timeval *timep = timeout; +# define ___ACE_TIMEOUT timeout #endif /* ACE_HAS_NONCONST_SELECT_TIMEVAL */ ACE_SOCKCALL_RETURN (::select (width, (ACE_FD_SET_TYPE *) rfds, (ACE_FD_SET_TYPE *) wfds, (ACE_FD_SET_TYPE *) efds, - ___ACE_TIMEOUT), + (timeval *) (const timeval *) ___ACE_TIMEOUT), int, -1); #undef ___ACE_TIMEOUT } @@ -4319,7 +4256,7 @@ ACE_OS::select (int width, ACE_INLINE int ACE_OS::recv (ACE_HANDLE handle, char *buf, int len, int flags) { - ACE_TRACE ("ACE_OS::recv"); + // ACE_TRACE ("ACE_OS::recv"); // On UNIX, a non-blocking socket with no data to receive, this system @@ -4348,7 +4285,7 @@ ACE_INLINE int ACE_OS::recvfrom (ACE_HANDLE handle, char *buf, int len, int flags, struct sockaddr *addr, int *addrlen) { - ACE_TRACE ("ACE_OS::recvfrom"); + // ACE_TRACE ("ACE_OS::recvfrom"); #if defined (ACE_PSOS) # if !defined ACE_PSOS_DIAB_PPC ACE_SOCKCALL_RETURN (::recvfrom ((ACE_SOCKET) handle, buf, (ACE_SOCKET_LEN) len, flags, @@ -4387,7 +4324,7 @@ ACE_OS::recvfrom (ACE_HANDLE handle, char *buf, int len, ACE_INLINE int ACE_OS::send (ACE_HANDLE handle, const char *buf, int len, int flags) { - ACE_TRACE ("ACE_OS::send"); + // ACE_TRACE ("ACE_OS::send"); #if defined (VXWORKS) || defined (HPUX) || defined (ACE_PSOS) ACE_SOCKCALL_RETURN (::send ((ACE_SOCKET) handle, (char *) buf, len, flags), int, -1); #else @@ -4403,7 +4340,7 @@ ACE_OS::sendto (ACE_HANDLE handle, const struct sockaddr *addr, int addrlen) { - ACE_TRACE ("ACE_OS::sendto"); + // ACE_TRACE ("ACE_OS::sendto"); #if defined (VXWORKS) ACE_SOCKCALL_RETURN (::sendto ((ACE_SOCKET) handle, (char *) buf, len, flags, ACE_const_cast (struct sockaddr *, addr), addrlen), @@ -4429,7 +4366,7 @@ ACE_INLINE int ACE_OS::getpeername (ACE_HANDLE handle, struct sockaddr *addr, int *addrlen) { - ACE_TRACE ("ACE_OS::getpeername"); + // ACE_TRACE ("ACE_OS::getpeername"); #if defined (ACE_PSOS) && !defined ACE_PSOS_DIAB_PPC ACE_SOCKCALL_RETURN (::getpeername ((ACE_SOCKET) handle, (struct sockaddr_in *) addr, (ACE_SOCKET_LEN *) addrlen), @@ -4547,7 +4484,7 @@ ACE_OS::getprotobynumber_r (int proto, ACE_INLINE struct servent * ACE_OS::getservbyname (const char *svc, const char *proto) { - ACE_TRACE ("ACE_OS::getservbyname"); + // ACE_TRACE ("ACE_OS::getservbyname"); #if defined (ACE_LACKS_GETSERVBYNAME) ACE_UNUSED_ARG (svc); ACE_UNUSED_ARG (proto); @@ -4566,7 +4503,7 @@ ACE_OS::getsockname (ACE_HANDLE handle, struct sockaddr *addr, int *addrlen) { - ACE_TRACE ("ACE_OS::getsockname"); + // ACE_TRACE ("ACE_OS::getsockname"); #if defined (ACE_PSOS) && !defined (ACE_PSOS_DIAB_PPC) ACE_SOCKCALL_RETURN (::getsockname ((ACE_SOCKET) handle, (struct sockaddr_in *) addr, (ACE_SOCKET_LEN *) addrlen), @@ -4584,7 +4521,7 @@ ACE_OS::getsockopt (ACE_HANDLE handle, char *optval, int *optlen) { - ACE_TRACE ("ACE_OS::getsockopt"); + // ACE_TRACE ("ACE_OS::getsockopt"); ACE_SOCKCALL_RETURN (::getsockopt ((ACE_SOCKET) handle, level, optname, optval, (ACE_SOCKET_LEN *) optlen), int, -1); } @@ -4592,7 +4529,7 @@ ACE_OS::getsockopt (ACE_HANDLE handle, ACE_INLINE int ACE_OS::listen (ACE_HANDLE handle, int backlog) { - ACE_TRACE ("ACE_OS::listen"); + // ACE_TRACE ("ACE_OS::listen"); ACE_SOCKCALL_RETURN (::listen ((ACE_SOCKET) handle, backlog), int, -1); } @@ -4600,7 +4537,7 @@ ACE_INLINE int ACE_OS::setsockopt (ACE_HANDLE handle, int level, int optname, const char *optval, int optlen) { - ACE_TRACE ("ACE_OS::setsockopt"); + // ACE_TRACE ("ACE_OS::setsockopt"); ACE_SOCKCALL_RETURN (::setsockopt ((ACE_SOCKET) handle, level, optname, (ACE_SOCKOPT_TYPE1) optval, optlen), int, -1); @@ -4609,14 +4546,14 @@ ACE_OS::setsockopt (ACE_HANDLE handle, int level, int optname, ACE_INLINE int ACE_OS::shutdown (ACE_HANDLE handle, int how) { - ACE_TRACE ("ACE_OS::shutdown"); + // ACE_TRACE ("ACE_OS::shutdown"); ACE_SOCKCALL_RETURN (::shutdown ((ACE_SOCKET) handle, how), int, -1); } ACE_INLINE ACE_HANDLE ACE_OS::socket (int domain, int type, int proto) { - ACE_TRACE ("ACE_OS::socket"); + // ACE_TRACE ("ACE_OS::socket"); ACE_SOCKCALL_RETURN (::socket (domain, type, proto), ACE_HANDLE, ACE_INVALID_HANDLE); } @@ -4624,14 +4561,14 @@ ACE_OS::socket (int domain, int type, int proto) ACE_INLINE int ACE_OS::atoi (const char *s) { - ACE_TRACE ("ACE_OS::atoi"); + // ACE_TRACE ("ACE_OS::atoi"); ACE_OSCALL_RETURN (::atoi (s), int, -1); } ACE_INLINE int ACE_OS::recvmsg (ACE_HANDLE handle, struct msghdr *msg, int flags) { - ACE_TRACE ("ACE_OS::recvmsg"); + // ACE_TRACE ("ACE_OS::recvmsg"); #if !defined (ACE_LACKS_RECVMSG) # if (defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0)) DWORD bytes_received = 0; @@ -4670,7 +4607,7 @@ ACE_OS::sendmsg (ACE_HANDLE handle, const struct msghdr *msg, int flags) { - ACE_TRACE ("ACE_OS::sendmsg"); + // ACE_TRACE ("ACE_OS::sendmsg"); #if !defined (ACE_LACKS_SENDMSG) # if (defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0)) DWORD bytes_sent = 0; @@ -4709,7 +4646,7 @@ ACE_INLINE int ACE_OS::fclose (FILE *fp) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::fclose"); + // ACE_TRACE ("ACE_OS::fclose"); ACE_OSCALL_RETURN (::fclose (fp), int, -1); #else // On CE, FILE * == void * == HANDLE @@ -4724,7 +4661,7 @@ ACE_OS::fclose (FILE *fp) ACE_INLINE char * ACE_OS::fgets (char *buf, int size, FILE *fp) { - ACE_TRACE ("ACE_OS::fgets"); + // ACE_TRACE ("ACE_OS::fgets"); ACE_OSCALL_RETURN (::fgets (buf, size, fp), char *, 0); } @@ -4734,7 +4671,7 @@ ACE_OS::fgets (char *buf, int size, FILE *fp) ACE_INLINE FILE * ACE_OS::fopen (const char *filename, const char *mode) { - ACE_TRACE ("ACE_OS::fopen"); + // ACE_TRACE ("ACE_OS::fopen"); ACE_OSCALL_RETURN (::fopen (filename, mode), FILE *, 0); } #endif /* ACE_WIN32 */ @@ -4744,7 +4681,7 @@ ACE_INLINE int ACE_OS::fflush (FILE *fp) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::fflush"); + // ACE_TRACE ("ACE_OS::fflush"); ACE_OSCALL_RETURN (::fflush (fp), int, -1); #else ACE_WIN32CALL_RETURN (ACE_ADAPT_RETVAL(::FlushFileBuffers (fp), @@ -4756,7 +4693,7 @@ ACE_OS::fflush (FILE *fp) ACE_INLINE size_t ACE_OS::fread (void *ptr, size_t size, size_t nelems, FILE *fp) { - ACE_TRACE ("ACE_OS::fread"); + // ACE_TRACE ("ACE_OS::fread"); #if defined (ACE_HAS_WINCE) DWORD len = 0; size_t tlen = size * nelems; @@ -4784,7 +4721,7 @@ ACE_OS::fread (void *ptr, size_t size, size_t nelems, FILE *fp) ACE_INLINE size_t ACE_OS::fwrite (const void *ptr, size_t size, size_t nitems, FILE *fp) { - ACE_TRACE ("ACE_OS::fwrite"); + // ACE_TRACE ("ACE_OS::fwrite"); #if defined (ACE_HAS_WINCE) DWORD len = 0; size_t tlen = size * nitems; @@ -4814,7 +4751,7 @@ ACE_INLINE int ACE_OS::truncate (const char *filename, off_t offset) { - ACE_TRACE ("ACE_OS::truncate"); + // ACE_TRACE ("ACE_OS::truncate"); #if defined (ACE_WIN32) ACE_HANDLE handle; if ((handle = ACE_OS::open (filename, O_WRONLY, 0666)) < 0) @@ -4956,7 +4893,7 @@ ACE_OS::gethostbyaddr_r (const char *addr, int length, int type, hostent *result, ACE_HOSTENT_DATA buffer, int *h_errnop) { - ACE_TRACE ("ACE_OS::gethostbyaddr_r"); + // ACE_TRACE ("ACE_OS::gethostbyaddr_r"); # if defined (ACE_PSOS) ACE_UNUSED_ARG (addr); ACE_UNUSED_ARG (length); @@ -5012,7 +4949,7 @@ ACE_OS::gethostbyname_r (const char *name, hostent *result, ACE_HOSTENT_DATA buffer, int *h_errnop) { - ACE_TRACE ("ACE_OS::gethostbyname_r"); + // ACE_TRACE ("ACE_OS::gethostbyname_r"); #if defined (ACE_PSOS) ACE_UNUSED_ARG (name); ACE_UNUSED_ARG (result); @@ -5073,7 +5010,7 @@ ACE_OS::gethostbyname_r (const char *name, hostent *result, ACE_INLINE char * ACE_OS::gets (char *str) { - ACE_TRACE ("ACE_OS::gets"); + // ACE_TRACE ("ACE_OS::gets"); ACE_OSCALL_RETURN (::gets (str), char *, 0); } #endif /* 0 */ @@ -5082,7 +5019,7 @@ ACE_INLINE struct servent * ACE_OS::getservbyname_r (const char *svc, const char *proto, struct servent *result, ACE_SERVENT_DATA buf) { - ACE_TRACE ("ACE_OS::getservbyname_r"); + // ACE_TRACE ("ACE_OS::getservbyname_r"); #if defined (ACE_LACKS_GETSERVBYNAME) ACE_UNUSED_ARG (svc); ACE_UNUSED_ARG (proto); @@ -5126,7 +5063,7 @@ ACE_OS::getservbyname_r (const char *svc, const char *proto, ACE_INLINE long ACE_OS::inet_addr (const char *name) { - ACE_TRACE ("ACE_OS::inet_addr"); + // ACE_TRACE ("ACE_OS::inet_addr"); #if defined (VXWORKS) || defined (ACE_PSOS) u_long ret = 0; @@ -5170,7 +5107,7 @@ ACE_OS::inet_addr (const char *name) ACE_INLINE char * ACE_OS::inet_ntoa (const struct in_addr addr) { - ACE_TRACE ("ACE_OS::inet_ntoa"); + // ACE_TRACE ("ACE_OS::inet_ntoa"); #if defined (ACE_PSOS) ACE_UNUSED_ARG (addr); ACE_NOTSUP_RETURN (0); @@ -5180,71 +5117,9 @@ ACE_OS::inet_ntoa (const struct in_addr addr) } ACE_INLINE int -ACE_OS::inet_pton (int family, const char *strptr, void *addrptr) -{ - ACE_TRACE ("ACE_OS::inet_pton"); - -#if defined (ACE_HAS_IP6) - ACE_OSCALL_RETURN (::inet_pton (family, strptr, addrptr), int, -1); -#else - if (family == AF_INET) - { - struct in_addr in_val; - - if (ACE_OS::inet_aton (strptr, &in_val)) - { - ACE_OS::memcpy (addrptr, &in_val, sizeof (struct in_addr)); - return 1; // Success - } - - return 0; // Input is not a valid presentation format - } - - ACE_NOTSUP_RETURN(-1); -#endif /* ACE_HAS_IP6 */ -} - -ACE_INLINE const char * -ACE_OS::inet_ntop (int family, const void *addrptr, char *strptr, size_t len) -{ - ACE_TRACE ("ACE_OS::inet_ntop"); - -#if defined (ACE_HAS_IP6) - ACE_OSCALL_RETURN (::inet_ntop (family, addrptr, strptr, len), const char *, 0); -#else - const unsigned char *p = - ACE_reinterpret_cast (const unsigned char *, addrptr); - - if (family == AF_INET) - { - char temp[INET_ADDRSTRLEN]; - - // Stevens uses snprintf() in his implementation but snprintf() - // doesn't appear to be very portable. For now, hope that using - // sprintf() will not cause any string/memory overrun problems. - ACE_OS::sprintf (temp, - "%d.%d.%d.%d", - p[0], p[1], p[2], p[3]); - - if (ACE_OS::strlen (temp) >= len) - { - errno = ENOSPC; - return 0; // Failure - } - - ACE_OS::strcpy (strptr, temp); - return strptr; - } - - ACE_NOTSUP_RETURN(0); -#endif /* ACE_HAS_IP6 */ -} - -ACE_INLINE int ACE_OS::last_error (void) { // ACE_TRACE ("ACE_OS::last_error"); - #if defined (ACE_WIN32) return errno == 0 ? ::GetLastError () : errno; #else @@ -5255,7 +5130,7 @@ ACE_OS::last_error (void) ACE_INLINE void ACE_OS::last_error (int error) { - ACE_TRACE ("ACE_OS::last_error"); + // ACE_TRACE ("ACE_OS::last_error"); #if defined (ACE_WIN32) ::SetLastError (error); #else @@ -5267,7 +5142,7 @@ ACE_OS::last_error (int error) ACE_INLINE void ACE_OS::perror (const char *s) { - ACE_TRACE ("ACE_OS::perror"); + // ACE_TRACE ("ACE_OS::perror"); ::perror (s); } #endif /* ! ACE_HAS_WINCE */ @@ -5277,14 +5152,14 @@ ACE_OS::perror (const char *s) ACE_INLINE int ACE_OS::puts (const char *s) { - ACE_TRACE ("ACE_OS::puts"); + // ACE_TRACE ("ACE_OS::puts"); ACE_OSCALL_RETURN (::puts (s), int, -1); } ACE_INLINE int ACE_OS::fputs (const char *s, FILE *stream) { - ACE_TRACE ("ACE_OS::puts"); + // ACE_TRACE ("ACE_OS::puts"); ACE_OSCALL_RETURN (::fputs (s, stream), int, -1); } #endif /* ! ACE_HAS_WINCE */ @@ -5334,7 +5209,7 @@ ACE_OS::system (const char *s) ACE_INLINE int ACE_OS::thr_continue (ACE_hthread_t target_thread) { - ACE_TRACE ("ACE_OS::thr_continue"); + // ACE_TRACE ("ACE_OS::thr_continue"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::thr_continue (target_thread), ace_result_), int, -1); @@ -5378,7 +5253,7 @@ ACE_OS::thr_cmp (ACE_hthread_t t1, ACE_hthread_t t2) ACE_INLINE int ACE_OS::thr_getconcurrency (void) { - ACE_TRACE ("ACE_OS::thr_getconcurrency"); + // ACE_TRACE ("ACE_OS::thr_getconcurrency"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) return ::thr_getconcurrency (); @@ -5395,7 +5270,7 @@ ACE_OS::thr_getconcurrency (void) ACE_INLINE int ACE_OS::thr_getprio (ACE_hthread_t thr_id, int &prio) { - ACE_TRACE ("ACE_OS::thr_getprio"); + // ACE_TRACE ("ACE_OS::thr_getprio"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::thr_getprio (thr_id, &prio), ace_result_), int, -1); @@ -5462,7 +5337,7 @@ ACE_OS::thr_getprio (ACE_hthread_t thr_id, int &prio) ACE_INLINE int ACE_OS::thr_getspecific (ACE_OS_thread_key_t key, void **data) { - ACE_TRACE ("ACE_OS::thr_getspecific"); + // ACE_TRACE ("ACE_OS::thr_getspecific"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::thr_getspecific (key, data), ace_result_), int, -1); @@ -5602,7 +5477,7 @@ ACE_TSS_Emulation::ts_object (const ACE_thread_key_t key) ACE_INLINE int ACE_OS::thr_getspecific (ACE_thread_key_t key, void **data) { - ACE_TRACE ("ACE_OS::thr_getspecific"); + // ACE_TRACE ("ACE_OS::thr_getspecific"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_TSS_EMULATION) ACE_KEY_INDEX (key_index, key); @@ -5671,7 +5546,7 @@ ACE_INLINE int ACE_OS::thr_join (ACE_hthread_t thr_handle, void **status) { - ACE_TRACE ("ACE_OS::thr_join"); + // ACE_TRACE ("ACE_OS::thr_join"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::thr_join (thr_handle, 0, status), ace_result_), @@ -5728,7 +5603,7 @@ ACE_OS::thr_join (ACE_thread_t waiter_id, ACE_thread_t *thr_id, void **status) { - ACE_TRACE ("ACE_OS::thr_join"); + // ACE_TRACE ("ACE_OS::thr_join"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::thr_join (waiter_id, thr_id, status), ace_result_), @@ -5772,7 +5647,7 @@ ACE_OS::thr_join (ACE_thread_t waiter_id, ACE_INLINE int ACE_OS::thr_setcancelstate (int new_state, int *old_state) { - ACE_TRACE ("ACE_OS::thr_setcancelstate"); + // ACE_TRACE ("ACE_OS::thr_setcancelstate"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) && !defined (ACE_LACKS_PTHREAD_CANCEL) # if defined (ACE_HAS_PTHREADS_DRAFT4) @@ -5814,7 +5689,7 @@ ACE_OS::thr_setcancelstate (int new_state, int *old_state) ACE_INLINE int ACE_OS::thr_setcanceltype (int new_type, int *old_type) { - ACE_TRACE ("ACE_OS::thr_setcanceltype"); + // ACE_TRACE ("ACE_OS::thr_setcanceltype"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) && !defined (ACE_LACKS_PTHREAD_CANCEL) # if defined (ACE_HAS_PTHREADS_DRAFT4) @@ -5848,7 +5723,7 @@ ACE_OS::thr_setcanceltype (int new_type, int *old_type) ACE_INLINE int ACE_OS::thr_cancel (ACE_thread_t thr_id) { - ACE_TRACE ("ACE_OS::thr_cancel"); + // ACE_TRACE ("ACE_OS::thr_cancel"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) && !defined (ACE_LACKS_PTHREAD_CANCEL) # if defined (ACE_HAS_PTHREADS_DRAFT4) || defined (ACE_HAS_PTHREADS_DRAFT6) @@ -5871,7 +5746,7 @@ ACE_OS::thr_cancel (ACE_thread_t thr_id) ACE_INLINE int ACE_OS::sigwait (sigset_t *set, int *sig) { - ACE_TRACE ("ACE_OS::sigwait"); + // ACE_TRACE ("ACE_OS::sigwait"); int local_sig; if (sig == 0) sig = &local_sig; @@ -5932,7 +5807,7 @@ ACE_OS::sigwait (sigset_t *set, int *sig) ACE_INLINE void ACE_OS::thr_testcancel (void) { - ACE_TRACE ("ACE_OS::thr_testcancel"); + // ACE_TRACE ("ACE_OS::thr_testcancel"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) && !defined (ACE_LACKS_PTHREAD_CANCEL) #if defined(ACE_HAS_PTHREADS_DRAFT6) @@ -5955,7 +5830,7 @@ ACE_OS::thr_sigsetmask (int how, const sigset_t *nsm, sigset_t *osm) { - ACE_TRACE ("ACE_OS::thr_sigsetmask"); + // ACE_TRACE ("ACE_OS::thr_sigsetmask"); #if defined (ACE_HAS_THREADS) # if defined (ACE_LACKS_PTHREAD_THR_SIGSETMASK) // DCE threads and Solaris 2.4 have no such function. @@ -6035,7 +5910,7 @@ ACE_OS::thr_sigsetmask (int how, ACE_INLINE int ACE_OS::thr_kill (ACE_thread_t thr_id, int signum) { - ACE_TRACE ("ACE_OS::thr_kill"); + // ACE_TRACE ("ACE_OS::thr_kill"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_PTHREADS) # if defined (ACE_HAS_PTHREADS_DRAFT4) || defined(ACE_LACKS_PTHREAD_KILL) @@ -6081,7 +5956,7 @@ ACE_OS::thr_kill (ACE_thread_t thr_id, int signum) ACE_INLINE size_t ACE_OS::thr_min_stack (void) { - ACE_TRACE ("ACE_OS::thr_min_stack"); + // ACE_TRACE ("ACE_OS::thr_min_stack"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) # if defined (ACE_HAS_THR_MINSTACK) @@ -6130,7 +6005,7 @@ ACE_OS::thr_min_stack (void) ACE_INLINE int ACE_OS::thr_setconcurrency (int hint) { - ACE_TRACE ("ACE_OS::thr_setconcurrency"); + // ACE_TRACE ("ACE_OS::thr_setconcurrency"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::thr_setconcurrency (hint), @@ -6156,7 +6031,7 @@ ACE_OS::thr_setconcurrency (int hint) ACE_INLINE int ACE_OS::thr_setprio (ACE_hthread_t thr_id, int prio) { - ACE_TRACE ("ACE_OS::thr_setprio"); + // ACE_TRACE ("ACE_OS::thr_setprio"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::thr_setprio (thr_id, prio), @@ -6219,7 +6094,7 @@ ACE_OS::thr_setprio (ACE_hthread_t thr_id, int prio) ACE_INLINE int ACE_OS::thr_suspend (ACE_hthread_t target_thread) { - ACE_TRACE ("ACE_OS::thr_suspend"); + // ACE_TRACE ("ACE_OS::thr_suspend"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::thr_suspend (target_thread), ace_result_), int, -1); @@ -6246,7 +6121,7 @@ ACE_OS::thr_suspend (ACE_hthread_t target_thread) ACE_INLINE void ACE_OS::thr_yield (void) { - ACE_TRACE ("ACE_OS::thr_yield"); + // ACE_TRACE ("ACE_OS::thr_yield"); #if defined (ACE_HAS_THREADS) # if defined (ACE_HAS_STHREADS) ::thr_yield (); @@ -6274,7 +6149,7 @@ ACE_OS::thr_yield (void) ACE_INLINE int ACE_OS::priority_control (ACE_idtype_t idtype, ACE_id_t id, int cmd, void *arg) { - ACE_TRACE ("ACE_OS::priority_control"); + // ACE_TRACE ("ACE_OS::priority_control"); #if defined (ACE_HAS_PRIOCNTL) ACE_OSCALL_RETURN (priocntl (idtype, id, cmd, ACE_static_cast (caddr_t, arg)), int, -1); @@ -6291,7 +6166,7 @@ ACE_INLINE void ACE_OS::rewind (FILE *fp) { #if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::rewind"); + // ACE_TRACE ("ACE_OS::rewind"); ::rewind (fp); #else // In WinCE, "FILE *" is actually a HANDLE. @@ -6305,7 +6180,7 @@ ACE_OS::rewind (FILE *fp) ACE_INLINE long ACE_OS::filesize (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::filesize"); + // ACE_TRACE ("ACE_OS::filesize"); #if defined (ACE_WIN32) ACE_WIN32CALL_RETURN (::GetFileSize (handle, NULL), long, -1); #else /* !ACE_WIN32 */ @@ -6320,7 +6195,7 @@ ACE_OS::readv (ACE_HANDLE handle, iovec *iov, int iovlen) { - ACE_TRACE ("ACE_OS::readv"); + // ACE_TRACE ("ACE_OS::readv"); ACE_OSCALL_RETURN (::readv (handle, iov, iovlen), ssize_t, -1); } @@ -6329,7 +6204,7 @@ ACE_OS::writev (ACE_HANDLE handle, const iovec *iov, int iovcnt) { - ACE_TRACE ("ACE_OS::writev"); + // ACE_TRACE ("ACE_OS::writev"); ACE_OSCALL_RETURN (::writev (handle, (ACE_WRITEV_TYPE *) iov, iovcnt), int, -1); } @@ -6338,48 +6213,18 @@ ACE_OS::recvv (ACE_HANDLE handle, iovec *buffers, int n) { -#if defined (ACE_HAS_WINSOCK2) - +#if (defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0)) DWORD bytes_received = 0; - int result = 1; - - // Winsock 2 has WSASend and can do this directly, but Winsock 1 needs - // to do the recvs piece-by-piece. - -# if (ACE_HAS_WINSOCK2 != 0) - result = ::WSARecv ((SOCKET) handle, - (WSABUF *) buffers, - n, - &bytes_received, - 0, - 0, - 0); -# else - int i, chunklen; - char *chunkp = 0; - - // Step through the buffers requested by caller; for each one, cycle - // through reads until it's filled or an error occurs. - for (i = 0; i < n && result > 0; i++) - { - chunkp = buffers[i].iov_base; // Point to part of chunk being read - chunklen = buffers[i].iov_len; // Track how much to read to chunk - while (chunklen > 0 && result > 0) - { - result = ::recv ((SOCKET) handle, chunkp, chunklen, 0); - if (result > 0) - { - chunkp += result; - chunklen -= result; - bytes_received += result; - } - } - } -# endif /* ACE_HAS_WINSOCK2 != 0 */ - - if (result == SOCKET_ERROR) + int result = ::WSARecv ((SOCKET) handle, + (WSABUF *) buffers, + n, + &bytes_received, + 0, + 0, + 0); + if (result != 0) { - errno = ::WSAGetLastError (); + errno = ::GetLastError (); return -1; } else @@ -6394,40 +6239,22 @@ ACE_OS::sendv (ACE_HANDLE handle, const iovec *buffers, int n) { -#if defined (ACE_HAS_WINSOCK2) +#if (defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0)) DWORD bytes_sent = 0; - int result = 0; - - // Winsock 2 has WSASend and can do this directly, but Winsock 1 needs - // to do the sends one-by-one. -# if (ACE_HAS_WINSOCK2 != 0) - result = ::WSASend ((SOCKET) handle, - (WSABUF *) buffers, - n, - &bytes_sent, - 0, - 0, - 0); -# else - int i; - for (i = 0; i < n && result != SOCKET_ERROR; i++) - { - result = ::send ((SOCKET) handle, - buffers[i].iov_base, - buffers[i].iov_len, - 0); - bytes_sent += buffers[i].iov_len; // Gets ignored on error anyway - } -# endif /* ACE_HAS_WINSOCK2 != 0 */ - - if (result == SOCKET_ERROR) + int result = ::WSASend ((SOCKET) handle, + (WSABUF *) buffers, + n, + &bytes_sent, + 0, + 0, + 0); + if (result != 0) { - errno = ::WSAGetLastError (); + errno = ::GetLastError (); return -1; } else return (ssize_t) bytes_sent; - #else return ACE_OS::writev (handle, buffers, n); #endif /* ACE_HAS_WINSOCK2 */ @@ -6436,7 +6263,7 @@ ACE_OS::sendv (ACE_HANDLE handle, ACE_INLINE int ACE_OS::poll (struct pollfd *pollfds, u_long len, ACE_Time_Value *timeout) { - ACE_TRACE ("ACE_OS::poll"); + // ACE_TRACE ("ACE_OS::poll"); #if defined (ACE_HAS_POLL) int to = timeout == 0 ? -1 : int (timeout->msec ()); ACE_OSCALL_RETURN (::poll (pollfds, len, to), int, -1); @@ -6452,7 +6279,7 @@ ACE_OS::poll (struct pollfd *pollfds, u_long len, ACE_Time_Value *timeout) ACE_INLINE int ACE_OS::poll (struct pollfd *pollfds, u_long len, const ACE_Time_Value &timeout) { - ACE_TRACE ("ACE_OS::poll"); + // ACE_TRACE ("ACE_OS::poll"); #if defined (ACE_HAS_POLL) ACE_OSCALL_RETURN (::poll (pollfds, len, int (timeout.msec ())), int, -1); #else @@ -6468,7 +6295,7 @@ ACE_INLINE int ACE_OS::t_accept (ACE_HANDLE handle, int reshandle, struct t_call *call) { - ACE_TRACE ("ACE_OS::t_accept"); + // ACE_TRACE ("ACE_OS::t_accept"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_accept (handle, reshandle, call), int, -1); #else @@ -6484,7 +6311,7 @@ ACE_INLINE char * ACE_OS::t_alloc (ACE_HANDLE handle, int struct_type, int fields) { - ACE_TRACE ("ACE_OS::t_alloc"); + // ACE_TRACE ("ACE_OS::t_alloc"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_alloc (handle, struct_type, fields), char *, 0); @@ -6501,7 +6328,7 @@ ACE_INLINE int ACE_OS::t_bind (ACE_HANDLE handle, struct t_bind *req, struct t_bind *ret) { - ACE_TRACE ("ACE_OS::t_bind"); + // ACE_TRACE ("ACE_OS::t_bind"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_bind (handle, req, ret), int, -1); #else @@ -6516,7 +6343,7 @@ ACE_OS::t_bind (ACE_HANDLE handle, struct t_bind *req, ACE_INLINE int ACE_OS::t_close (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::t_close"); + // ACE_TRACE ("ACE_OS::t_close"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_close (handle), int, -1); #else @@ -6531,7 +6358,7 @@ ACE_OS::t_connect(int fildes, struct t_call *sndcall, struct t_call *rcvcall) { - ACE_TRACE ("ACE_OS::t_connect"); + // ACE_TRACE ("ACE_OS::t_connect"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_connect (fildes, sndcall, rcvcall), int, -1); #else @@ -6546,7 +6373,7 @@ ACE_OS::t_connect(int fildes, ACE_INLINE void ACE_OS::t_error (char *errmsg) { - ACE_TRACE ("ACE_OS::t_error"); + // ACE_TRACE ("ACE_OS::t_error"); #if defined (ACE_HAS_TLI) ::t_error (errmsg); #else @@ -6557,7 +6384,7 @@ ACE_OS::t_error (char *errmsg) ACE_INLINE int ACE_OS::t_free (char *ptr, int struct_type) { - ACE_TRACE ("ACE_OS::t_free"); + // ACE_TRACE ("ACE_OS::t_free"); #if defined (ACE_HAS_TLI) if (ptr == 0) return 0; @@ -6573,7 +6400,7 @@ ACE_OS::t_free (char *ptr, int struct_type) ACE_INLINE int ACE_OS::t_getinfo (ACE_HANDLE handle, struct t_info *info) { - ACE_TRACE ("ACE_OS::t_getinfo"); + // ACE_TRACE ("ACE_OS::t_getinfo"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_getinfo (handle, info), int, -1); #else @@ -6589,7 +6416,7 @@ ACE_OS::t_getname (ACE_HANDLE handle, struct netbuf *namep, int type) { - ACE_TRACE ("ACE_OS::t_getname"); + // ACE_TRACE ("ACE_OS::t_getname"); #if defined (ACE_HAS_SVR4_TLI) ACE_OSCALL_RETURN (::t_getname (handle, namep, type), int, -1); #else @@ -6598,13 +6425,13 @@ ACE_OS::t_getname (ACE_HANDLE handle, ACE_UNUSED_ARG (type); ACE_NOTSUP_RETURN (-1); -#endif /* ACE_HAS_SVR4_TLI */ +#endif /* ACE_HAS_STREAM_PIPES */ } ACE_INLINE int ACE_OS::t_getstate (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::t_getstate"); + // ACE_TRACE ("ACE_OS::t_getstate"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_getstate (handle), int, -1); #else @@ -6617,7 +6444,7 @@ ACE_OS::t_getstate (ACE_HANDLE handle) ACE_INLINE int ACE_OS::t_listen (ACE_HANDLE handle, struct t_call *call) { - ACE_TRACE ("ACE_OS::t_listen"); + // ACE_TRACE ("ACE_OS::t_listen"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_listen (handle, call), int, -1); #else @@ -6631,7 +6458,7 @@ ACE_OS::t_listen (ACE_HANDLE handle, struct t_call *call) ACE_INLINE int ACE_OS::t_look (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::t_look"); + // ACE_TRACE ("ACE_OS::t_look"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_look (handle), int, -1); #else @@ -6644,7 +6471,7 @@ ACE_OS::t_look (ACE_HANDLE handle) ACE_INLINE int ACE_OS::t_open (char *path, int oflag, struct t_info *info) { - ACE_TRACE ("ACE_OS::t_open"); + // ACE_TRACE ("ACE_OS::t_open"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_open (path, oflag, info), int, -1); #else @@ -6661,7 +6488,7 @@ ACE_OS::t_optmgmt (ACE_HANDLE handle, struct t_optmgmt *req, struct t_optmgmt *ret) { - ACE_TRACE ("ACE_OS::t_optmgmt"); + // ACE_TRACE ("ACE_OS::t_optmgmt"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_optmgmt (handle, req, ret), int, -1); #else @@ -6679,7 +6506,7 @@ ACE_OS::t_rcv (ACE_HANDLE handle, unsigned nbytes, int *flags) { - ACE_TRACE ("ACE_OS::t_rcv"); + // ACE_TRACE ("ACE_OS::t_rcv"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_rcv (handle, buf, nbytes, flags), int, -1); @@ -6696,7 +6523,7 @@ ACE_OS::t_rcv (ACE_HANDLE handle, ACE_INLINE int ACE_OS::t_rcvdis (ACE_HANDLE handle, struct t_discon *discon) { - ACE_TRACE ("ACE_OS::t_rcvdis"); + // ACE_TRACE ("ACE_OS::t_rcvdis"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_rcvdis (handle, discon), int, -1); #else @@ -6710,7 +6537,7 @@ ACE_OS::t_rcvdis (ACE_HANDLE handle, struct t_discon *discon) ACE_INLINE int ACE_OS::t_rcvrel (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::t_rcvrel"); + // ACE_TRACE ("ACE_OS::t_rcvrel"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_rcvrel (handle), int, -1); #else @@ -6725,7 +6552,7 @@ ACE_OS::t_rcvudata (ACE_HANDLE handle, struct t_unitdata *unitdata, int *flags) { - ACE_TRACE ("ACE_OS::t_rcvudata"); + // ACE_TRACE ("ACE_OS::t_rcvudata"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_rcvudata (handle, unitdata, flags), int, -1); @@ -6741,7 +6568,7 @@ ACE_OS::t_rcvudata (ACE_HANDLE handle, ACE_INLINE int ACE_OS::t_rcvuderr (ACE_HANDLE handle, struct t_uderr *uderr) { - ACE_TRACE ("ACE_OS::t_rcvuderr"); + // ACE_TRACE ("ACE_OS::t_rcvuderr"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_rcvuderr (handle, uderr), int, -1); #else @@ -6755,7 +6582,7 @@ ACE_OS::t_rcvuderr (ACE_HANDLE handle, struct t_uderr *uderr) ACE_INLINE int ACE_OS::t_snd (ACE_HANDLE handle, char *buf, unsigned nbytes, int flags) { - ACE_TRACE ("ACE_OS::t_snd"); + // ACE_TRACE ("ACE_OS::t_snd"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_snd (handle, buf, nbytes, flags), int, -1); #else @@ -6771,7 +6598,7 @@ ACE_OS::t_snd (ACE_HANDLE handle, char *buf, unsigned nbytes, int flags) ACE_INLINE int ACE_OS::t_snddis (ACE_HANDLE handle, struct t_call *call) { - ACE_TRACE ("ACE_OS::t_snddis"); + // ACE_TRACE ("ACE_OS::t_snddis"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_snddis (handle, call), int, -1); #else @@ -6785,7 +6612,7 @@ ACE_OS::t_snddis (ACE_HANDLE handle, struct t_call *call) ACE_INLINE int ACE_OS::t_sndrel (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::t_sndrel"); + // ACE_TRACE ("ACE_OS::t_sndrel"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_sndrel (handle), int, -1); #else @@ -6798,7 +6625,7 @@ ACE_OS::t_sndrel (ACE_HANDLE handle) ACE_INLINE int ACE_OS::t_sync (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::t_sync"); + // ACE_TRACE ("ACE_OS::t_sync"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_sync (handle), int, -1); #else @@ -6811,7 +6638,7 @@ ACE_OS::t_sync (ACE_HANDLE handle) ACE_INLINE int ACE_OS::t_unbind (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::t_unbind"); + // ACE_TRACE ("ACE_OS::t_unbind"); #if defined (ACE_HAS_TLI) ACE_OSCALL_RETURN (::t_unbind (handle), int, -1); #else @@ -6824,7 +6651,7 @@ ACE_OS::t_unbind (ACE_HANDLE handle) ACE_INLINE char * ACE_OS::compile (const char *instring, char *expbuf, char *endbuf) { - ACE_TRACE ("ACE_OS::compile"); + // ACE_TRACE ("ACE_OS::compile"); #if defined (ACE_HAS_REGEX) ACE_OSCALL_RETURN (::compile (instring, expbuf, endbuf), char *, 0); #else @@ -6839,7 +6666,7 @@ ACE_OS::compile (const char *instring, char *expbuf, char *endbuf) ACE_INLINE int ACE_OS::close (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::close"); + // ACE_TRACE ("ACE_OS::close"); #if defined (ACE_WIN32) ACE_WIN32CALL_RETURN (ACE_ADAPT_RETVAL (::CloseHandle (handle), ace_result_), int, -1); #elif defined (ACE_PSOS) && ! defined (ACE_PSOS_LACKS_PHILE) @@ -6859,7 +6686,7 @@ ACE_OS::close (ACE_HANDLE handle) ACE_INLINE int ACE_OS::closesocket (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::close"); + // ACE_TRACE ("ACE_OS::close"); #if defined (ACE_WIN32) ACE_SOCKCALL_RETURN (::closesocket ((SOCKET) handle), int, -1); #else @@ -6870,7 +6697,7 @@ ACE_OS::closesocket (ACE_HANDLE handle) ACE_INLINE int ACE_OS::access (const char *path, int amode) { - ACE_TRACE ("ACE_OS::access"); + // ACE_TRACE ("ACE_OS::access"); #if defined (ACE_LACKS_ACCESS) ACE_UNUSED_ARG (path); ACE_UNUSED_ARG (amode); @@ -6886,7 +6713,7 @@ ACE_OS::access (const char *path, int amode) ACE_INLINE ACE_HANDLE ACE_OS::creat (LPCTSTR filename, mode_t mode) { - ACE_TRACE ("ACE_OS::creat"); + // ACE_TRACE ("ACE_OS::creat"); #if defined (ACE_WIN32) return ACE_OS::open (filename, mode); #elif defined(ACE_PSOS) @@ -6914,7 +6741,7 @@ ACE_OS::creat (LPCTSTR filename, mode_t mode) ACE_INLINE int ACE_OS::uname (struct utsname *name) { - ACE_TRACE ("ACE_OS::uname"); + // ACE_TRACE ("ACE_OS::uname"); ACE_OSCALL_RETURN (::uname (name), int, -1); } #endif /* ! ACE_WIN32 && ! VXWORKS && ! CHORUS */ @@ -6922,7 +6749,7 @@ ACE_OS::uname (struct utsname *name) ACE_INLINE int ACE_OS::hostname (char name[], size_t maxnamelen) { - ACE_TRACE ("ACE_OS::hostname"); + // ACE_TRACE ("ACE_OS::hostname"); #if !defined (ACE_HAS_WINCE) # if defined (ACE_WIN32) ACE_WIN32CALL_RETURN (ACE_ADAPT_RETVAL (::GetComputerNameA (name, LPDWORD (&maxnamelen)), @@ -6966,7 +6793,7 @@ ACE_OS::hostname (char name[], size_t maxnamelen) ACE_INLINE int ACE_OS::msgctl (int msqid, int cmd, struct msqid_ds *val) { - ACE_TRACE ("ACE_OS::msgctl"); + // ACE_TRACE ("ACE_OS::msgctl"); #if defined (ACE_HAS_SYSV_IPC) ACE_OSCALL_RETURN (::msgctl (msqid, cmd, val), int, -1); #else @@ -6981,7 +6808,7 @@ ACE_OS::msgctl (int msqid, int cmd, struct msqid_ds *val) ACE_INLINE int ACE_OS::msgget (key_t key, int msgflg) { - ACE_TRACE ("ACE_OS::msgget"); + // ACE_TRACE ("ACE_OS::msgget"); #if defined (ACE_HAS_SYSV_IPC) ACE_OSCALL_RETURN (::msgget (key, msgflg), int, -1); #else @@ -6996,7 +6823,7 @@ ACE_INLINE int ACE_OS::msgrcv (int int_id, void *buf, size_t len, long type, int flags) { - ACE_TRACE ("ACE_OS::msgrcv"); + // ACE_TRACE ("ACE_OS::msgrcv"); #if defined (ACE_HAS_SYSV_IPC) # if defined (ACE_LACKS_POSIX_PROTOTYPES) || defined (ACE_LACKS_SOME_POSIX_PROTOTYPES) ACE_OSCALL_RETURN (::msgrcv (int_id, (msgbuf *) buf, len, type, flags), @@ -7019,7 +6846,7 @@ ACE_OS::msgrcv (int int_id, void *buf, size_t len, ACE_INLINE int ACE_OS::msgsnd (int int_id, const void *buf, size_t len, int flags) { - ACE_TRACE ("ACE_OS::msgsnd"); + // ACE_TRACE ("ACE_OS::msgsnd"); #if defined (ACE_HAS_SYSV_IPC) # if defined (ACE_HAS_NONCONST_MSGSND) ACE_OSCALL_RETURN (::msgsnd (int_id, (void *) buf, len, flags), int, -1); @@ -7041,7 +6868,7 @@ ACE_OS::msgsnd (int int_id, const void *buf, size_t len, int flags) ACE_INLINE u_int ACE_OS::alarm (u_int secs) { - ACE_TRACE ("ACE_OS::alarm"); + // ACE_TRACE ("ACE_OS::alarm"); #if defined (ACE_WIN32) || defined (VXWORKS) || defined (CHORUS) || defined (ACE_PSOS) ACE_UNUSED_ARG (secs); @@ -7055,7 +6882,7 @@ ACE_OS::alarm (u_int secs) ACE_INLINE u_int ACE_OS::ualarm (u_int usecs, u_int interval) { - ACE_TRACE ("ACE_OS::ualarm"); + // ACE_TRACE ("ACE_OS::ualarm"); #if defined (ACE_HAS_UALARM) return ::ualarm (usecs, interval); @@ -7073,7 +6900,7 @@ ACE_INLINE u_int ACE_OS::ualarm (const ACE_Time_Value &tv, const ACE_Time_Value &tv_interval) { - ACE_TRACE ("ACE_OS::ualarm"); + // ACE_TRACE ("ACE_OS::ualarm"); #if defined (ACE_HAS_UALARM) u_int usecs = (tv.sec () * ACE_ONE_SECOND_IN_USECS) + tv.usec (); @@ -7092,7 +6919,7 @@ ACE_OS::ualarm (const ACE_Time_Value &tv, ACE_INLINE int ACE_OS::dlclose (ACE_SHLIB_HANDLE handle) { - ACE_TRACE ("ACE_OS::dlclose"); + // ACE_TRACE ("ACE_OS::dlclose"); #if defined (ACE_HAS_SVR4_DYNAMIC_LINKING) # if !defined (ACE_HAS_AUTOMATIC_INIT_FINI) @@ -7137,7 +6964,7 @@ ACE_OS::dlclose (ACE_SHLIB_HANDLE handle) ACE_INLINE char * ACE_OS::dlerror (void) { - ACE_TRACE ("ACE_OS::dlerror"); + // ACE_TRACE ("ACE_OS::dlerror"); # if defined (ACE_HAS_SVR4_DYNAMIC_LINKING) ACE_OSCALL_RETURN ((char *)::dlerror (), char *, 0); # elif defined (__hpux) @@ -7160,7 +6987,7 @@ ACE_OS::dlerror (void) ACE_INLINE ACE_SHLIB_HANDLE ACE_OS::dlopen (ACE_DL_TYPE filename, int mode) { - ACE_TRACE ("ACE_OS::dlopen"); + // ACE_TRACE ("ACE_OS::dlopen"); # if defined (ACE_HAS_SVR4_DYNAMIC_LINKING) void *handle; # if defined (ACE_HAS_SGIDLADD) @@ -7208,7 +7035,7 @@ ACE_OS::dlopen (ACE_DL_TYPE filename, int mode) ACE_INLINE void * ACE_OS::dlsym (ACE_SHLIB_HANDLE handle, ACE_DL_TYPE symbolname) { - ACE_TRACE ("ACE_OS::dlsym"); + // ACE_TRACE ("ACE_OS::dlsym"); # if defined (ACE_HAS_SVR4_DYNAMIC_LINKING) # if defined (ACE_LACKS_POSIX_PROTOTYPES) ACE_OSCALL_RETURN (::dlsym (handle, (char*) symbolname), void *, 0); @@ -7253,7 +7080,7 @@ ACE_OS::dlerror (void) ACE_INLINE void * ACE_OS::dlsym (ACE_SHLIB_HANDLE handle, ACE_WIDE_DL_TYPE symbolname) { - ACE_TRACE ("ACE_OS::dlsym"); + // ACE_TRACE ("ACE_OS::dlsym"); ACE_WIN32CALL_RETURN (::GetProcAddress (handle, symbolname), void *, 0); } #endif /* ACE_HAS_WINCE */ @@ -7262,7 +7089,7 @@ ACE_OS::dlsym (ACE_SHLIB_HANDLE handle, ACE_WIDE_DL_TYPE symbolname) ACE_INLINE int ACE_OS::step (const char *str, char *expbuf) { - ACE_TRACE ("ACE_OS::step"); + // ACE_TRACE ("ACE_OS::step"); #if defined (ACE_HAS_REGEX) ACE_OSCALL_RETURN (::step (str, expbuf), int, -1); #else @@ -7276,7 +7103,7 @@ ACE_OS::step (const char *str, char *expbuf) ACE_INLINE long ACE_OS::sysinfo (int cmd, char *buf, long count) { - ACE_TRACE ("ACE_OS::sysinfo"); + // ACE_TRACE ("ACE_OS::sysinfo"); #if defined (ACE_HAS_SYSINFO) ACE_OSCALL_RETURN (::sysinfo (cmd, buf, count), long, -1); #else @@ -7291,7 +7118,7 @@ ACE_OS::sysinfo (int cmd, char *buf, long count) ACE_INLINE ssize_t ACE_OS::write (ACE_HANDLE handle, const void *buf, size_t nbyte) { - ACE_TRACE ("ACE_OS::write"); + // ACE_TRACE ("ACE_OS::write"); #if defined (ACE_WIN32) DWORD bytes_written; // This is set to 0 byte WriteFile. @@ -7325,7 +7152,7 @@ ACE_INLINE ssize_t ACE_OS::write (ACE_HANDLE handle, const void *buf, size_t nbyte, ACE_OVERLAPPED *overlapped) { - ACE_TRACE ("ACE_OS::write"); + // ACE_TRACE ("ACE_OS::write"); overlapped = overlapped; #if defined (ACE_WIN32) DWORD bytes_written; // This is set to 0 byte WriteFile. @@ -7342,7 +7169,7 @@ ACE_OS::write (ACE_HANDLE handle, const void *buf, size_t nbyte, ACE_INLINE ssize_t ACE_OS::read (ACE_HANDLE handle, void *buf, size_t len) { - ACE_TRACE ("ACE_OS::read"); + // ACE_TRACE ("ACE_OS::read"); #if defined (ACE_WIN32) DWORD ok_len; if (::ReadFile (handle, buf, len, &ok_len, 0)) @@ -7381,7 +7208,7 @@ ACE_INLINE ssize_t ACE_OS::read (ACE_HANDLE handle, void *buf, size_t len, ACE_OVERLAPPED *overlapped) { - ACE_TRACE ("ACE_OS::read"); + // ACE_TRACE ("ACE_OS::read"); overlapped = overlapped; #if defined (ACE_WIN32) DWORD ok_len; @@ -7394,7 +7221,7 @@ ACE_OS::read (ACE_HANDLE handle, void *buf, size_t len, ACE_INLINE int ACE_OS::readlink (const char *path, char *buf, size_t bufsiz) { - ACE_TRACE ("ACE_OS::readlink"); + // ACE_TRACE ("ACE_OS::readlink"); # if defined (ACE_LACKS_READLINK) || \ defined (ACE_HAS_WINCE) || defined (ACE_WIN32) ACE_UNUSED_ARG (path); @@ -7416,7 +7243,7 @@ ACE_OS::getmsg (ACE_HANDLE handle, struct strbuf *data, int *flags) { - ACE_TRACE ("ACE_OS::getmsg"); + // ACE_TRACE ("ACE_OS::getmsg"); #if defined (ACE_HAS_STREAM_PIPES) ACE_OSCALL_RETURN (::getmsg (handle, ctl, data, flags), int, -1); #else @@ -7437,7 +7264,7 @@ ACE_OS::getpmsg (ACE_HANDLE handle, int *band, int *flags) { - ACE_TRACE ("ACE_OS::getpmsg"); + // ACE_TRACE ("ACE_OS::getpmsg"); #if defined (ACE_HAS_STREAM_PIPES) ACE_OSCALL_RETURN (::getpmsg (handle, ctl, data, band, flags), int, -1); #else @@ -7455,7 +7282,7 @@ ACE_OS::getpmsg (ACE_HANDLE handle, ACE_INLINE int ACE_OS::getrusage (int who, struct rusage *ru) { - ACE_TRACE ("ACE_OS::getrusage"); + // ACE_TRACE ("ACE_OS::getrusage"); #if defined (ACE_HAS_SYSCALL_GETRUSAGE) // This nonsense is necessary for HP/UX... @@ -7489,7 +7316,7 @@ ACE_OS::getrusage (int who, struct rusage *ru) ACE_INLINE int ACE_OS::isastream (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::isastream"); + // ACE_TRACE ("ACE_OS::isastream"); #if defined (ACE_HAS_STREAM_PIPES) ACE_OSCALL_RETURN (::isastream (handle), int, -1); #else @@ -7509,7 +7336,7 @@ ACE_OS::mmap (void *addr, ACE_HANDLE *file_mapping, LPSECURITY_ATTRIBUTES sa) { - ACE_TRACE ("ACE_OS::mmap"); + // ACE_TRACE ("ACE_OS::mmap"); #if defined (ACE_WIN32) int nt_flags = 0; ACE_HANDLE local_handle = ACE_INVALID_HANDLE; @@ -7655,7 +7482,7 @@ ACE_OS::mmap (void *addr, ACE_INLINE int ACE_OS::mprotect (void *addr, size_t len, int prot) { - ACE_TRACE ("ACE_OS::mprotect"); + // ACE_TRACE ("ACE_OS::mprotect"); #if defined (ACE_WIN32) DWORD dummy; // Sigh! return ::VirtualProtect(addr, len, prot, &dummy) ? 0 : -1; @@ -7672,7 +7499,7 @@ ACE_OS::mprotect (void *addr, size_t len, int prot) ACE_INLINE int ACE_OS::msync (void *addr, size_t len, int sync) { - ACE_TRACE ("ACE_OS::msync"); + // ACE_TRACE ("ACE_OS::msync"); #if defined (ACE_WIN32) ACE_UNUSED_ARG (sync); @@ -7695,7 +7522,7 @@ ACE_OS::msync (void *addr, size_t len, int sync) ACE_INLINE int ACE_OS::munmap (void *addr, size_t len) { - ACE_TRACE ("ACE_OS::munmap"); + // ACE_TRACE ("ACE_OS::munmap"); #if defined (ACE_WIN32) ACE_UNUSED_ARG (len); @@ -7712,7 +7539,7 @@ ACE_OS::munmap (void *addr, size_t len) ACE_INLINE int ACE_OS::madvise (caddr_t addr, size_t len, int advice) { - ACE_TRACE ("ACE_OS::madvise"); + // ACE_TRACE ("ACE_OS::madvise"); #if defined (ACE_WIN32) ACE_UNUSED_ARG (addr); ACE_UNUSED_ARG (len); @@ -7733,7 +7560,7 @@ ACE_INLINE int ACE_OS::putmsg (ACE_HANDLE handle, const struct strbuf *ctl, const struct strbuf *data, int flags) { - ACE_TRACE ("ACE_OS::putmsg"); + // ACE_TRACE ("ACE_OS::putmsg"); #if defined (ACE_HAS_STREAM_PIPES) ACE_OSCALL_RETURN (::putmsg (handle, (ACE_STRBUF_TYPE) ctl, @@ -7772,7 +7599,7 @@ ACE_OS::putpmsg (ACE_HANDLE handle, int band, int flags) { - ACE_TRACE ("ACE_OS::putpmsg"); + // ACE_TRACE ("ACE_OS::putpmsg"); #if defined (ACE_HAS_STREAM_PIPES) ACE_OSCALL_RETURN (::putpmsg (handle, (ACE_STRBUF_TYPE) ctl, @@ -7788,7 +7615,7 @@ ACE_OS::putpmsg (ACE_HANDLE handle, ACE_INLINE int ACE_OS::semctl (int int_id, int semnum, int cmd, semun value) { - ACE_TRACE ("ACE_OS::semctl"); + // ACE_TRACE ("ACE_OS::semctl"); #if defined (ACE_HAS_SYSV_IPC) ACE_OSCALL_RETURN (::semctl (int_id, semnum, cmd, value), int, -1); #else @@ -7804,7 +7631,7 @@ ACE_OS::semctl (int int_id, int semnum, int cmd, semun value) ACE_INLINE int ACE_OS::semget (key_t key, int nsems, int flags) { - ACE_TRACE ("ACE_OS::semget"); + // ACE_TRACE ("ACE_OS::semget"); #if defined (ACE_HAS_SYSV_IPC) ACE_OSCALL_RETURN (::semget (key, nsems, flags), int, -1); #else @@ -7819,7 +7646,7 @@ ACE_OS::semget (key_t key, int nsems, int flags) ACE_INLINE int ACE_OS::semop (int int_id, struct sembuf *sops, size_t nsops) { - ACE_TRACE ("ACE_OS::semop"); + // ACE_TRACE ("ACE_OS::semop"); #if defined (ACE_HAS_SYSV_IPC) ACE_OSCALL_RETURN (::semop (int_id, sops, nsops), int, -1); #else @@ -7834,7 +7661,7 @@ ACE_OS::semop (int int_id, struct sembuf *sops, size_t nsops) ACE_INLINE void * ACE_OS::shmat (int int_id, void *shmaddr, int shmflg) { - ACE_TRACE ("ACE_OS::shmat"); + // ACE_TRACE ("ACE_OS::shmat"); #if defined (ACE_HAS_SYSV_IPC) # if defined (ACE_LACKS_POSIX_PROTOTYPES) || defined (ACE_LACKS_SOME_POSIX_PROTOTYPES) ACE_OSCALL_RETURN (::shmat (int_id, (char *)shmaddr, shmflg), void *, (void *) -1); @@ -7853,7 +7680,7 @@ ACE_OS::shmat (int int_id, void *shmaddr, int shmflg) ACE_INLINE int ACE_OS::shmctl (int int_id, int cmd, struct shmid_ds *buf) { - ACE_TRACE ("ACE_OS::shmctl"); + // ACE_TRACE ("ACE_OS::shmctl"); #if defined (ACE_HAS_SYSV_IPC) ACE_OSCALL_RETURN (::shmctl (int_id, cmd, buf), int, -1); #else @@ -7868,7 +7695,7 @@ ACE_OS::shmctl (int int_id, int cmd, struct shmid_ds *buf) ACE_INLINE int ACE_OS::shmdt (void *shmaddr) { - ACE_TRACE ("ACE_OS::shmdt"); + // ACE_TRACE ("ACE_OS::shmdt"); #if defined (ACE_HAS_SYSV_IPC) ACE_OSCALL_RETURN (::shmdt ((char *) shmaddr), int, -1); #else @@ -7881,7 +7708,7 @@ ACE_OS::shmdt (void *shmaddr) ACE_INLINE int ACE_OS::shmget (key_t key, int size, int flags) { - ACE_TRACE ("ACE_OS::shmget"); + // ACE_TRACE ("ACE_OS::shmget"); #if defined (ACE_HAS_SYSV_IPC) ACE_OSCALL_RETURN (::shmget (key, size, flags), int, -1); #else @@ -7900,7 +7727,7 @@ ACE_OS::shm_open (const char *filename, int perms, LPSECURITY_ATTRIBUTES sa) { - ACE_TRACE ("ACE_OS::shm_open"); + // ACE_TRACE ("ACE_OS::shm_open"); # if defined (ACE_HAS_SHM_OPEN) ACE_UNUSED_ARG (sa); ACE_OSCALL_RETURN (::shm_open (filename, mode, perms), ACE_HANDLE, -1); @@ -7968,7 +7795,7 @@ ACE_OS::difftime (time_t t1, time_t t0) ACE_INLINE char * ACE_OS::ctime (const time_t *t) { - ACE_TRACE ("ACE_OS::ctime"); + // ACE_TRACE ("ACE_OS::ctime"); # if defined (ACE_HAS_BROKEN_CTIME) ACE_OSCALL_RETURN (::asctime (::localtime (t)), char *, 0); #elif defined(ACE_PSOS) && ! defined (ACE_PSOS_HAS_TIME) @@ -7981,7 +7808,7 @@ ACE_OS::ctime (const time_t *t) ACE_INLINE char * ACE_OS::ctime_r (const time_t *t, char *buf, int buflen) { - ACE_TRACE ("ACE_OS::ctime_r"); + // ACE_TRACE ("ACE_OS::ctime_r"); # if defined (ACE_HAS_REENTRANT_FUNCTIONS) # if defined (ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R) char *result; @@ -8021,7 +7848,7 @@ ACE_INLINE struct tm * ACE_OS::localtime (const time_t *t) { #if !defined (ACE_HAS_WINCE) && !defined(ACE_PSOS) || defined (ACE_PSOS_HAS_TIME) - ACE_TRACE ("ACE_OS::localtime"); + // ACE_TRACE ("ACE_OS::localtime"); ACE_OSCALL_RETURN (::localtime (t), struct tm *, 0); #else // @@ Don't you start wondering what kind of functions @@ -8034,7 +7861,7 @@ ACE_OS::localtime (const time_t *t) ACE_INLINE struct tm * ACE_OS::localtime_r (const time_t *t, struct tm *res) { - ACE_TRACE ("ACE_OS::localtime_r"); + // ACE_TRACE ("ACE_OS::localtime_r"); #if defined (ACE_HAS_REENTRANT_FUNCTIONS) # if defined (DIGITAL_UNIX) ACE_OSCALL_RETURN (::_Plocaltime_r(t, res), struct tm *, 0); @@ -8059,7 +7886,7 @@ ACE_INLINE struct tm * ACE_OS::gmtime (const time_t *t) { #if !defined (ACE_HAS_WINCE) && !defined (ACE_PSOS) || defined (ACE_PSOS_HAS_TIME) - ACE_TRACE ("ACE_OS::localtime"); + // ACE_TRACE ("ACE_OS::localtime"); ACE_OSCALL_RETURN (::gmtime (t), struct tm *, 0); #else // @@ WinCE doesn't have gmtime also. @@ -8071,7 +7898,7 @@ ACE_OS::gmtime (const time_t *t) ACE_INLINE struct tm * ACE_OS::gmtime_r (const time_t *t, struct tm *res) { - ACE_TRACE ("ACE_OS::localtime_r"); + // ACE_TRACE ("ACE_OS::localtime_r"); #if defined (ACE_HAS_REENTRANT_FUNCTIONS) # if defined (DIGITAL_UNIX) ACE_OSCALL_RETURN (::_Pgmtime_r (t, res), struct tm *, 0); @@ -8099,7 +7926,7 @@ ACE_INLINE char * ACE_OS::asctime (const struct tm *t) { #if !defined (ACE_HAS_WINCE) && !defined(ACE_PSOS) || defined (ACE_PSOS_HAS_TIME) - ACE_TRACE ("ACE_OS::asctime"); + // ACE_TRACE ("ACE_OS::asctime"); ACE_OSCALL_RETURN (::asctime (t), char *, 0); #else // @@ WinCE doesn't have gmtime also. @@ -8111,7 +7938,7 @@ ACE_OS::asctime (const struct tm *t) ACE_INLINE char * ACE_OS::asctime_r (const struct tm *t, char *buf, int buflen) { - ACE_TRACE ("ACE_OS::asctime_r"); + // ACE_TRACE ("ACE_OS::asctime_r"); #if defined (ACE_HAS_REENTRANT_FUNCTIONS) # if defined (ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R) char *result; @@ -8165,7 +7992,7 @@ ACE_OS::flock_init (ACE_OS::ace_flock_t *lock, LPCTSTR name, mode_t perms) { - ACE_TRACE ("ACE_OS::flock_init"); + // ACE_TRACE ("ACE_OS::flock_init"); #if defined (CHORUS) lock->lockname_ = 0; // Let's see if it already exists. @@ -8270,7 +8097,7 @@ ACE_OS::flock_wrlock (ACE_OS::ace_flock_t *lock, off_t start, off_t len) { - ACE_TRACE ("ACE_OS::flock_wrlock"); + // ACE_TRACE ("ACE_OS::flock_wrlock"); #if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) ACE_OS::adjust_flock_params (lock, whence, start, len); # if defined (ACE_HAS_WINNT4) && (ACE_HAS_WINNT4 != 0) @@ -8306,9 +8133,7 @@ ACE_OS::flock_wrlock (ACE_OS::ace_flock_t *lock, lock->lock_.l_len = len; lock->lock_.l_type = F_WRLCK; // set write lock // block, if no access - ACE_OSCALL_RETURN (ACE_OS::fcntl (lock->handle_, F_SETLKW, - ACE_reinterpret_cast (long, &lock->lock_)), - int, -1); + ACE_OSCALL_RETURN (::fcntl (lock->handle_, F_SETLKW, &lock->lock_), int, -1); #endif /* ACE_WIN32 */ } @@ -8318,7 +8143,7 @@ ACE_OS::flock_rdlock (ACE_OS::ace_flock_t *lock, off_t start, off_t len) { - ACE_TRACE ("ACE_OS::flock_rdlock"); + // ACE_TRACE ("ACE_OS::flock_rdlock"); #if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) ACE_OS::adjust_flock_params (lock, whence, start, len); # if defined (ACE_HAS_WINNT4) && (ACE_HAS_WINNT4 != 0) @@ -8354,9 +8179,7 @@ ACE_OS::flock_rdlock (ACE_OS::ace_flock_t *lock, lock->lock_.l_len = len; lock->lock_.l_type = F_RDLCK; // set read lock // block, if no access - ACE_OSCALL_RETURN (ACE_OS::fcntl (lock->handle_, F_SETLKW, - ACE_reinterpret_cast (long, &lock->lock_)), - int, -1); + ACE_OSCALL_RETURN (::fcntl (lock->handle_, F_SETLKW, &lock->lock_), int, -1); #endif /* ACE_WIN32 */ } @@ -8366,7 +8189,7 @@ ACE_OS::flock_trywrlock (ACE_OS::ace_flock_t *lock, off_t start, off_t len) { - ACE_TRACE ("ACE_OS::ace_flock_trywrlock"); + // ACE_TRACE ("ACE_OS::ace_flock_trywrlock"); #if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) # if defined (ACE_HAS_WINNT4) && (ACE_HAS_WINNT4 != 0) ACE_OS::adjust_flock_params (lock, whence, start, len); @@ -8403,9 +8226,9 @@ ACE_OS::flock_trywrlock (ACE_OS::ace_flock_t *lock, int result = 0; // Does not block, if no access, returns -1 and set errno = EBUSY; - ACE_OSCALL (ACE_OS::fcntl (lock->handle_, - F_SETLK, - ACE_reinterpret_cast (long, &lock->lock_)), + ACE_OSCALL (::fcntl (lock->handle_, + F_SETLK, + &lock->lock_), int, -1, result); # if ! defined (ACE_PSOS) @@ -8423,7 +8246,7 @@ ACE_OS::flock_tryrdlock (ACE_OS::ace_flock_t *lock, off_t start, off_t len) { - ACE_TRACE ("ACE_OS::ace_flock_tryrdlock"); + // ACE_TRACE ("ACE_OS::ace_flock_tryrdlock"); #if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) # if defined (ACE_HAS_WINNT4) && (ACE_HAS_WINNT4 != 0) ACE_OS::adjust_flock_params (lock, whence, start, len); @@ -8460,9 +8283,7 @@ ACE_OS::flock_tryrdlock (ACE_OS::ace_flock_t *lock, int result = 0; // Does not block, if no access, returns -1 and set errno = EBUSY; - ACE_OSCALL (ACE_OS::fcntl (lock->handle_, F_SETLK, - ACE_reinterpret_cast (long, &lock->lock_)), - int, -1, result); + ACE_OSCALL (::fcntl (lock->handle_, F_SETLK, &lock->lock_), int, -1, result); # if ! defined (ACE_PSOS) if (result == -1 && (errno == EACCES || errno == EAGAIN)) @@ -8479,7 +8300,7 @@ ACE_OS::flock_unlock (ACE_OS::ace_flock_t *lock, off_t start, off_t len) { - ACE_TRACE ("ACE_OS::flock_unlock"); + // ACE_TRACE ("ACE_OS::flock_unlock"); #if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) ACE_OS::adjust_flock_params (lock, whence, start, len); ACE_WIN32CALL_RETURN (ACE_ADAPT_RETVAL (::UnlockFile (lock->handle_, @@ -8506,16 +8327,14 @@ ACE_OS::flock_unlock (ACE_OS::ace_flock_t *lock, lock->lock_.l_type = F_UNLCK; // Unlock file. // release lock - ACE_OSCALL_RETURN (ACE_OS::fcntl (lock->handle_, F_SETLK, - ACE_reinterpret_cast (long, &lock->lock_)), - int, -1); + ACE_OSCALL_RETURN (::fcntl (lock->handle_, F_SETLK, &lock->lock_), int, -1); #endif /* ACE_WIN32 */ } ACE_INLINE int ACE_OS::flock_destroy (ACE_OS::ace_flock_t *lock) { - ACE_TRACE ("ACE_OS::flock_destroy"); + // ACE_TRACE ("ACE_OS::flock_destroy"); if (lock->handle_ != ACE_INVALID_HANDLE) { ACE_OS::flock_unlock (lock); @@ -8557,7 +8376,7 @@ ACE_INLINE int ACE_OS::execv (const char *path, char *const argv[]) { - ACE_TRACE ("ACE_OS::execv"); + // ACE_TRACE ("ACE_OS::execv"); #if defined (ACE_LACKS_EXEC) ACE_UNUSED_ARG (path); ACE_UNUSED_ARG (argv); @@ -8587,7 +8406,7 @@ ACE_OS::execve (const char *path, char *const argv[], char *const envp[]) { - ACE_TRACE ("ACE_OS::execve"); + // ACE_TRACE ("ACE_OS::execve"); #if defined (ACE_LACKS_EXEC) ACE_UNUSED_ARG (path); ACE_UNUSED_ARG (argv); @@ -8617,7 +8436,7 @@ ACE_INLINE int ACE_OS::execvp (const char *file, char *const argv[]) { - ACE_TRACE ("ACE_OS::execvp"); + // ACE_TRACE ("ACE_OS::execvp"); #if defined (ACE_LACKS_EXEC) ACE_UNUSED_ARG (file); ACE_UNUSED_ARG (argv); @@ -8646,7 +8465,7 @@ ACE_OS::execvp (const char *file, ACE_INLINE FILE * ACE_OS::fdopen (ACE_HANDLE handle, const char *mode) { - ACE_TRACE ("ACE_OS::fdopen"); + // ACE_TRACE ("ACE_OS::fdopen"); # if defined (ACE_WIN32) // kernel file handle -> FILE* conversion... // Options: _O_APPEND, _O_RDONLY and _O_TEXT are lost @@ -8690,7 +8509,7 @@ ACE_OS::fdopen (ACE_HANDLE handle, const char *mode) ACE_INLINE int ACE_OS::ftruncate (ACE_HANDLE handle, off_t offset) { - ACE_TRACE ("ACE_OS::ftruncate"); + // ACE_TRACE ("ACE_OS::ftruncate"); #if defined (ACE_WIN32) if (::SetFilePointer (handle, offset, NULL, FILE_BEGIN) != (unsigned) -1) ACE_WIN32CALL_RETURN (ACE_ADAPT_RETVAL (::SetEndOfFile (handle), ace_result_), int, -1); @@ -8711,7 +8530,7 @@ ACE_OS::ftruncate (ACE_HANDLE handle, off_t offset) ACE_INLINE int ACE_OS::getrlimit (int resource, struct rlimit *rl) { - ACE_TRACE ("ACE_OS::getrlimit"); + // ACE_TRACE ("ACE_OS::getrlimit"); #if defined (ACE_LACKS_RLIMIT) ACE_UNUSED_ARG (resource); @@ -8730,7 +8549,7 @@ ACE_OS::getrlimit (int resource, struct rlimit *rl) ACE_INLINE int ACE_OS::setrlimit (int resource, ACE_SETRLIMIT_TYPE *rl) { - ACE_TRACE ("ACE_OS::setrlimit"); + // ACE_TRACE ("ACE_OS::setrlimit"); #if defined (ACE_LACKS_RLIMIT) ACE_UNUSED_ARG (resource); @@ -8750,7 +8569,7 @@ ACE_INLINE int ACE_OS::socketpair (int domain, int type, int protocol, ACE_HANDLE sv[2]) { - ACE_TRACE ("ACE_OS::socketpair"); + // ACE_TRACE ("ACE_OS::socketpair"); #if defined (ACE_WIN32) || defined (ACE_LACKS_SOCKETPAIR) ACE_UNUSED_ARG (domain); ACE_UNUSED_ARG (type); @@ -8767,7 +8586,7 @@ ACE_OS::socketpair (int domain, int type, ACE_INLINE ACE_HANDLE ACE_OS::dup (ACE_HANDLE handle) { - ACE_TRACE ("ACE_OS::dup"); + // ACE_TRACE ("ACE_OS::dup"); #if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) ACE_HANDLE new_fd; if (::DuplicateHandle(::GetCurrentProcess (), @@ -8795,7 +8614,7 @@ ACE_OS::dup (ACE_HANDLE handle) ACE_INLINE int ACE_OS::dup2 (ACE_HANDLE oldhandle, ACE_HANDLE newhandle) { - ACE_TRACE ("ACE_OS::dup2"); + // ACE_TRACE ("ACE_OS::dup2"); #if defined (ACE_WIN32) || defined (VXWORKS) || defined (ACE_PSOS) // msvcrt has _dup2 ?! ACE_UNUSED_ARG (oldhandle); @@ -8814,7 +8633,7 @@ ACE_OS::dup2 (ACE_HANDLE oldhandle, ACE_HANDLE newhandle) ACE_INLINE ACE_hrtime_t ACE_OS::gethrtime (const ACE_HRTimer_Op op) { - ACE_TRACE ("ACE_OS::gethrtime"); + // ACE_TRACE ("ACE_OS::gethrtime"); #if defined (ACE_HAS_HI_RES_TIMER) ACE_UNUSED_ARG (op); return ::gethrtime (); @@ -8951,7 +8770,7 @@ ACE_OS::gethrtime (const ACE_HRTimer_Op op) ACE_INLINE int ACE_OS::fdetach (const char *file) { - ACE_TRACE ("ACE_OS::fdetach"); + // ACE_TRACE ("ACE_OS::fdetach"); #if defined (ACE_HAS_STREAM_PIPES) ACE_OSCALL_RETURN (::fdetach (file), int, -1); #else @@ -8964,7 +8783,7 @@ ACE_OS::fdetach (const char *file) ACE_INLINE int ACE_OS::fattach (int handle, const char *path) { - ACE_TRACE ("ACE_OS::fattach"); + // ACE_TRACE ("ACE_OS::fattach"); #if defined (ACE_HAS_STREAM_PIPES) ACE_OSCALL_RETURN (::fattach (handle, path), int, -1); #else @@ -8978,7 +8797,7 @@ ACE_OS::fattach (int handle, const char *path) ACE_INLINE pid_t ACE_OS::fork (void) { - ACE_TRACE ("ACE_OS::fork"); + // ACE_TRACE ("ACE_OS::fork"); #if defined (ACE_LACKS_FORK) ACE_NOTSUP_RETURN (pid_t (-1)); #else @@ -8989,7 +8808,7 @@ ACE_OS::fork (void) ACE_INLINE int ACE_OS::getpagesize (void) { - ACE_TRACE ("ACE_OS::getpagesize"); + // ACE_TRACE ("ACE_OS::getpid"); #if defined (ACE_WIN32) SYSTEM_INFO sys_info; ::GetSystemInfo (&sys_info); @@ -9035,12 +8854,12 @@ ACE_OS::getpid (void) ACE_INLINE pid_t ACE_OS::getpgid (pid_t pid) { - ACE_TRACE ("ACE_OS::getpgid"); + // ACE_TRACE ("ACE_OS::getpgid"); #if defined (ACE_LACKS_GETPGID) ACE_UNUSED_ARG (pid); ACE_NOTSUP_RETURN (-1); #elif defined (VXWORKS) || defined (ACE_PSOS) - // getpgid() is not supported, only one process anyway. + // getpid() is not supported, only one process anyway. ACE_UNUSED_ARG (pid); return 0; #else @@ -9051,7 +8870,7 @@ ACE_OS::getpgid (pid_t pid) ACE_INLINE off_t ACE_OS::lseek (ACE_HANDLE handle, off_t offset, int whence) { - ACE_TRACE ("ACE_OS::lseek"); + // ACE_TRACE ("ACE_OS::lseek"); #if defined (ACE_WIN32) # if SEEK_SET != FILE_BEGIN || SEEK_CUR != FILE_CURRENT || SEEK_END != FILE_END @@ -9139,7 +8958,7 @@ ACE_OS::fseek (FILE *fp, long offset, int whence) ACE_INLINE pid_t ACE_OS::wait (int *stat_loc) { - ACE_TRACE ("ACE_OS::wait"); + // ACE_TRACE ("ACE_OS::wait"); #if defined (ACE_WIN32) || defined (VXWORKS) || defined(CHORUS) || defined (ACE_PSOS) ACE_UNUSED_ARG (stat_loc); @@ -9156,7 +8975,7 @@ ACE_OS::wait (int *stat_loc) ACE_INLINE pid_t ACE_OS::waitpid (pid_t pid, int *stat_loc, int options) { - ACE_TRACE ("ACE_OS::waitpid"); + // ACE_TRACE ("ACE_OS::waitpid"); #if defined (ACE_WIN32) || defined (VXWORKS) || defined (ACE_PSOS) ACE_UNUSED_ARG (pid); ACE_UNUSED_ARG (stat_loc); @@ -9174,7 +8993,7 @@ ACE_OS::waitpid (pid_t pid, int *stat_loc, int options) ACE_INLINE int ACE_OS::ioctl (ACE_HANDLE handle, int cmd, void *val) { - ACE_TRACE ("ACE_OS::ioctl"); + // ACE_TRACE ("ACE_OS::ioctl"); #if defined (ACE_WIN32) ACE_SOCKET sock = (ACE_SOCKET) handle; @@ -9198,7 +9017,7 @@ ACE_OS::ioctl (ACE_HANDLE handle, int cmd, void *val) ACE_INLINE int ACE_OS::kill (pid_t pid, int signum) { - ACE_TRACE ("ACE_OS::kill"); + // ACE_TRACE ("ACE_OS::kill"); #if defined (ACE_WIN32) || defined (CHORUS) || defined(ACE_PSOS) ACE_UNUSED_ARG (pid); ACE_UNUSED_ARG (signum); @@ -9213,7 +9032,7 @@ ACE_OS::sigaction (int signum, const struct sigaction *nsa, struct sigaction *osa) { - ACE_TRACE ("ACE_OS::sigaction"); + // ACE_TRACE ("ACE_OS::sigaction"); if (signum == 0) return 0; #if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) @@ -9246,7 +9065,7 @@ ACE_OS::sigaction (int signum, ACE_INLINE char * ACE_OS::getcwd (char *buf, size_t size) { - ACE_TRACE ("ACE_OS::getcwd"); + // ACE_TRACE ("ACE_OS::getcwd"); # if defined (ACE_WIN32) return ::_getcwd (buf, size); # elif defined (ACE_PSOS_LACKS_PHILE) @@ -9343,7 +9162,7 @@ ACE_OS::getcwd (char *buf, size_t size) ACE_INLINE int ACE_OS::sleep (u_int seconds) { - ACE_TRACE ("ACE_OS::sleep"); + // ACE_TRACE ("ACE_OS::sleep"); #if defined (ACE_WIN32) ::Sleep (seconds * ACE_ONE_SECOND_IN_MSECS); return 0; @@ -9376,20 +9195,22 @@ ACE_OS::sleep (u_int seconds) ACE_INLINE int ACE_OS::sleep (const ACE_Time_Value &tv) { - ACE_TRACE ("ACE_OS::sleep"); + // ACE_TRACE ("ACE_OS::sleep"); #if defined (ACE_WIN32) ::Sleep (tv.msec ()); return 0; +#elif defined (ACE_HAS_POLL) && !defined (ACE_POLL_IS_BROKEN) + ACE_OSCALL_RETURN (::poll (0, 0, tv.msec ()), int, -1); #else -# if defined (ACE_HAS_NONCONST_SELECT_TIMEVAL) - // Copy the timeval, because this platform doesn't declare the timeval - // as a pointer to const. +# if defined (linux) + // Copy the timeval, because Linux modifies it! It's strange that + // the compiler doesn't warn about passing the address of a const as + // a non-const argument. timeval tv_copy = tv; ACE_OSCALL_RETURN (::select (0, 0, 0, 0, &tv_copy), int, -1); -# else /* ! ACE_HAS_NONCONST_SELECT_TIMEVAL */ - const timeval *tvp = tv; - ACE_OSCALL_RETURN (::select (0, 0, 0, 0, tvp), int, -1); -# endif /* ACE_HAS_NONCONST_SELECT_TIMEVAL */ +# else /* ! linux */ + ACE_OSCALL_RETURN (::select (0, 0, 0, 0, (timeval *) &tv), int, -1); +# endif /* ! linux */ #endif /* ACE_WIN32 */ } @@ -9397,7 +9218,7 @@ ACE_INLINE int ACE_OS::nanosleep (const struct timespec *requested, struct timespec *remaining) { - ACE_TRACE ("ACE_OS::nanosleep"); + // ACE_TRACE ("ACE_OS::nanosleep"); #if defined (ACE_HAS_CLOCK_GETTIME) // ::nanosleep () is POSIX 1003.1b. So is ::clock_gettime (). So, // if ACE_HAS_CLOCK_GETTIME is defined, then ::nanosleep () should @@ -9480,7 +9301,7 @@ ACE_OS::mkdir (const char *path, mode_t mode) ACE_INLINE char * ACE_OS::getenv (const char *symbol) { - ACE_TRACE ("ACE_OS::getenv"); + // ACE_TRACE ("ACE_OS::getenv"); #if !defined (ACE_HAS_WINCE) && !defined(ACE_PSOS) ACE_OSCALL_RETURN (::getenv (symbol), char *, 0); #else @@ -9493,7 +9314,7 @@ ACE_OS::getenv (const char *symbol) ACE_INLINE int ACE_OS::putenv (const char *string) { - ACE_TRACE ("ACE_OS::putenv"); + // ACE_TRACE ("ACE_OS::putenv"); // VxWorks declares ::putenv with a non-const arg. #if !defined (ACE_HAS_WINCE) && !defined (ACE_PSOS) ACE_OSCALL_RETURN (::putenv ((char *) string), int, -1); @@ -9545,7 +9366,6 @@ ACE_INLINE wchar_t * ACE_OS::strcpy (wchar_t *s, const wchar_t *t) { // ACE_TRACE ("ACE_OS::strcpy"); - # if defined (ACE_HAS_UNICODE) return ::wcscpy (s, t); # else @@ -9565,7 +9385,7 @@ ACE_OS::strcpy (wchar_t *s, const wchar_t *t) ACE_INLINE int ACE_OS::strcmp (const wchar_t *s, const wchar_t *t) { - ACE_TRACE ("ACE_OS::strcmp"); + // ACE_TRACE ("ACE_OS::strcmp"); # if defined (ACE_HAS_UNICODE) return ::wcscmp (s, t); # else @@ -9603,7 +9423,6 @@ ACE_INLINE ACE_USHORT16 * ACE_OS::strcpy (ACE_USHORT16 *s, const ACE_USHORT16 *t) { // ACE_TRACE ("ACE_OS::strcpy"); - ACE_USHORT16 *result = s; while ((*s++ = *t++) != 0) @@ -9615,8 +9434,7 @@ ACE_OS::strcpy (ACE_USHORT16 *s, const ACE_USHORT16 *t) ACE_INLINE int ACE_OS::strcmp (const ACE_USHORT16 *s, const ACE_USHORT16 *t) { - ACE_TRACE ("ACE_OS::strcmp"); - + // ACE_TRACE ("ACE_OS::strcpy"); while (*s != 0 && *t != 0 && *s == *t) @@ -9662,7 +9480,7 @@ ACE_OS::atoi (const wchar_t *s) ACE_INLINE wchar_t * ACE_OS::strecpy (wchar_t *s, const wchar_t *t) { - ACE_TRACE ("ACE_OS::strecpy"); + // ACE_TRACE ("ACE_OS::strecpy"); register wchar_t *dscan = s; register const wchar_t *sscan = t; @@ -9675,28 +9493,28 @@ ACE_OS::strecpy (wchar_t *s, const wchar_t *t) ACE_INLINE wchar_t * ACE_OS::strpbrk (wchar_t *s, const wchar_t *t) { - ACE_TRACE ("ACE_OS::wcspbrk"); + // ACE_TRACE ("ACE_OS::wcspbrk"); return ::wcspbrk (s, t); } ACE_INLINE const wchar_t * ACE_OS::strpbrk (const wchar_t *s, const wchar_t *t) { - ACE_TRACE ("ACE_OS::wcspbrk"); + // ACE_TRACE ("ACE_OS::wcspbrk"); return ::wcspbrk (s, t); } ACE_INLINE wchar_t * ACE_OS::strcat (wchar_t *s, const wchar_t *t) { - ACE_TRACE ("ACE_OS::strcat"); + // ACE_TRACE ("ACE_OS::strcat"); return ::wcscat (s, t); } ACE_INLINE const wchar_t * ACE_OS::strchr (const wchar_t *s, wint_t c) { - ACE_TRACE ("ACE_OS::strchr"); + // ACE_TRACE ("ACE_OS::strchr"); return (const wchar_t *) ::wcschr (s, c); } @@ -9713,7 +9531,7 @@ ACE_OS::strnchr (const wchar_t *s, wint_t c, size_t len) ACE_INLINE const wchar_t * ACE_OS::strrchr (const wchar_t *s, wint_t c) { - ACE_TRACE ("ACE_OS::strrchr"); + // ACE_TRACE ("ACE_OS::strrchr"); # if !defined (ACE_HAS_WINCE) return (const wchar_t *) ::wcsrchr (s, c); # else @@ -9732,7 +9550,7 @@ ACE_OS::strrchr (const wchar_t *s, wint_t c) ACE_INLINE wchar_t * ACE_OS::strchr (wchar_t *s, wint_t c) { - ACE_TRACE ("ACE_OS::strchr"); + // ACE_TRACE ("ACE_OS::strchr"); return ::wcschr (s, c); } @@ -9745,7 +9563,7 @@ ACE_OS::strnchr (wchar_t *s, wint_t c, size_t len) ACE_INLINE wchar_t * ACE_OS::strrchr (wchar_t *s, wint_t c) { - ACE_TRACE ("ACE_OS::strrchr"); + // ACE_TRACE ("ACE_OS::strrchr"); # if !defined (ACE_HAS_WINCE) return (wchar_t *) ::wcsrchr (s, c); # else @@ -9764,14 +9582,14 @@ ACE_OS::strrchr (wchar_t *s, wint_t c) ACE_INLINE wint_t ACE_OS::to_lower (wint_t c) { - ACE_TRACE ("ACE_OS::to_lower"); + // ACE_TRACE ("ACE_OS::to_lower"); return ::towlower (c); } ACE_INLINE int ACE_OS::strcasecmp (const wchar_t *s, const wchar_t *t) { - ACE_TRACE ("ACE_OS::strcasecmp"); + // ACE_TRACE ("ACE_OS::strcasecmp"); # if !defined (ACE_WIN32) // Handles most of what the BSD version does, but does not indicate @@ -9800,7 +9618,7 @@ ACE_OS::strcasecmp (const wchar_t *s, const wchar_t *t) ACE_INLINE int ACE_OS::strncasecmp (const wchar_t *s, const wchar_t *t, size_t len) { - ACE_TRACE ("ACE_OS::strcasecmp"); + // ACE_TRACE ("ACE_OS::strcasecmp"); # if !defined (ACE_WIN32) // Handles most of what the BSD version does, but does not indicate @@ -9830,35 +9648,35 @@ ACE_OS::strncasecmp (const wchar_t *s, const wchar_t *t, size_t len) ACE_INLINE int ACE_OS::strncmp (const wchar_t *s, const wchar_t *t, size_t len) { - ACE_TRACE ("ACE_OS::strncmp"); + // ACE_TRACE ("ACE_OS::strncmp"); return ::wcsncmp (s, t, len); } ACE_INLINE wchar_t * ACE_OS::strncpy (wchar_t *s, const wchar_t *t, size_t len) { - ACE_TRACE ("ACE_OS::strncpy"); + // ACE_TRACE ("ACE_OS::strncpy"); return ::wcsncpy (s, t, len); } ACE_INLINE wchar_t * ACE_OS::strncat (wchar_t *s, const wchar_t *t, size_t len) { - ACE_TRACE ("ACE_OS::strncat"); + // ACE_TRACE ("ACE_OS::strncat"); return ::wcsncat (s, t, len); } ACE_INLINE wchar_t * ACE_OS::strtok (wchar_t *s, const wchar_t *tokens) { - ACE_TRACE ("ACE_OS::strtok"); + // ACE_TRACE ("ACE_OS::strtok"); return ::wcstok (s, tokens); } ACE_INLINE long ACE_OS::strtol (const wchar_t *s, wchar_t **ptr, int base) { - ACE_TRACE ("ACE_OS::strtol"); + // ACE_TRACE ("ACE_OS::strtol"); return ::wcstol (s, ptr, base); } @@ -9873,14 +9691,14 @@ ACE_OS::ace_isspace (wchar_t c) ACE_INLINE const wchar_t * ACE_OS::strstr (const wchar_t *s, const wchar_t *t) { - ACE_TRACE ("ACE_OS::strstr"); + // ACE_TRACE ("ACE_OS::strstr"); return (const wchar_t *) ::wcsstr (s, t); } ACE_INLINE wchar_t * ACE_OS::strstr (wchar_t *s, const wchar_t *t) { - ACE_TRACE ("ACE_OS::strstr"); + // ACE_TRACE ("ACE_OS::strstr"); return ::wcsstr (s, t); } @@ -9917,7 +9735,6 @@ ACE_INLINE wchar_t * ACE_OS::strdup (const wchar_t *s) { // ACE_TRACE ("ACE_OS::strdup"); - # if defined (__BORLANDC__) wchar_t *buffer = (wchar_t *) malloc ((ACE_OS::strlen (s) + 1) * sizeof (wchar_t)); return ::wcscpy (buffer, s); @@ -9936,7 +9753,7 @@ ACE_INLINE int ACE_OS::hostname (wchar_t *name, size_t maxnamelen) { # if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::hostname"); + // ACE_TRACE ("ACE_OS::hostname"); ACE_WIN32CALL_RETURN (ACE_ADAPT_RETVAL (::GetComputerNameW (name, LPDWORD (&maxnamelen)), ace_result_), int, -1); # else @@ -9949,7 +9766,7 @@ ACE_OS::hostname (wchar_t *name, size_t maxnamelen) ACE_INLINE int ACE_OS::unlink (const wchar_t *path) { - ACE_TRACE ("ACE_OS::unlink"); + // ACE_TRACE ("ACE_OS::unlink"); # if !defined (ACE_HAS_WINCE) ACE_OSCALL_RETURN (::_wunlink (path), int, -1); # else @@ -9962,7 +9779,7 @@ ACE_OS::unlink (const wchar_t *path) ACE_INLINE ACE_SHLIB_HANDLE ACE_OS::dlopen (ACE_WIDE_DL_TYPE filename, int mode) { - ACE_TRACE ("ACE_OS::dlopen"); + // ACE_TRACE ("ACE_OS::dlopen"); ACE_UNUSED_ARG (mode); ACE_WIN32CALL_RETURN (::LoadLibraryW (filename), ACE_SHLIB_HANDLE, 0); @@ -9972,7 +9789,7 @@ ACE_INLINE wchar_t * ACE_OS::getenv (const wchar_t *symbol) { # if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::getenv"); + // ACE_TRACE ("ACE_OS::getenv"); ACE_OSCALL_RETURN (::_wgetenv (symbol), wchar_t *, 0); # else ACE_UNUSED_ARG (symbol); @@ -9984,7 +9801,7 @@ ACE_INLINE int ACE_OS::rename (const wchar_t *old_name, const wchar_t *new_name) { # if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::rename"); + // ACE_TRACE ("ACE_OS::rename"); ACE_OSCALL_RETURN (::_wrename (old_name, new_name), int, -1); # else // @@ There should be a Win32 API that can do this. @@ -9998,7 +9815,7 @@ ACE_INLINE int ACE_OS::access (const wchar_t *path, int amode) { # if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::access"); + // ACE_TRACE ("ACE_OS::access"); ACE_OSCALL_RETURN (::_waccess (path, amode), int, -1); # else // @@ There should be a Win32 API that can do this. @@ -10021,7 +9838,7 @@ ACE_OS::fopen (const wchar_t *filename, const wchar_t *mode) ACE_INLINE FILE * ACE_OS::fdopen (ACE_HANDLE handle, const wchar_t *mode) { - ACE_TRACE ("ACE_OS::fdopen"); + // ACE_TRACE ("ACE_OS::fdopen"); # if !defined (ACE_HAS_WINCE) // kernel file handle -> FILE* conversion... // Options: _O_APPEND, _O_RDONLY and _O_TEXT are lost @@ -10061,7 +9878,7 @@ ACE_OS::fdopen (ACE_HANDLE handle, const wchar_t *mode) ACE_INLINE int ACE_OS::stat (const wchar_t *file, struct stat *stp) { - ACE_TRACE ("ACE_OS::stat"); + // ACE_TRACE ("ACE_OS::stat"); # if defined (ACE_HAS_WINCE) WIN32_FIND_DATA fdata; HANDLE fhandle; @@ -10094,7 +9911,7 @@ ACE_OS::stat (const wchar_t *file, struct stat *stp) ACE_INLINE void ACE_OS::perror (const wchar_t *s) { - ACE_TRACE ("ACE_OS::perror"); + // ACE_TRACE ("ACE_OS::perror"); # if !defined (ACE_HAS_WINCE) ::_wperror (s); # else @@ -10121,7 +9938,7 @@ ACE_OS::system (const wchar_t *command) ACE_INLINE wchar_t * ACE_OS::mktemp (wchar_t *s) { - ACE_TRACE ("ACE_OS::mktemp"); + // ACE_TRACE ("ACE_OS::mktemp"); return ::_wmktemp (s); } # endif /* !ACE_LACKS_MKTEMP */ @@ -10129,7 +9946,7 @@ ACE_OS::mktemp (wchar_t *s) ACE_INLINE int ACE_OS::mkdir (const wchar_t *path, mode_t mode) { - ACE_TRACE ("ACE_OS::mkdir"); + // ACE_TRACE ("ACE_OS::mkdir"); # if !defined (ACE_HAS_WINCE) ACE_UNUSED_ARG (mode); @@ -10144,7 +9961,7 @@ ACE_OS::mkdir (const wchar_t *path, mode_t mode) ACE_INLINE int ACE_OS::chdir (const wchar_t *path) { - ACE_TRACE ("ACE_OS::chdir"); + // ACE_TRACE ("ACE_OS::chdir"); # if defined (ACE_HAS_WINCE) ACE_UNUSED_ARG (path); ACE_NOTSUP_RETURN (-1); @@ -10156,7 +9973,7 @@ ACE_OS::chdir (const wchar_t *path) ACE_INLINE wchar_t * ACE_OS::getcwd (wchar_t *buf, size_t size) { - ACE_TRACE ("ACE_OS::getcwd"); + // ACE_TRACE ("ACE_OS::getcwd"); # if defined (ACE_HAS_WINCE) ACE_UNUSED_ARG (buf); ACE_UNUSED_ARG (size); @@ -10180,7 +9997,7 @@ ACE_cond_t::waiters (void) const ACE_INLINE int ACE_OS::thr_continue (const ACE_Thread_ID &thr_id) { - ACE_TRACE ("ACE_OS::thr_continue"); + // ACE_TRACE ("ACE_OS::thr_continue"); return ACE_OS::thr_continue (thr_id.id ()); } @@ -10193,7 +10010,7 @@ ACE_OS::thr_create (ACE_THR_FUNC func, void *stack, size_t stacksize); { - ACE_TRACE ("ACE_OS::thr_create"); + // ACE_TRACE ("ACE_OS::thr_create"); ACE_thread_t thread_id; ACE_hthread_t thread_handle; @@ -10213,7 +10030,7 @@ ACE_OS::thr_create (ACE_THR_FUNC func, ACE_INLINE int ACE_OS::thr_getprio (const ACE_Thread_ID &thr_id, int &prio) { - ACE_TRACE ("ACE_OS::thr_getprio"); + // ACE_TRACE ("ACE_OS::thr_getprio"); return ACE_OS::thr_getprio (thr_id.handle (), prio); } @@ -10252,7 +10069,7 @@ ACE_OS::thr_self (void) ACE_INLINE int ACE_OS::thr_setprio (const ACE_Thread_ID &thr_id, int prio) { - ACE_TRACE ("ACE_OS::thr_setprio"); + // ACE_TRACE ("ACE_OS::thr_setprio"); return ACE_OS::thr_setprio (thr_id.handle (), prio); } @@ -10267,7 +10084,7 @@ ACE_OS::thr_suspend (const ACE_Thread_ID &thr_id) ACE_INLINE int ACE_OS::sigaddset (sigset_t *s, int signum) { - ACE_TRACE ("ACE_OS::sigaddset"); + // ACE_TRACE ("ACE_OS::sigaddset"); #if defined (ACE_LACKS_SIGSET) || defined (ACE_LACKS_SIGSET_DEFINITIONS) if (s == NULL) { errno = EFAULT ; @@ -10424,26 +10241,10 @@ ACE_OS::sigprocmask (int how, const sigset_t *nsp, sigset_t *osp) #endif /* ACE_LACKS_SIGSET || ACE_LACKS_SIGSET_DEFINITIONS */ } -ACE_INLINE int -ACE_OS::pthread_sigmask (int how, const sigset_t *nsp, sigset_t *osp) -{ -#if defined (ACE_HAS_PTHREADS_STD) && !defined (ACE_LACKS_PTHREAD_SIGMASK) - ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::pthread_sigmask (how, nsp, osp), - ace_result_), - int, - -1); -#else /* !ACE_HAS_PTHREADS_STD */ - ACE_UNUSED_ARG (how); - ACE_UNUSED_ARG (nsp); - ACE_UNUSED_ARG (osp); - ACE_NOTSUP_RETURN (-1); -#endif /* ACE_HAS_PTHREADS_STD */ -} - ACE_INLINE void * ACE_OS::sbrk (int brk) { - ACE_TRACE ("ACE_OS::sbrk"); + // ACE_TRACE ("ACE_OS::sbrk"); #if defined (ACE_LACKS_SBRK) ACE_UNUSED_ARG (brk); @@ -10456,7 +10257,7 @@ ACE_OS::sbrk (int brk) ACE_INLINE long ACE_OS_Thread_Descriptor::flags (void) const { - ACE_TRACE ("ACE_OS_Thread_Descriptor::flags"); + // ACE_TRACE ("ACE_OS_Thread_Descriptor::flags"); return flags_; } @@ -10810,7 +10611,7 @@ ACE_OS::qsort (void *base, ACE_INLINE int ACE_OS::setuid (uid_t uid) { - ACE_TRACE ("ACE_OS::setuid"); + // ACE_TRACE ("ACE_OS::setuid"); # if defined (VXWORKS) || defined (ACE_PSOS) // setuid() is not supported: just one user anyways return 0; @@ -10824,12 +10625,12 @@ ACE_OS::setuid (uid_t uid) ACE_INLINE uid_t ACE_OS::getuid (void) { - ACE_TRACE ("ACE_OS::getuid"); + // ACE_TRACE ("ACE_OS::getuid"); # if defined (VXWORKS) || defined (ACE_PSOS) // getuid() is not supported: just one user anyways return 0; # elif defined (ACE_WIN32) || defined(CHORUS) - ACE_TRACE ("ACE_OS::getuid"); + // ACE_TRACE ("ACE_OS::getuid"); ACE_NOTSUP_RETURN (ACE_static_cast (uid_t, -1)); #else ACE_OSCALL_RETURN (::getuid (), uid_t, (uid_t) -1); @@ -10844,7 +10645,7 @@ ACE_OS::isatty (ACE_HANDLE handle) return 0; # elif defined (ACE_WIN32) # if !defined (ACE_HAS_WINCE) - ACE_TRACE ("ACE_OS::isatty"); + // ACE_TRACE ("ACE_OS::isatty"); int fd = ::_open_osfhandle ((long) handle, 0); ACE_OSCALL_RETURN (::_isatty ((int) fd), int, -1); # else @@ -10852,7 +10653,7 @@ ACE_OS::isatty (ACE_HANDLE handle) return 0; # endif /* ACE_HAS_WINCE */ # else - ACE_TRACE ("ACE_OS::isatty"); + // ACE_TRACE ("ACE_OS::isatty"); ACE_OSCALL_RETURN (::isatty (handle), int, -1); # endif /* defined (ACE_LACKS_ISATTY) */ } diff --git a/ace/Object_Manager.cpp b/ace/Object_Manager.cpp index c6f5e15b430..ea451fa2add 100644 --- a/ace/Object_Manager.cpp +++ b/ace/Object_Manager.cpp @@ -38,6 +38,8 @@ ACE_RCSID(ace, Object_Manager, "$Id$") # define ACE_APPLICATION_PREALLOCATED_ARRAY_DELETIONS #endif /* ACE_APPLICATION_PREALLOCATED_ARRAY_DELETIONS */ +u_int ACE_Object_Manager::init_fini_count_ = 0; + // Singleton pointer. ACE_Object_Manager *ACE_Object_Manager::instance_ = 0; @@ -164,59 +166,47 @@ ACE_Object_Manager::shutting_down (void) return ACE_Object_Manager::instance_ ? instance_->shutting_down_i () : 1; } -// Initialize an ACE_Object_Manager. There can be instances of this object -// other than The Instance. This can happen if a user creates one for some -// reason. All objects set up their per-object information and managed -// objects, but only The Instance sets up the static preallocated objects and -// the (static) ACE_Service_Config signal handler. int ACE_Object_Manager::init (void) { + ++init_fini_count_; + if (starting_up_i ()) { // First, indicate that the ACE_Object_Manager instance is being // initialized. object_manager_state_ = OBJ_MAN_INITIALIZING; - // Only The Instance sets up with ACE_OS_Object_Manager and initializes - // the preallocated objects. - if (this == instance_) - { - // Make sure that the ACE_OS_Object_Manager has been created, - // and register with it for chained fini (). - ACE_OS_Object_Manager::instance ()->next_ = this; + // Make sure that the ACE_OS_Object_Manager has been created, + // and register with it for chained fini (). + ACE_OS_Object_Manager::instance ()->next_ = this; - // Construct the ACE_Service_Config's signal handler. - ACE_NEW_RETURN (ace_service_config_sig_handler_, - ACE_Sig_Adapter (&ACE_Service_Config::handle_signal), -1); - ACE_Service_Config::signal_handler (ace_service_config_sig_handler_); + // Construct the ACE_Service_Config's signal handler. + ACE_NEW_RETURN (ace_service_config_sig_handler_, + ACE_Sig_Adapter (&ACE_Service_Config::handle_signal), -1); + ACE_Service_Config::signal_handler (ace_service_config_sig_handler_); - // Allocate the preallocated (hard-coded) object instances. - ACE_PREALLOCATE_OBJECT (ACE_SYNCH_RW_MUTEX, ACE_FILECACHE_LOCK) + // Allocate the preallocated (hard-coded) object instances. + ACE_PREALLOCATE_OBJECT (ACE_SYNCH_RW_MUTEX, ACE_FILECACHE_LOCK) # if defined (ACE_HAS_THREADS) - ACE_PREALLOCATE_OBJECT (ACE_Recursive_Thread_Mutex, - ACE_STATIC_OBJECT_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_Recursive_Thread_Mutex, + ACE_STATIC_OBJECT_LOCK) # endif /* ACE_HAS_THREADS */ # if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, - ACE_LOG_MSG_INSTANCE_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, - ACE_MT_CORBA_HANDLER_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, ACE_DUMP_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_Recursive_Thread_Mutex, - ACE_SIG_HANDLER_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_Null_Mutex, ACE_SINGLETON_NULL_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_Recursive_Thread_Mutex, - ACE_SINGLETON_RECURSIVE_THREAD_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, ACE_THREAD_EXIT_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_TOKEN_CONST::MUTEX, - ACE_TOKEN_MANAGER_CREATION_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_TOKEN_CONST::MUTEX, - ACE_TOKEN_INVARIANTS_CREATION_LOCK) - ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, - ACE_PROACTOR_EVENT_LOOP_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, ACE_LOG_MSG_INSTANCE_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, ACE_MT_CORBA_HANDLER_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, ACE_DUMP_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_Recursive_Thread_Mutex, + ACE_SIG_HANDLER_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_Null_Mutex, ACE_SINGLETON_NULL_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_Recursive_Thread_Mutex, + ACE_SINGLETON_RECURSIVE_THREAD_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_Thread_Mutex, ACE_THREAD_EXIT_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_TOKEN_CONST::MUTEX, + ACE_TOKEN_MANAGER_CREATION_LOCK) + ACE_PREALLOCATE_OBJECT (ACE_TOKEN_CONST::MUTEX, + ACE_TOKEN_INVARIANTS_CREATION_LOCK) # endif /* ACE_MT_SAFE */ - } // Do this after the allocation of ACE_STATIC_OBJECT_LOCK. It // shouldn't matter, but just in case @@ -224,23 +214,19 @@ ACE_Object_Manager::init (void) ACE_NEW_RETURN (registered_objects_, ACE_Unbounded_Queue<ACE_Cleanup_Info>, -1); - if (this == instance_) - { - // Hooks for preallocated objects and arrays provided by application. - ACE_APPLICATION_PREALLOCATED_OBJECT_DEFINITIONS - ACE_APPLICATION_PREALLOCATED_ARRAY_DEFINITIONS + // Hooks for preallocated objects and arrays provided by application. + ACE_APPLICATION_PREALLOCATED_OBJECT_DEFINITIONS + ACE_APPLICATION_PREALLOCATED_ARRAY_DEFINITIONS # if defined (ACE_HAS_TSS_EMULATION) - // Initialize the main thread's TS storage. - ACE_TSS_Emulation::tss_open (ts_storage_); + // Initialize the main thread's TS storage. + ACE_TSS_Emulation::tss_open (ts_storage_); # endif /* ACE_HAS_TSS_EMULATION */ - ACE_NEW_RETURN (preallocations_, ACE_Object_Manager_Preallocations, - -1); + ACE_NEW_RETURN (preallocations_, ACE_Object_Manager_Preallocations, -1); - // Open the main thread's ACE_Log_Msg. - (void) ACE_LOG_MSG; - } + // Open the main thread's ACE_Log_Msg. + (void) ACE_LOG_MSG; ACE_NEW_RETURN (default_mask_, ACE_Sig_Set (1), -1); @@ -268,25 +254,21 @@ ACE_Object_Manager::ACE_Object_Manager (void) , singleton_recursive_lock_ (0) # endif /* ACE_MT_SAFE */ { - // If instance_ was not 0, then another ACE_Object_Manager has - // already been instantiated (it is likely to be one initialized by way - // of library/DLL loading). Let this one go through construction in - // case there really is a good reason for it (like, ACE is a static/archive - // library, and this one is the non-static instance (with - // ACE_HAS_NONSTATIC_OBJECT_MANAGER, or the user has a good reason for - // creating a separate one) but the original one will be the one retrieved - // from calls to ACE_Object_Manager::instance(). - - // Be sure that no further instances are created via instance (). - if (instance_ == 0) - instance_ = this; + // If Instance_ was not 0, then another ACE_Object_Manager has + // already been instantiated. Because this might be the non-static + // instance (with ACE_HAS_NONSTATIC_OBJECT_MANAGER), use it and leak + // the old one. We can't destroy it, because the application might + // be using some of its resources, via static constructors. + + // Store the address of the instance so that instance () doesn't + // allocate a new one when called. + instance_ = this; init (); } ACE_Object_Manager::~ACE_Object_Manager (void) { - dynamically_allocated_ = 0; // Don't delete this again in fini() fini (); } @@ -304,7 +286,9 @@ ACE_Object_Manager::instance (void) ACE_NEW_RETURN (instance_pointer, ACE_Object_Manager, 0); ACE_ASSERT (instance_pointer == instance_); +#if defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) instance_pointer->dynamically_allocated_ = 1; +#endif /* ACE_HAS_NONSTATIC_OBJECT_MANAGER */ return instance_pointer; } @@ -575,16 +559,19 @@ ACE_Object_Manager::get_singleton_lock (ACE_RW_Thread_Mutex *&lock) // NOTE: this function needs to appear _after_ the // get_singleton_lock () functions in order to compile with // g++ 2.7.2.3. -// -// Clean up an ACE_Object_Manager. There can be instances of this object -// other than The Instance. This can happen if (on Win32) the ACE DLL -// causes one to be created, or if a user creates one for some reason. -// Only The Instance cleans up the static preallocated objects. All objects -// clean up their per-object information and managed objects. int ACE_Object_Manager::fini (void) { - if (shutting_down_i ()) + if (init_fini_count_ > 0) + { + if (--init_fini_count_ > 0) + // Wait for remaining fini () calls. + return 1; + } + else + return -1; + + if (instance_ == 0 || shutting_down_i ()) // Too late. Or, maybe too early. Either fini () has already // been called, or init () was never called. return -1; @@ -592,13 +579,20 @@ ACE_Object_Manager::fini (void) // No mutex here. Only the main thread should destroy the singleton // ACE_Object_Manager instance. - // First, indicate that this ACE_Object_Manager instance is being + // First, indicate that the ACE_Object_Manager instance is being // shut down. object_manager_state_ = OBJ_MAN_SHUTTING_DOWN; + ACE_Trace::stop_tracing (); + + ACE_Cleanup_Info info; + + // Close and possibly delete all service instances in the Service + // Repository. + ACE_Service_Config::fini_svcs (); + // Call all registered cleanup hooks, in reverse order of // registration. - ACE_Cleanup_Info info; while (registered_objects_ && registered_objects_->dequeue_head (info) != -1) { @@ -609,72 +603,60 @@ ACE_Object_Manager::fini (void) (*info.cleanup_hook_) (info.object_, info.param_); } - if (this == instance_) - { - delete preallocations_; - preallocations_ = 0; - - ACE_Trace::stop_tracing (); - - // Close and possibly delete all service instances in the Service - // Repository. - ACE_Service_Config::fini_svcs (); + // Close the main thread's TSS, including its Log_Msg instance. + ACE_OS::cleanup_tss (1 /* main thread */); - // Close the main thread's TSS, including its Log_Msg instance. - ACE_OS::cleanup_tss (1 /* main thread */); + // + // Note: Do not access Log Msg after this since it is gone + // - // - // Note: Do not access Log Msg after this since it is gone - // + // Unlink all services in the Service Repository and close/delete + // all ACE library services and singletons. + ACE_Service_Config::close (); - // Unlink all services in the Service Repository and close/delete - // all ACE library services and singletons. - ACE_Service_Config::close (); + delete preallocations_; + preallocations_ = 0; - // Close the ACE_Allocator. - ACE_Allocator::close_singleton (); + // Close the ACE_Allocator. + ACE_Allocator::close_singleton (); #if ! defined (ACE_HAS_STATIC_PREALLOCATION) - // Hooks for deletion of preallocated objects and arrays provided by - // application. - ACE_APPLICATION_PREALLOCATED_ARRAY_DELETIONS - ACE_APPLICATION_PREALLOCATED_OBJECT_DELETIONS + // Hooks for deletion of preallocated objects and arrays provided by + // application. + ACE_APPLICATION_PREALLOCATED_ARRAY_DELETIONS + ACE_APPLICATION_PREALLOCATED_OBJECT_DELETIONS - // Cleanup the dynamically preallocated arrays. - // (none) + // Cleanup the dynamically preallocated arrays. + // (none) - // Cleanup the dynamically preallocated objects. - ACE_DELETE_PREALLOCATED_OBJECT (ACE_SYNCH_RW_MUTEX, ACE_FILECACHE_LOCK) + // Cleanup the dynamically preallocated objects. + ACE_DELETE_PREALLOCATED_OBJECT (ACE_SYNCH_RW_MUTEX, ACE_FILECACHE_LOCK) #if defined (ACE_HAS_THREADS) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Recursive_Thread_Mutex, - ACE_STATIC_OBJECT_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_Recursive_Thread_Mutex, + ACE_STATIC_OBJECT_LOCK) #endif /* ACE_HAS_THREADS */ # if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, - ACE_LOG_MSG_INSTANCE_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, - ACE_MT_CORBA_HANDLER_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, ACE_DUMP_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Recursive_Thread_Mutex, - ACE_SIG_HANDLER_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Null_Mutex, - ACE_SINGLETON_NULL_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Recursive_Thread_Mutex, - ACE_SINGLETON_RECURSIVE_THREAD_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, ACE_THREAD_EXIT_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_TOKEN_CONST::MUTEX, - ACE_TOKEN_MANAGER_CREATION_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_TOKEN_CONST::MUTEX, - ACE_TOKEN_INVARIANTS_CREATION_LOCK) - ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, - ACE_PROACTOR_EVENT_LOOP_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, + ACE_LOG_MSG_INSTANCE_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, + ACE_MT_CORBA_HANDLER_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, ACE_DUMP_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_Recursive_Thread_Mutex, + ACE_SIG_HANDLER_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_Null_Mutex, ACE_SINGLETON_NULL_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_Recursive_Thread_Mutex, + ACE_SINGLETON_RECURSIVE_THREAD_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_Thread_Mutex, ACE_THREAD_EXIT_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_TOKEN_CONST::MUTEX, + ACE_TOKEN_MANAGER_CREATION_LOCK) + ACE_DELETE_PREALLOCATED_OBJECT (ACE_TOKEN_CONST::MUTEX, + ACE_TOKEN_INVARIANTS_CREATION_LOCK) # endif /* ACE_MT_SAFE */ #endif /* ! ACE_HAS_STATIC_PREALLOCATION */ #if defined (ACE_HAS_THREADS) - ACE_Static_Object_Lock::cleanup_lock (); + ACE_Static_Object_Lock::cleanup_lock (); #endif /* ACE_HAS_THREADS */ - } delete default_mask_; default_mask_ = 0; @@ -696,20 +678,20 @@ ACE_Object_Manager::fini (void) singleton_recursive_lock_ = 0; #endif /* ACE_MT_SAFE */ - // Indicate that this ACE_Object_Manager instance has been shut down. + // Indicate that the ACE_Object_Manager instance has been shut down. object_manager_state_ = OBJ_MAN_SHUT_DOWN; // Then, ensure that the ACE_OS_Object_Manager gets shut down. - if (this == instance_ && ACE_OS_Object_Manager::instance_) + if (ACE_OS_Object_Manager::instance_) ACE_OS_Object_Manager::instance_->fini (); +#if defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) if (dynamically_allocated_) { - delete this; + delete instance_; + instance_ = 0; } - - if (this == instance_) - instance_ = 0; +#endif /* ACE_HAS_NONSTATIC_OBJECT_MANAGER */ return 0; } diff --git a/ace/Object_Manager.h b/ace/Object_Manager.h index 96bd39daf79..1030f8c86ec 100644 --- a/ace/Object_Manager.h +++ b/ace/Object_Manager.h @@ -256,7 +256,6 @@ public: ACE_THREAD_EXIT_LOCK, ACE_TOKEN_MANAGER_CREATION_LOCK, ACE_TOKEN_INVARIANTS_CREATION_LOCK, - ACE_PROACTOR_EVENT_LOOP_LOCK, #endif /* ACE_MT_SAFE */ // Hook for preallocated objects provided by application. @@ -359,6 +358,11 @@ public: ~ACE_Object_Manager (void); private: + static u_int init_fini_count_; + // Counter to match init ()/fini () calls. init () must increment + // it; fini () must decrement it. fini () then does nothing until + // it reaches 0. + static ACE_Object_Manager *instance_; // Singleton pointer. diff --git a/ace/POSIX_Asynch_IO.cpp b/ace/POSIX_Asynch_IO.cpp index 6c3683ed4fb..f789eb9cdec 100644 --- a/ace/POSIX_Asynch_IO.cpp +++ b/ace/POSIX_Asynch_IO.cpp @@ -78,7 +78,6 @@ ACE_POSIX_Asynch_Result::signal_number (void) const { return this->aio_sigevent.sigev_signo; } - int ACE_POSIX_Asynch_Result::post_completion (ACE_Proactor_Impl *proactor_impl) { @@ -237,6 +236,12 @@ ACE_POSIX_SIG_Asynch_Operation::~ACE_POSIX_SIG_Asynch_Operation (void) { } +int +ACE_POSIX_SIG_Asynch_Operation::register_aio_with_proactor (ACE_POSIX_Asynch_Result *result) +{ + return this->posix_proactor ()->register_aio_with_proactor (result); +} + // ********************************************************************* u_long @@ -534,13 +539,12 @@ ACE_POSIX_SIG_Asynch_Read_Stream::shared_read (ACE_POSIX_Asynch_Read_Stream_Resu // We want queuing of RT signal to notify completion. result->aio_sigevent.sigev_notify = SIGEV_SIGNAL; result->aio_sigevent.sigev_signo = result->signal_number (); - - // Keep ACE_POSIX_Asynch_Result, the base class pointer in the - // signal value. - ACE_POSIX_Asynch_Result *base_result = result; - result->aio_sigevent.sigev_value.sival_ptr = ACE_reinterpret_cast (void *, - base_result); + result->aio_sigevent.sigev_value.sival_ptr = (void *) result; + // Register the real-time signal with the Proactor. + if (this->register_aio_with_proactor (result) == -1) + return -1; + // Fire off the aio read. if (aio_read (result) == -1) // Queueing failed. @@ -867,13 +871,12 @@ ACE_POSIX_SIG_Asynch_Write_Stream::shared_write (ACE_POSIX_Asynch_Write_Stream_R // We want queuing of RT signal to notify completion. result->aio_sigevent.sigev_notify = SIGEV_SIGNAL; result->aio_sigevent.sigev_signo = result->signal_number (); + result->aio_sigevent.sigev_value.sival_ptr = (void *) result; - // Keep ACE_POSIX_Asynch_Result, the base class pointer in the - // signal value. - ACE_POSIX_Asynch_Result *base_result = result; - result->aio_sigevent.sigev_value.sival_ptr = ACE_reinterpret_cast (void *, - base_result); - + // Register the real-time signal with the Proactor. + if (this->register_aio_with_proactor (result) == -1) + return -1; + // Fire off the aio write. if (aio_write (result) == -1) // Queueing failed. @@ -1725,12 +1728,12 @@ protected: ACE_POSIX_Proactor *posix_proactor_; // POSIX_Proactor. - + ACE_Unbounded_Queue<ACE_POSIX_Asynch_Accept_Result*> result_queue_; // Queue of Result pointers that correspond to all the <accept>'s // pending. - ACE_SYNCH_MUTEX lock_; + ACE_Thread_Mutex lock_; // The lock to protect the result queue which is shared. The queue // is updated by main thread in the register function call and // through the auxillary thread in the deregister fun. So let us @@ -1836,7 +1839,7 @@ ACE_POSIX_Asynch_Accept_Handler::deregister_accept_call (void) // The queue is updated by main thread in the register function call and // thru the auxillary thread in the deregister fun. So let us mutex // it. - ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->lock_, 0); + ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, 0); // Get the first item (result ptr) from the Queue. ACE_POSIX_Asynch_Accept_Result* result = 0; @@ -1882,13 +1885,13 @@ ACE_POSIX_AIOCB_Asynch_Accept_Handler::register_accept_call (ACE_POSIX_Asynch_Ac // The queue is updated by main thread in the register function call // and thru the auxillary thread in the deregister fun. So let us // mutex it. - ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->lock_, -1); + ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1); return register_accept_call_i (result); } int -ACE_POSIX_AIOCB_Asynch_Accept_Handler::handle_input (ACE_HANDLE /* fd */) +ACE_POSIX_AIOCB_Asynch_Accept_Handler::handle_input (ACE_HANDLE fd) { // An <accept> has been sensed on the <listen_handle>. We should be // able to just go ahead and do the <accept> now on this <fd>. This @@ -1949,17 +1952,18 @@ ACE_POSIX_SIG_Asynch_Accept_Handler::register_accept_call (ACE_POSIX_Asynch_Acce // The queue is updated by main thread in the register function call // and thru the auxillary thread in the deregister fun. So let us // mutex it. - ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->lock_, -1); + ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1); // Do the work. if (this->register_accept_call_i (result) == -1) return -1; - - return 0; + + // Also register the real-time signal. + return this->posix_proactor_->register_aio_with_proactor (result); } int -ACE_POSIX_SIG_Asynch_Accept_Handler::handle_input (ACE_HANDLE /* fd */) +ACE_POSIX_SIG_Asynch_Accept_Handler::handle_input (ACE_HANDLE fd) { // An <accept> has been sensed on the <listen_handle>. We should be // able to just go ahead and do the <accept> now on this <fd>. This @@ -2090,7 +2094,7 @@ ACE_POSIX_AIOCB_Asynch_Accept::open (ACE_Handler &handler, // Spawn the thread. It is the only thread we are going to have. It // will do the <handle_events> on the reactor. return_val = ACE_Thread_Manager::instance ()->spawn (ACE_POSIX_AIOCB_Asynch_Accept::thread_function, - ACE_reinterpret_cast (void *, &this->reactor_)); + (void *) &this->reactor_); if (return_val == -1) ACE_ERROR_RETURN ((LM_ERROR, "%N:%l:Thread_Manager::spawn failed\n"), @@ -2106,9 +2110,10 @@ ACE_POSIX_AIOCB_Asynch_Accept::~ACE_POSIX_AIOCB_Asynch_Accept (void) void* ACE_POSIX_AIOCB_Asynch_Accept::thread_function (void* arg_reactor) { + ACE_DEBUG ((LM_DEBUG, "ACE_Asynch_Accept::thread_function called\n")); + // Retrieve the reactor pointer from the argument. - ACE_Reactor* reactor = ACE_reinterpret_cast (ACE_Reactor *, - arg_reactor); + ACE_Reactor* reactor = (ACE_Reactor *) arg_reactor; // It should be valid Reactor, since we have a reactor_ ,e,ner we // are passing only that one here. @@ -2125,7 +2130,13 @@ ACE_POSIX_AIOCB_Asynch_Accept::thread_function (void* arg_reactor) while (result != -1) { result = reactor->handle_events (); + ACE_DEBUG ((LM_DEBUG, + "ACE_Asynch_Accept::Thread_Function : handle_events : result = [%d]\n", + result)); } + + ACE_DEBUG ((LM_DEBUG, "Exiting ACE_Asynch_Accept::thread_function \n")); + return 0; } @@ -2251,8 +2262,7 @@ void* ACE_POSIX_SIG_Asynch_Accept::thread_function (void* arg_reactor) { // Retrieve the reactor pointer from the argument. - ACE_Reactor* reactor = ACE_reinterpret_cast (ACE_Reactor *, - arg_reactor); + ACE_Reactor* reactor = (ACE_Reactor *) arg_reactor; if (reactor == 0) reactor = ACE_Reactor::instance (); @@ -2466,9 +2476,7 @@ class ACE_Export ACE_POSIX_Asynch_Transmit_Handler : public ACE_Handler // = DESCRIPTION // // This is a helper class for implementing - // <ACE_POSIX_Asynch_Transmit_File> in Unix systems. This class - // abstracts out all the commonalities in the two different - // POSIX Transmit Handler implementations. + // <ACE_POSIX_Asynch_Transmit_File> in Unix systems. public: virtual ~ACE_POSIX_Asynch_Transmit_Handler (void); @@ -2670,7 +2678,7 @@ ACE_POSIX_AIOCB_Asynch_Transmit_Handler::transmit (void) // Transmit the header. if (this->ws_.write (*this->result_->header_and_trailer ()->header (), this->result_->header_and_trailer ()->header_bytes (), - ACE_reinterpret_cast (void *, &this->header_act_), + (void *) &this->header_act_, 0) == -1) ACE_ERROR_RETURN ((LM_ERROR, "Asynch_Transmit_Handler:transmitting header:write_stream failed\n"), @@ -2687,25 +2695,32 @@ ACE_POSIX_AIOCB_Asynch_Transmit_Handler::handle_write_stream (const ACE_Asynch_W // Check the success parameter. if (result.success () == 0) { - // Failure. ACE_ERROR ((LM_ERROR, "Asynch_Transmit_File failed.\n")); - - ACE_SEH_TRY - { - this->result_->complete (this->bytes_transferred_, - 0, // Failure. - 0, // @@ Completion key. - 0); // @@ Error no. - } - ACE_SEH_FINALLY + + // Check the success parameter. + if (result.success () == 0) { - // This is crucial to prevent memory leaks. This deletes - // the result pointer also. - delete this; + // Failure. + ACE_ERROR ((LM_ERROR, + "Asynch_Transmit_File failed.\n")); + + ACE_SEH_TRY + { + this->result_->complete (this->bytes_transferred_, + 0, // Failure. + 0, // @@ Completion key. + 0); // @@ Error no. + } + ACE_SEH_FINALLY + { + // This is crucial to prevent memory leaks. This deletes + // the result pointer also. + delete this; + } } } - + // Write stream successful. // Partial write to socket. @@ -2739,7 +2754,7 @@ ACE_POSIX_AIOCB_Asynch_Transmit_Handler::handle_write_stream (const ACE_Asynch_W // Not a partial write. A full write. // Check ACT to see what was sent. - ACT act = * (ACT *) result.act (); + ACT act = *(ACT *) result.act (); switch (act) { @@ -2801,10 +2816,8 @@ ACE_POSIX_AIOCB_Asynch_Transmit_Handler::handle_read_file (const ACE_Asynch_Read if (result.bytes_transferred () == 0) return; - // Increment offset. + // Increment offset and write data to network. this->file_offset_ += result.bytes_transferred (); - - // Write data to network. if (this->ws_.write (result.message_block (), result.bytes_transferred (), (void *)&this->data_act_, @@ -2905,8 +2918,7 @@ ACE_POSIX_SIG_Asynch_Transmit_Handler::transmit (void) // Transmit the header. if (this->ws_.write (*this->result_->header_and_trailer ()->header (), this->result_->header_and_trailer ()->header_bytes (), - ACE_reinterpret_cast (void *, - &this->header_act_), + (void *) &this->header_act_, this->result_->priority (), this->result_->signal_number ()) == -1) ACE_ERROR_RETURN ((LM_ERROR, diff --git a/ace/POSIX_Asynch_IO.h b/ace/POSIX_Asynch_IO.h index 56224912845..521ecd31b45 100644 --- a/ace/POSIX_Asynch_IO.h +++ b/ace/POSIX_Asynch_IO.h @@ -172,6 +172,12 @@ protected: virtual ~ACE_POSIX_Asynch_Operation (void); // Destructor. + virtual int register_aio_with_proactor (ACE_POSIX_Asynch_Result *result) = 0; + // <Asynch_Operation> class call this method to register the <aio_> + // call with the Proactor, so that Proactor can do completion + // querying effectively. Different POSIX Proactor implementations do + // different things to register the <aio_>. + ACE_Proactor *proactor_; // Proactor that this Asynch IO will be registered with. @@ -239,6 +245,12 @@ protected: virtual ~ACE_POSIX_SIG_Asynch_Operation (void); // Destructor. + int register_aio_with_proactor (ACE_POSIX_Asynch_Result *result); + // <Asynch_Operation> classes call this, to register the real-time + // signal used to issue the <aio_> call with the Proator. This + // should be done so that the Proactor can wait for completions of + // the asynchronous calls, issued using those signals. + ACE_POSIX_SIG_Proactor *posix_sig_proactor_; // It is easy to get this specific implementation proactor here, // since it is the one that creates the correct POSIX_Asynch_* diff --git a/ace/POSIX_Proactor.cpp b/ace/POSIX_Proactor.cpp index 68c8aaf7be0..3861e8aa110 100644 --- a/ace/POSIX_Proactor.cpp +++ b/ace/POSIX_Proactor.cpp @@ -13,38 +13,6 @@ #include "ace/POSIX_Proactor.i" #endif /* __ACE_INLINE__ */ -class ACE_Export ACE_POSIX_Wakeup_Completion : public ACE_POSIX_Asynch_Result -{ - // = TITLE - // - // This is result object is used by the <end_event_loop> of the - // ACE_Proactor interface to wake up all the threads blocking - // for completions. - // - // = DESCRIPTION - // - -public: - ACE_POSIX_Wakeup_Completion (ACE_Handler &handler, - const void *act = 0, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); - // Constructor. - - virtual ~ACE_POSIX_Wakeup_Completion (void); - // Destructor. - - - virtual void complete (u_long bytes_transferred = 0, - int success = 1, - const void *completion_key = 0, - u_long error = 0); - // This method calls the <handler>'s <handle_wakeup> method. -}; - -// ********************************************************************* - ACE_POSIX_Proactor::~ACE_POSIX_Proactor (void) { this->close (); @@ -80,7 +48,7 @@ ACE_POSIX_Proactor::close_dispatch_threads (int) size_t ACE_POSIX_Proactor::number_of_threads (void) const { - // @@ Implement it. + // @@ Implement it. ACE_NOTSUP_RETURN (0); } @@ -139,7 +107,7 @@ ACE_POSIX_Proactor::create_asynch_write_stream_result (ACE_Handler &handler, bytes_to_write, act, event, - priority, + priority, signal_number), 0); return implementation; @@ -322,7 +290,7 @@ void ACE_POSIX_Proactor::application_specific_code (ACE_POSIX_Asynch_Result *asynch_result, u_long bytes_transferred, int success, - const void */* completion_key*/, + const void *completion_key, u_long error) { ACE_SEH_TRY @@ -330,7 +298,7 @@ ACE_POSIX_Proactor::application_specific_code (ACE_POSIX_Asynch_Result *asynch_r // Call completion hook asynch_result->complete (bytes_transferred, success, - 0, // No completion key. + (void *) completion_key, error); } ACE_SEH_FINALLY @@ -340,23 +308,6 @@ ACE_POSIX_Proactor::application_specific_code (ACE_POSIX_Asynch_Result *asynch_r } } -int -ACE_POSIX_Proactor::post_wakeup_completions (int how_many) -{ - ACE_POSIX_Wakeup_Completion *wakeup_completion = 0; - for (ssize_t ci = 0; ci < how_many; ci++) - { - ACE_NEW_RETURN (wakeup_completion, - ACE_POSIX_Wakeup_Completion (this->wakeup_handler_), - -1); - - if (wakeup_completion->post_completion (this) == -1) - return -1; - } - - return 0; -} - // ********************************************************************* class ACE_Export ACE_AIOCB_Notify_Pipe_Manager : public ACE_Handler @@ -378,7 +329,7 @@ class ACE_Export ACE_AIOCB_Notify_Pipe_Manager : public ACE_Handler // completion of the <Asynch_Read_Stream> and calls the // <handle_read_stream> of this class. This class calls // <complete> on the <POSIX_Asynch_Result *> and thus calls the - // application handler. + // application handler. // Handling the MessageBlock: // We give this message block to read the result pointer through // the notify pipe. We expect that to read 4 bytes from the @@ -389,10 +340,10 @@ public: ACE_AIOCB_Notify_Pipe_Manager (ACE_POSIX_AIOCB_Proactor *posix_aiocb_proactor); // Constructor. You need the posix proactor because you need to call // <application_specific_code> - + virtual ~ACE_AIOCB_Notify_Pipe_Manager (void); // Destructor. - + int notify (ACE_POSIX_Asynch_Result *result); // Send the result pointer through the notification pipe. @@ -403,10 +354,10 @@ public: private: ACE_POSIX_AIOCB_Proactor *posix_aiocb_proactor_; // The implementation proactor class. - + ACE_Message_Block message_block_; // Message block to get ACE_POSIX_Asynch_Result pointer from the - // pipe. + // pipe. ACE_Pipe pipe_; // Pipe for the communication between Proactor and the @@ -459,8 +410,7 @@ ACE_AIOCB_Notify_Pipe_Manager::notify (ACE_POSIX_Asynch_Result *result) { // Send the result pointer through the pipe. int return_val = ACE::send (this->pipe_.write_handle (), - ACE_reinterpret_cast (char *, - &result), + (char *) &result, sizeof (result)); if (return_val != sizeof (result)) ACE_ERROR_RETURN ((LM_ERROR, @@ -475,7 +425,7 @@ void ACE_AIOCB_Notify_Pipe_Manager::handle_read_stream (const ACE_Asynch_Read_Stream::Result &result) { // The message block actually contains the ACE_POSIX_Asynch_Result - // pointer. + // pointer. ACE_POSIX_Asynch_Result *asynch_result = 0; asynch_result = *(ACE_POSIX_Asynch_Result **) result.message_block ().rd_ptr (); @@ -513,10 +463,7 @@ ACE_POSIX_AIOCB_Proactor::ACE_POSIX_AIOCB_Proactor (void) { // Initialize the array. for (size_t ai = 0; ai < this->aiocb_list_max_size_; ai++) - { - aiocb_list_[ai] = 0; - result_list_ [ai] = 0; - } + aiocb_list_[ai] = 0; // Accept Handler for aio_accept. Remember! this issues a Asynch_Read // on the notify pipe for doing the Asynch_Accept. @@ -615,12 +562,10 @@ ACE_POSIX_AIOCB_Proactor::handle_events (unsigned long milli_seconds) { int result_suspend = 0; if (milli_seconds == ACE_INFINITE) - { - // Indefinite blocking. - result_suspend = aio_suspend (this->aiocb_list_, - this->aiocb_list_max_size_, - 0); - } + // Indefinite blocking. + result_suspend = aio_suspend (this->aiocb_list_, + this->aiocb_list_max_size_, + 0); else { // Block on <aio_suspend> for <milli_seconds> @@ -631,12 +576,12 @@ ACE_POSIX_AIOCB_Proactor::handle_events (unsigned long milli_seconds) this->aiocb_list_max_size_, &timeout); } - + // Check for errors if (result_suspend == -1) { // If failure is because of timeout, then return *0*, otherwise - // return -1. + // return -1. if (errno == EAGAIN) return 0; else @@ -656,7 +601,7 @@ ACE_POSIX_AIOCB_Proactor::handle_events (unsigned long milli_seconds) // Dont process null blocks. if (aiocb_list_ [ai] == 0) continue; - + // Analyze error and return values. // Get the error status of the aio_ operation. @@ -688,21 +633,17 @@ ACE_POSIX_AIOCB_Proactor::handle_events (unsigned long milli_seconds) // This AIO has finished. break; } - + // Something should have completed. ACE_ASSERT (ai != this->aiocb_list_max_size_); - + // Retrive the result pointer. - ACE_POSIX_Asynch_Result *asynch_result = this->result_list_ [ai]; - - // ACE_reinterpret_cast (ACE_POSIX_Asynch_Result *, - // this->aiocb_list_[ai]); - // ACE_dynamic_cast (ACE_POSIX_Asynch_Result *, - // this->aiocb_list_[ai]); + ACE_POSIX_Asynch_Result *asynch_result = + (ACE_POSIX_Asynch_Result *) this->aiocb_list_[ai]; + // Invalidate entry in the aiocb list. this->aiocb_list_[ai] = 0; - this->result_list_ [ai] = 0; this->aiocb_list_cur_size_--; // Call the application code. @@ -711,7 +652,7 @@ ACE_POSIX_AIOCB_Proactor::handle_events (unsigned long milli_seconds) 1, // Success 0, // No completion key. error_status); // Error - + // Success return 1; } @@ -769,9 +710,7 @@ ACE_POSIX_AIOCB_Proactor::register_aio_with_proactor (ACE_POSIX_Asynch_Result *r -1); // Store the pointers. - this->aiocb_list_[ai] = result; - this->result_list_ [ai] = result; - + this->aiocb_list_[ai] = result; this->aiocb_list_cur_size_ ++; return 0; @@ -781,80 +720,13 @@ ACE_POSIX_AIOCB_Proactor::register_aio_with_proactor (ACE_POSIX_Asynch_Result *r ACE_POSIX_SIG_Proactor::ACE_POSIX_SIG_Proactor (void) { - // = Mask all the signals, keep a mask set with ACE_SIGRTMIN and set - // up signal handler for SIGRTMIN. - - // Mask all the signals. - if (this->mask_all () != 0) - return; - - // = Keep a mask set with ACE_SIGRTMIN. - - // Clear the signal set. + // Make the sigset_t consisting of the completion signals. if (sigemptyset (&this->RT_completion_signals_) == -1) ACE_ERROR ((LM_ERROR, "Error:%p\n", "Couldn't init the RT completion signal set")); - - // Add the signal number to the signal set. - if (sigaddset (&this->RT_completion_signals_, ACE_SIGRTMIN) == -1) - ACE_ERROR ((LM_ERROR, - "Error:%p\n", - "Couldnt init the RT completion signal set")); - - // Set up the signal handler for SIGRTMIN. - setup_signal_handler (ACE_SIGRTMIN); } -ACE_POSIX_SIG_Proactor::ACE_POSIX_SIG_Proactor (const sigset_t signal_set) -{ - // = Keep <Signal_set> with the Proactor, mask all the signals and - // setup signal handlers for the signals in the <signal_set>. - - // = Keep <signal_set> with the Proactor. - - // Empty the signal set first. - if (sigemptyset (&this->RT_completion_signals_) == -1) - ACE_ERROR ((LM_ERROR, - "Error:(%P | %t):%p\n", - "sigemptyset failed")); - - // Put the <signal_set>. - if (ACE_OS::pthread_sigmask (SIG_SETMASK, &signal_set, 0) != 0) - ACE_ERROR ((LM_ERROR, - "Error:(%P | %t):%p\n", - "pthread_sigmask failed")); - - // Get the <signal_set> back from the OS. - if (ACE_OS::pthread_sigmask (SIG_SETMASK, 0, &this->RT_completion_signals_) != 0) - ACE_ERROR ((LM_ERROR, - "Error:(%P | %t):%p\n", - "ACE_OS::pthread_sigmask failed")); - - - // Mask all the signals. - if (this->mask_all () != 0) - return; - - // For each signal number present in the <signal_set>, set up the - // signal handler. - int member = 0; - for (int si = ACE_SIGRTMIN; si <= ACE_SIGRTMAX; si++) - { - member = sigismember (&signal_set, - si); - if (member == -1) - ACE_ERROR ((LM_ERROR, - "%N:%l:(%P | %t)::%p\n", - "ACE_POSIX_SIG_Proactor::ACE_POSIX_SIG_Proactor:" - "sigismember failed")); - else if (member == 1) - { - if (this->setup_signal_handler (si) == -1) - return; - } - } -} ACE_POSIX_SIG_Proactor::~ACE_POSIX_SIG_Proactor (void) { @@ -882,20 +754,23 @@ ACE_POSIX_SIG_Proactor::post_completion (ACE_POSIX_Asynch_Result *result) pid_t pid = ACE_OS::getpid (); if (pid == (pid_t) -1) ACE_ERROR_RETURN ((LM_ERROR, - "Error:%N:%l(%P | %t):%p", - "<getpid> failed"), + "Error:(%P | %t):%p", + "<getpid> failed\n"), -1); - + // Set the signal information. sigval value; - value.sival_ptr = ACE_reinterpret_cast (void *, - result); - + value.sival_ptr = (void *) result; + + // Register the signal number with the Proactor. + if (this->register_aio_with_proactor (result) == -1) + return -1; + // Queue the signal. if (sigqueue (pid, result->signal_number (), value) == -1) ACE_ERROR_RETURN ((LM_ERROR, - "Error:%N:%l:(%P | %t):%p\n", - "<sigqueue> failed"), + "Error:(%P | %t):%p", + "<sigqueue> failed\n"), -1); return 0; } @@ -950,131 +825,15 @@ ACE_POSIX_SIG_Proactor::create_asynch_transmit_file (void) return implementation; } -ACE_Asynch_Result_Impl * -ACE_POSIX_SIG_Proactor::create_asynch_timer (ACE_Handler &handler, - const void *act, - const ACE_Time_Value &tv, - ACE_HANDLE event, - int priority, - int signal_number) -{ - int is_member = 0; - - // Fix the signal number. - if (signal_number == -1) - { - int si; - for (si = ACE_SIGRTMAX; - (is_member == 0) && (si >= ACE_SIGRTMIN); - si--) - { - is_member = sigismember (&this->RT_completion_signals_, - si); - if (is_member == -1) - ACE_ERROR_RETURN ((LM_ERROR, - "%N:%l:(%P | %t)::\n", - "ACE_POSIX_SIG_Proactor::create_asynch_timer:" - "sigismember failed"), - 0); - } - - if (is_member == 0) - ACE_ERROR_RETURN ((LM_ERROR, - "Error:%N:%l:(%P | %t)::%s\n", - "ACE_POSIX_SIG_Proactor::ACE_POSIX_SIG_Proactor:" - "Signal mask set empty"), - 0); - else - // + 1 to nullify loop increment. - signal_number = si + 1; - } - - ACE_Asynch_Result_Impl *implementation; - ACE_NEW_RETURN (implementation, - ACE_POSIX_Asynch_Timer (handler, - act, - tv, - event, - priority, - signal_number), - 0); - return implementation; -} - -int -ACE_POSIX_SIG_Proactor::setup_signal_handler (int signal_number) const -{ - // Set up the handler(actually Null handler) for this real-time - // signal. - struct sigaction reaction; - sigemptyset (&reaction.sa_mask); // Nothing else to mask. - reaction.sa_flags = SA_SIGINFO; // Realtime flag. -#if defined (SA_SIGACTION) - // Lynx says, it is better to set this bit, to be portable. - reaction.sa_flags &= SA_SIGACTION; -#endif /* SA_SIGACTION */ - reaction.sa_sigaction = null_handler; // Null handler function. - int sigaction_return = sigaction (signal_number, - &reaction, - 0); - if (sigaction_return == -1) - ACE_ERROR_RETURN ((LM_ERROR, - "Error:%p\n", - "Proactor couldnt do sigaction for the RT SIGNAL"), - -1); - return 0; -} - -void -ACE_POSIX_SIG_Proactor::null_handler (int signal_number, - siginfo_t * /* info */, - void * /* context */) -{ - ACE_ERROR ((LM_ERROR, - "Error:(%P | %t):ACE_POSIX_SIG_Proactor::null_handler called," - "Signal number %d," - "Mask all the RT signals for this thread\n", - signal_number)); -} - -int -ACE_POSIX_SIG_Proactor::mask_all (void) const -{ - sigset_t full_set; - - // Get full set. - if (sigfillset (&full_set) != 0) - ACE_ERROR_RETURN ((LM_ERROR, - "Error:(%P | %t):%p\n", - "sigfillset failed"), - -1); - - // Mask them. - if (ACE_OS::pthread_sigmask (SIG_SETMASK, &full_set, 0) != 0) - ACE_ERROR_RETURN ((LM_ERROR, - "Error:(%P | %t):%p\n", - "pthread_sigmask failed"), - -1); - - return 0; -} - int ACE_POSIX_SIG_Proactor::handle_events (unsigned long milli_seconds) { int result_sigwait = 0; siginfo_t sig_info; - - // Mask all the signals. - if (this->mask_all () != 0) - return -1; - - // Wait for the signals. + if (milli_seconds == ACE_INFINITE) - { - result_sigwait = sigwaitinfo (&this->RT_completion_signals_, - &sig_info); - } + result_sigwait = sigwaitinfo (&this->RT_completion_signals_, + &sig_info); else { // Wait for <milli_seconds> amount of time. @@ -1085,7 +844,7 @@ ACE_POSIX_SIG_Proactor::handle_events (unsigned long milli_seconds) &sig_info, &timeout); } - + // Check for errors if (result_sigwait == -1) { @@ -1100,26 +859,38 @@ ACE_POSIX_SIG_Proactor::handle_events (unsigned long milli_seconds) "sigtimedwait/sigwaitinfo failed"), -1); } - + // No errors, RT compleion signal is received. - + + // We deal only with the signal numbers that have been registered + // already. + int member = sigismember (&this->RT_completion_signals_, + result_sigwait); + if (member != 1) + ACE_ERROR_RETURN ((LM_ERROR, + "%N:%l:(%P | %t)::%p\n", + "ACE_POSIX_SIG_Proactor::handle_events:" + "Unexpected signal (%d) received while waiting for RT Completion Signal", + result_sigwait), + -1); + // Is the signo returned consistent with the sig info? if (sig_info.si_signo != result_sigwait) ACE_ERROR_RETURN ((LM_ERROR, - "Error:%N:%l:(%P | %t):" + "%N:%l:(%P | %t):" "ACE_POSIX_SIG_Proactor::handle_events:" "Inconsistent signal number (%d) in the signal info block", sig_info.si_signo), -1); - + // Retrive the result pointer. - ACE_POSIX_Asynch_Result *asynch_result = ACE_reinterpret_cast (ACE_POSIX_Asynch_Result *, - sig_info.si_value.sival_ptr); + ACE_POSIX_Asynch_Result *asynch_result = + (ACE_POSIX_Asynch_Result *) sig_info.si_value.sival_ptr; // Check the <signal code> and act according to that. if (sig_info.si_code == SI_ASYNCIO) { - // Analyze error and return values. + // Analyze error and return values. // Check the error status int error_status = aio_error (asynch_result); @@ -1130,11 +901,11 @@ ACE_POSIX_SIG_Proactor::handle_events (unsigned long milli_seconds) "ACE_POSIX_SIG_Proactor::handle_events:" "<aio_error> has failed"), -1); - + // Completion signal has been received, so it can't be in // progress. ACE_ASSERT (error_status != EINPROGRESS); - + // Error_status is not -1 and not EINPROGRESS. So, an <aio_> // operation has finished (successfully or unsuccessfully!!!) // Get the return_status of the <aio_> operation. @@ -1152,7 +923,7 @@ ACE_POSIX_SIG_Proactor::handle_events (unsigned long milli_seconds) this->application_specific_code (asynch_result, return_status, 1, // Result : True. - 0, // No completion key. + 0, // No completion_signal. error_status); // Error. } } @@ -1177,6 +948,58 @@ ACE_POSIX_SIG_Proactor::handle_events (unsigned long milli_seconds) return 1; } +int +ACE_POSIX_SIG_Proactor::register_aio_with_proactor (ACE_POSIX_Asynch_Result *result) +{ + // Nothing to do if this signal is already there in the signal set, + // that has been already masked out. + int member = sigismember (&this->RT_completion_signals_, + result->signal_number ()); + if (member == -1) + ACE_ERROR_RETURN ((LM_ERROR, + "%N:%l:(%P | %t)::%p\n", + "ACE_POSIX_SIG_Proactor::register_aio_with_proactor:" + "sigismember failed"), + -1); + // Return if it is already there. + if (member == 1) + return 0; + + // Add the signal number to the signal set. + if (sigaddset (&this->RT_completion_signals_, result->signal_number ()) < 0) + ACE_ERROR_RETURN ((LM_ERROR, + "Error:%p\n", + "Couldnt init the RT completion signal set"), + -1); + + // Mask them. + if (sigprocmask (SIG_BLOCK, &RT_completion_signals_, 0) < 0) + ACE_ERROR_RETURN ((LM_ERROR, + "Error:%p\n", + "Couldnt mask the RT completion signals"), + -1); + + // Set up the handler(actually Null handler) for this real-time + // signal. + struct sigaction reaction; + sigemptyset (&reaction.sa_mask); // Nothing else to mask. + reaction.sa_flags = SA_SIGINFO; // Realtime flag. +#if defined (SA_SIGACTION) + // Lynx says, it is better to set this bit, to be portable. + reaction.sa_flags &= SA_SIGACTION; +#endif /* SA_SIGACTION */ + reaction.sa_sigaction = 0; // No handler function. + int sigaction_return = sigaction (result->signal_number (), + &reaction, + 0); + if (sigaction_return == -1) + ACE_ERROR ((LM_ERROR, + "Error:%p\n", + "Proactor couldnt do sigaction for the RT SIGNAL")); + return 0; +} + + // ********************************************************************* ACE_POSIX_Asynch_Timer::ACE_POSIX_Asynch_Timer (ACE_Handler &handler, @@ -1205,29 +1028,4 @@ ACE_POSIX_Asynch_Timer::complete (u_long bytes_transferred, this->handler_.handle_time_out (this->time_, this->act ()); } -// ********************************************************************* - -ACE_POSIX_Wakeup_Completion::ACE_POSIX_Wakeup_Completion (ACE_Handler &handler, - const void *act, - ACE_HANDLE event, - int priority, - int signal_number) - : ACE_Asynch_Result_Impl (), - ACE_POSIX_Asynch_Result (handler, act, event, 0, 0, priority, signal_number) -{ -} - -ACE_POSIX_Wakeup_Completion::~ACE_POSIX_Wakeup_Completion (void) -{ -} - -void -ACE_POSIX_Wakeup_Completion::complete (u_long /* bytes_transferred */, - int /* success */, - const void * /* completion_key */, - u_long /* error */) -{ - this->handler_.handle_wakeup (); -} - #endif /* ACE_HAS_AIO_CALLS */ diff --git a/ace/POSIX_Proactor.h b/ace/POSIX_Proactor.h index ee3b4af9c01..889ff0c4234 100644 --- a/ace/POSIX_Proactor.h +++ b/ace/POSIX_Proactor.h @@ -92,18 +92,18 @@ public: ACE_Message_Block &message_block, u_long bytes_to_read, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority, + int signal_number); virtual ACE_Asynch_Write_Stream_Result_Impl *create_asynch_write_stream_result (ACE_Handler &handler, ACE_HANDLE handle, ACE_Message_Block &message_block, u_long bytes_to_write, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority, + int signal_number); virtual ACE_Asynch_Read_File_Result_Impl *create_asynch_read_file_result (ACE_Handler &handler, ACE_HANDLE handle, @@ -112,9 +112,9 @@ public: const void* act, u_long offset, u_long offset_high, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority, + int signal_number); virtual ACE_Asynch_Write_File_Result_Impl *create_asynch_write_file_result (ACE_Handler &handler, ACE_HANDLE handle, @@ -123,9 +123,9 @@ public: const void* act, u_long offset, u_long offset_high, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority, + int signal_number); virtual ACE_Asynch_Accept_Result_Impl *create_asynch_accept_result (ACE_Handler &handler, ACE_HANDLE listen_handle, @@ -133,9 +133,9 @@ public: ACE_Message_Block &message_block, u_long bytes_to_read, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority, + int signal_number); virtual ACE_Asynch_Transmit_File_Result_Impl *create_asynch_transmit_file_result (ACE_Handler &handler, ACE_HANDLE socket, @@ -147,16 +147,16 @@ public: u_long bytes_per_send, u_long flags, const void *act, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority, + int signal_number); virtual ACE_Asynch_Result_Impl *create_asynch_timer (ACE_Handler &handler, const void *act, const ACE_Time_Value &tv, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority, + int signal_number); // Create a timer result object which can be used with the Timer // mechanism of the Proactor. @@ -170,20 +170,26 @@ protected: const void *completion_key, u_long error); // Protect against structured exceptions caused by user code when - // dispatching handles. The <completion_key> is not very useful - // compared to <AST> that can be associated each asynchronous - // operation. <completion_key> is implemented right now for the - // POSIX Proators. - - virtual int post_wakeup_completions (int how_many); - // Post <how_many> completions to the completion port so that all - // threads can wake up. This is used in conjunction with the - // <run_event_loop>. - -protected: - ACE_Handler wakeup_handler_; - // Handler to handle the wakeups. This works in conjunction with the - // <ACE_Proactor::run_event_loop>. + // dispatching handles. + + virtual int register_aio_with_proactor (ACE_POSIX_Asynch_Result *result) = 0; + // <Asynch_Operation> class call this method to register the <aio_> + // call with the Proactor, so that Proactor can do completion + // querying. Different <POSIX_Proactor> implementations do different + // things to register the <aio_>. + +#if 0 + ACE_Thread_Manager thr_mgr_; + // This will manage the thread in the Timer_Handler. + + ACE_Auto_Event event_; + // This event is used in conjunction with Reactor when we try to + // integrate the event loops of Reactor and the Proactor. + + int used_with_reactor_event_loop_; + // Flag that indicates whether we are used in conjunction with + // Reactor. +#endif /* 0 */ }; // Forward declarations. @@ -271,16 +277,13 @@ protected: ACE_AIOCB_Notify_Pipe_Manager* aiocb_notify_pipe_manager_; // This class takes care of doing <accept> when we use // AIO_CONTROL_BLOCKS strategy. - + aiocb *aiocb_list_ [ACE_RTSIG_MAX]; // Use an array to keep track of all the aio's issued // currently. We'll limit the array size to Maximum RT signals that // can be queued in a process. This is the upper limit how many aio // operations can be pending at a time. - ACE_POSIX_Asynch_Result *result_list_ [ACE_RTSIG_MAX]; - // @@ I am keeing an extra copy of the <aiocb_ - size_t aiocb_list_max_size_; // To maintain the maximum size of the array (list). @@ -293,11 +296,8 @@ class ACE_Export ACE_POSIX_SIG_Proactor : public ACE_POSIX_Proactor // = TITLE // // This Proactor implementation does compeltion querying using - // POSIX Real Time signals. <sigtimedwait>/<sigwaitinfo> call is - // used to get the notify/get the completions. - // The real-time signals that are going to be used with this - // Proactor should be given apriori in the constructor, so that - // those signals can be masked from asynchornous delivery. + // POSIX Real Time signals. <sigtimedwait> call is used to get + // the notify/get the completions. // // = DESCRIPTION // @@ -309,15 +309,7 @@ class ACE_Export ACE_POSIX_SIG_Proactor : public ACE_POSIX_Proactor public: ACE_POSIX_SIG_Proactor (void); - // This constructor masks only the <ACE_SIGRTMIN> - // real-time signal. Only this signal should be used to issue - // asynchronous operations using this Proctor. - - ACE_POSIX_SIG_Proactor (const sigset_t mask_set); - // This constructor should be used to tell the Proactor to mask and - // wait for the real-time signals specified in this set. Only these - // signals should be used by the asynchronous operations when they - // use this Proactor. + // Constructor. virtual ~ACE_POSIX_SIG_Proactor (void); // Destructor. @@ -353,33 +345,18 @@ public: virtual ACE_Asynch_Transmit_File_Impl *create_asynch_transmit_file (void); - virtual ACE_Asynch_Result_Impl *create_asynch_timer (ACE_Handler &handler, - const void *act, - const ACE_Time_Value &tv, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN) ; - // If <signal_number> is -1, check with the Proactor and use one of - // the signals that is present in the mask set (i.e. the signals for - // which the Proactor will be waiting) of the Proactor. If there are - // more than one signal, the higher numbered signal will be chosen. - protected: - int setup_signal_handler (int signal_number) const; - // To setup the handler for a real-time signbal. - - static void null_handler (int signal_number, siginfo_t *info, void *context); - // Dummy signal handler. This wont get called at all, since we are - // going to be masking the signal in all the threads. - - int mask_all (void) const; - // To mask all the signals in a thread. - virtual int handle_events (unsigned long milli_seconds); // Dispatch a single set of events. If <milli_seconds> elapses // before any events occur, return 0. Return 1 if a completion is // dispatched. Return -1 on errors. + int register_aio_with_proactor (ACE_POSIX_Asynch_Result *result); + // <Asynch_Operation> classes call this, to register the real-time + // signal used to issue the <aio_> call with the Proator. This + // should be done so that the Proactor can wait for completions of + // the asynchronous calls, issued using those signals. + sigset_t RT_completion_signals_; // These signals are used for completion notification by the // Proactor. The signals specified while issueing <Asynch @@ -396,8 +373,7 @@ class ACE_Export ACE_POSIX_Asynch_Timer : public ACE_POSIX_Asynch_Result // called. friend class ACE_POSIX_Proactor; - friend class ACE_POSIX_SIG_Proactor; - // The factory method for this class is with the POSIX_Proactor + // The factory method for this class is with the POSIX_Proactor // class. protected: @@ -406,7 +382,7 @@ protected: const ACE_Time_Value &tv, ACE_HANDLE event = ACE_INVALID_HANDLE, int priority = 0, - int signal_number = ACE_SIGRTMIN); + int signal_number = SIGRTMIN); // Constructor. virtual ~ACE_POSIX_Asynch_Timer (void) {} diff --git a/ace/Parse_Node.cpp b/ace/Parse_Node.cpp index cda7c90ee05..da2bd33804d 100644 --- a/ace/Parse_Node.cpp +++ b/ace/Parse_Node.cpp @@ -519,26 +519,11 @@ ACE_Function_Node::symbol (ACE_Service_Object_Exterminator *gobbler) // Locate the factory function <function_name> in the shared // object. - char *function_name = ACE_const_cast (char *, - this->function_name_); - - // According to the new ANSI C++ specification, casting a void* - // pointer to a function pointer is not allowed. However, - // casting a void* pointer to an integer type that is large - // enough to hold the pointer value is legal. I (Nanbor) chose - // to cast the return value to long since it should be large - // enough to hold the void* pointer's value on most platforms. - // I am not sure if casting a long value to a function pointer - // is legal or not (can't find a good explanation in spec) but - // SunC++, egcs, and KAI compilers, all of which are pretty - // close to (or, at least claim to conform with) the standard - // did not complain about this as an illegal pointer conversion. - long temp_ptr = - ACE_reinterpret_cast(long, - ACE_OS::dlsym ((ACE_SHLIB_HANDLE) this->handle (), - ASYS_WIDE_STRING (function_name))); - func = ACE_reinterpret_cast(void *(*)(ACE_Service_Object_Exterminator *), - temp_ptr); + char *function_name = ACE_const_cast (char *, this->function_name_); + + func = (void *(*)(ACE_Service_Object_Exterminator *)) + ACE_OS::dlsym ((ACE_SHLIB_HANDLE) this->handle (), + ASYS_WIDE_STRING (function_name)); if (func == 0) { diff --git a/ace/Pipe.cpp b/ace/Pipe.cpp index fa25315f78f..e4f52a891f3 100644 --- a/ace/Pipe.cpp +++ b/ace/Pipe.cpp @@ -1,3 +1,4 @@ +// Pipe.cpp // $Id$ #define ACE_BUILD_DLL @@ -42,15 +43,15 @@ ACE_Pipe::open (void) { ACE_INET_Addr sv_addr (my_addr.get_port_number (), ASYS_TEXT ("localhost")); - + // Establish a connection within the same process. if (connector.connect (writer, sv_addr) == -1) - result = -1; + result = -1; else if (acceptor.accept (reader) == -1) - { - writer.close (); - result = -1; - } + { + writer.close (); + result = -1; + } } // Close down the acceptor endpoint since we don't need it anymore. @@ -59,15 +60,12 @@ ACE_Pipe::open (void) return -1; int one = 1; - -#ifndef ACE_LACKS_TCP_NODELAY // Make sure that the TCP stack doesn't try to buffer small writes. // Since this communication is purely local to the host it doesn't // affect network performance. if (writer.set_option (IPPROTO_TCP, TCP_NODELAY, - &one, sizeof one) == -1) + &one, sizeof one) == -1) return -1; -#endif /* ACE_LACKS_TCP_NODELAY */ this->handles_[0] = reader.get_handle (); this->handles_[1] = writer.get_handle (); @@ -137,8 +135,8 @@ ACE_Pipe::ACE_Pipe (ACE_HANDLE handles[2]) ASYS_TEXT ("ACE_Pipe::ACE_Pipe"))); } -ACE_Pipe::ACE_Pipe (ACE_HANDLE read, - ACE_HANDLE write) +ACE_Pipe::ACE_Pipe (ACE_HANDLE read, + ACE_HANDLE write) { ACE_TRACE ("ACE_Pipe::ACE_Pipe"); this->handles_[0] = read; diff --git a/ace/Proactor.cpp b/ace/Proactor.cpp index 8801109ffef..6e16958df67 100644 --- a/ace/Proactor.cpp +++ b/ace/Proactor.cpp @@ -34,9 +34,6 @@ int ACE_Proactor::delete_proactor_ = 0; // Terminate the eventloop. sig_atomic_t ACE_Proactor::end_event_loop_ = 0; -// Number of threads in the event loop. -sig_atomic_t ACE_Proactor::event_loop_thread_count_ = 0; - class ACE_Export ACE_Proactor_Timer_Handler : public ACE_Task <ACE_NULL_SYNCH> { // = TITLE @@ -59,14 +56,9 @@ public: ACE_Proactor_Timer_Handler (ACE_Proactor &proactor); // Constructor. - virtual ~ACE_Proactor_Timer_Handler (void); + ~ACE_Proactor_Timer_Handler (void); // Destructor. - int destroy (void); - // Proactor calls this to shut down the timer handler - // gracefully. Just calling the destructor alone doesnt do what - // <destroy> does. <destroy> make sure the thread exits properly. - protected: virtual int svc (void); // Run by a daemon thread to handle deferred processing. In other @@ -97,9 +89,6 @@ ACE_Proactor_Timer_Handler::~ACE_Proactor_Timer_Handler (void) // Signal timer event. this->timer_event_.signal (); - - // Wait for the Timer Handler thread to exit. - this->thr_mgr ()->wait (); } int @@ -107,28 +96,35 @@ ACE_Proactor_Timer_Handler::svc (void) { ACE_Time_Value absolute_time; int empty_flag = 0; - int result = 0; - + while (this->shutting_down_ == 0) { - // Is the timer queue empty? + // If the timer queue is not empty empty_flag = this->proactor_.timer_queue ()->is_empty (); - if (!empty_flag) { // Get the earliest absolute time. - absolute_time = this->proactor_.timer_queue ()->earliest_time (); - - // Block for absolute time. - result = this->timer_event_.wait (&absolute_time); + absolute_time = + this->proactor_.timer_queue ()->earliest_time () - + this->proactor_.timer_queue ()->gettimeofday (); +#if 0 + ACE_DEBUG ((LM_DEBUG, + "%N%l:(%t):Earliest Time %d sec, %d msec time\n", + absolute_time.sec (), + absolute_time.msec ())); +#endif + // Make it zero if it is negative. + if (absolute_time < ACE_Time_Value::zero) + absolute_time = ACE_Time_Value::zero; } + + // Wait for event upto <absolute_time>. + int result = 0; + if (empty_flag) + result = this->timer_event_.wait (0); else - { - // Wait for ever. - result = this->timer_event_.wait (); - } + result = this->timer_event_.wait (&absolute_time); - // Check for timer expiries. if (result == -1) { switch (errno) @@ -146,6 +142,7 @@ ACE_Proactor_Timer_Handler::svc (void) } } } + return 0; } @@ -169,21 +166,19 @@ ACE_Proactor_Handle_Timeout_Upcall::timeout (TIMER_QUEUE &timer_queue, ASYS_TEXT ("(%t) No Proactor set in ACE_Proactor_Handle_Timeout_Upcall,") ASYS_TEXT (" no completion port to post timeout to?!@\n")), -1); - + // Create the Asynch_Timer. ACE_Asynch_Result_Impl *asynch_timer = this->proactor_->create_asynch_timer (*handler, - act, - time, - ACE_INVALID_HANDLE, - 0, - -1); + act, + time, + 0); if (asynch_timer == 0) ACE_ERROR_RETURN ((LM_ERROR, "%N:%l:(%P | %t):%p\n", "ACE_Proactor_Handle_Timeout_Upcall::timeout:" "create_asynch_timer failed"), -1); - + // Post a completion. if (asynch_timer->post_completion (this->proactor_->implementation ()) == -1) ACE_ERROR_RETURN ((LM_ERROR, @@ -244,7 +239,7 @@ ACE_Proactor::ACE_Proactor (ACE_Proactor_Impl *implementation, delete_timer_queue_ (0) { this->implementation (implementation); - + if (this->implementation () == 0) { #if defined (ACE_HAS_AIO_CALLS) @@ -253,8 +248,8 @@ ACE_Proactor::ACE_Proactor (ACE_Proactor_Impl *implementation, ACE_NEW (implementation, ACE_POSIX_AIOCB_Proactor); #elif defined (ACE_POSIX_SIG_PROACTOR) ACE_NEW (implementation, ACE_POSIX_SIG_Proactor); - #else /* Default is to use the SIG one */ - ACE_NEW (implementation, ACE_POSIX_SIG_Proactor); + #else /* Default is to use the AIOCB one */ + ACE_NEW (implementation, ACE_POSIX_AIOCB_Proactor); #endif #elif (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) // WIN_Proactor. @@ -284,7 +279,7 @@ ACE_Proactor::~ACE_Proactor (void) } ACE_Proactor * -ACE_Proactor::instance (size_t /* threads */) +ACE_Proactor::instance (size_t threads) { ACE_TRACE ("ACE_Proactor::instance"); @@ -342,60 +337,20 @@ ACE_Proactor::close_singleton (void) int ACE_Proactor::run_event_loop (void) { - int result = 0; - - // Declaring the lock variable. -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_Thread_Mutex *lock = - ACE_Managed_Object<ACE_Thread_Mutex>::get_preallocated_object - (ACE_Object_Manager::ACE_PROACTOR_EVENT_LOOP_LOCK); -#endif /* ACE_MT_SAFE */ - - // Early check. It is ok to do this without lock, since we care just - // whether it is zero or non-zero. - if (ACE_Proactor::end_event_loop_ != 0) - return 0; - - // First time you are in. Increment the thread count. - { - // Obtain the lock in the MT environments. -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *lock, -1); -#endif /* ACE_MT_SAFE */ - - // Increment the thread count. - ACE_Proactor::event_loop_thread_count_ ++; - } - - // Run the event loop. - while (1) + ACE_TRACE ("ACE_Proactor::run_event_loop"); + + while (ACE_Proactor::end_event_loop_ == 0) { - // Check the end loop flag. It is ok to do this without lock, - // since we care just whether it is zero or non-zero. - if (ACE_Proactor::end_event_loop_ != 0) - break; - - // <end_event_loop> is not set. Ready to do <handle_events>. - result = ACE_Proactor::instance ()->handle_events (); + int result = ACE_Proactor::instance ()->handle_events (); if (ACE_Service_Config::reconfig_occurred ()) ACE_Service_Config::reconfigure (); - + else if (result == -1) - break; + return -1; } - - // Leaving the event loop. Decrement the thread count. - - // Obtain the lock in the MT environments. -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *lock, -1); -#endif /* ACE_MT_SAFE */ - - // Decrement the thread count. - ACE_Proactor::event_loop_thread_count_ --; - return result; + return 0; } // Handle events for -tv- time. handle_events updates -tv- to reflect @@ -405,93 +360,29 @@ ACE_Proactor::run_event_loop (ACE_Time_Value &tv) { ACE_TRACE ("ACE_Proactor::run_event_loop"); - int result = 0; - - // Declaring the lock variable. -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_Thread_Mutex *lock = - ACE_Managed_Object<ACE_Thread_Mutex>::get_preallocated_object - (ACE_Object_Manager::ACE_PROACTOR_EVENT_LOOP_LOCK); -#endif /* ACE_MT_SAFE */ - - // Early check. It is ok to do this without lock, since we care just - // whether it is zero or non-zero. - if (ACE_Proactor::end_event_loop_ != 0 || - tv == ACE_Time_Value::zero) - return 0; - - // First time you are in. Increment the thread count. - { - // Obtain the lock in the MT environments. -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *lock, -1); -#endif /* ACE_MT_SAFE */ - - // Increment the thread count. - ACE_Proactor::event_loop_thread_count_ ++; - } - - // Run the event loop. - while (1) + while (ACE_Proactor::end_event_loop_ == 0 + && tv != ACE_Time_Value::zero) { - // Check for end of loop. It is ok to do this without lock, - // since we care just whether it is zero or non-zero. - if (ACE_Proactor::end_event_loop_ != 0 || - tv == ACE_Time_Value::zero) - break; - - // <end_event_loop> is not set. Ready to do <handle_events>. - result = ACE_Proactor::instance ()->handle_events (tv); + int result = ACE_Proactor::instance ()->handle_events (tv); if (ACE_Service_Config::reconfig_occurred ()) ACE_Service_Config::reconfigure (); - + // An error has occurred. else if (result == -1) - break; + return result; } - // Leaving the event loop. Decrement the thread count. - - // Obtain the lock in the MT environments. -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *lock, -1); -#endif /* ACE_MT_SAFE */ - - // Decrement the thread count. - ACE_Proactor::event_loop_thread_count_ --; - - return result; + return 0; } int ACE_Proactor::end_event_loop (void) { ACE_TRACE ("ACE_Proactor::end_event_loop"); - - // Obtain the lock, set the end flag and post the wakeup - // completions. - - // Obtain the lock in the MT environments. -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - ACE_Thread_Mutex *lock = - ACE_Managed_Object<ACE_Thread_Mutex>::get_preallocated_object - (ACE_Object_Manager::ACE_PROACTOR_EVENT_LOOP_LOCK); - ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, *lock, -1); -#endif /* ACE_MT_SAFE */ - - // Set the end flag. ACE_Proactor::end_event_loop_ = 1; - - // Number of completions to post. - int how_many = ACE_Proactor::event_loop_thread_count_; - - // Reset the thread count. - ACE_Proactor::event_loop_thread_count_ = 0; - - // Post completions to all the threads so that they will all wake - // up. - return ACE_Proactor::post_wakeup_completions (how_many); + // ACE_Proactor::instance()->notify (); + return 0; } int @@ -517,15 +408,15 @@ ACE_Proactor::close (void) delete this->implementation (); this->implementation_ = 0; } - - // Delete the timer handler. + + // Take care of the timer handler if (this->timer_handler_) { delete this->timer_handler_; this->timer_handler_ = 0; } - // Delete the timer queue. + // Take care of the timer queue if (this->delete_timer_queue_) { delete this->timer_queue_; @@ -577,10 +468,7 @@ ACE_Proactor::schedule_timer (ACE_Handler &handler, this->timer_queue_->gettimeofday () + time; // Only one guy goes in here at a time - ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, - ace_mon, - this->timer_queue_->mutex (), - -1); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, this->timer_queue_->mutex (), -1); // Schedule the timer long result = this->timer_queue_->schedule (&handler, @@ -749,8 +637,7 @@ ACE_Proactor::create_asynch_read_stream_result (ACE_Handler &handler, u_long bytes_to_read, const void* act, ACE_HANDLE event, - int priority, - int signal_number) + int priority) { return this->implementation ()->create_asynch_read_stream_result (handler, handle, @@ -758,8 +645,7 @@ ACE_Proactor::create_asynch_read_stream_result (ACE_Handler &handler, bytes_to_read, act, event, - priority, - signal_number); + priority); } @@ -770,8 +656,7 @@ ACE_Proactor::create_asynch_write_stream_result (ACE_Handler &handler, u_long bytes_to_write, const void* act, ACE_HANDLE event, - int priority, - int signal_number) + int priority) { return this->implementation ()->create_asynch_write_stream_result (handler, @@ -780,8 +665,7 @@ ACE_Proactor::create_asynch_write_stream_result (ACE_Handler &handler, bytes_to_write, act, event, - priority, - signal_number); + priority); } @@ -795,8 +679,7 @@ ACE_Proactor::create_asynch_read_file_result (ACE_Handler &handler, u_long offset, u_long offset_high, ACE_HANDLE event, - int priority, - int signal_number) + int priority) { return this->implementation ()->create_asynch_read_file_result (handler, @@ -807,8 +690,7 @@ ACE_Proactor::create_asynch_read_file_result (ACE_Handler &handler, offset, offset_high, event, - priority, - signal_number); + priority); } @@ -822,8 +704,7 @@ ACE_Proactor::create_asynch_write_file_result (ACE_Handler &handler, u_long offset, u_long offset_high, ACE_HANDLE event, - int priority, - int signal_number) + int priority) { return this->implementation ()->create_asynch_write_file_result (handler, @@ -834,8 +715,7 @@ ACE_Proactor::create_asynch_write_file_result (ACE_Handler &handler, offset, offset_high, event, - priority, - signal_number); + priority); } @@ -847,8 +727,7 @@ ACE_Proactor::create_asynch_accept_result (ACE_Handler &handler, u_long bytes_to_read, const void* act, ACE_HANDLE event, - int priority, - int signal_number) + int priority) { return this->implementation ()->create_asynch_accept_result (handler, @@ -858,8 +737,7 @@ ACE_Proactor::create_asynch_accept_result (ACE_Handler &handler, bytes_to_read, act, event, - priority, - signal_number); + priority); } ACE_Asynch_Transmit_File_Result_Impl * @@ -874,8 +752,7 @@ ACE_Proactor::create_asynch_transmit_file_result (ACE_Handler &handler, u_long flags, const void *act, ACE_HANDLE event, - int priority, - int signal_number) + int priority) { return this->implementation ()->create_asynch_transmit_file_result (handler, @@ -889,8 +766,7 @@ ACE_Proactor::create_asynch_transmit_file_result (ACE_Handler &handler, flags, act, event, - priority, - signal_number); + priority); } ACE_Asynch_Result_Impl * @@ -898,21 +774,13 @@ ACE_Proactor::create_asynch_timer (ACE_Handler &handler, const void *act, const ACE_Time_Value &tv, ACE_HANDLE event, - int priority, - int signal_number) + int priority) { return this->implementation ()->create_asynch_timer (handler, act, tv, event, - priority, - signal_number); -} - -int -ACE_Proactor::post_wakeup_completions (int how_many) -{ - return ACE_Proactor::instance ()->implementation ()->post_wakeup_completions (how_many); + priority); } void diff --git a/ace/Proactor.h b/ace/Proactor.h index 7c08bfac14b..abc0d605a82 100644 --- a/ace/Proactor.h +++ b/ace/Proactor.h @@ -177,9 +177,7 @@ public: static int end_event_loop (void); // Instruct the <ACE_Proactor::instance> to terminate its event - // loop. - // This method wakes up all the threads blocked on waiting for - // completions and end the event loop. + // loop. static int event_loop_done (void); // Report if the <ACE_Proactor::instance> event loop is finished. @@ -306,9 +304,8 @@ public: ACE_Message_Block &message_block, u_long bytes_to_read, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority); // Create the correct implementation class for ACE_Asynch_Read_Stream::Result class. virtual ACE_Asynch_Write_Stream_Result_Impl *create_asynch_write_stream_result (ACE_Handler &handler, @@ -316,9 +313,8 @@ public: ACE_Message_Block &message_block, u_long bytes_to_write, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority); // Create the correct implementation class for ACE_Asynch_Write_Stream::Result. virtual ACE_Asynch_Read_File_Result_Impl *create_asynch_read_file_result (ACE_Handler &handler, @@ -328,9 +324,8 @@ public: const void* act, u_long offset, u_long offset_high, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority); // Create the correct implementation class for ACE_Asynch_Read_File::Result. virtual ACE_Asynch_Write_File_Result_Impl *create_asynch_write_file_result (ACE_Handler &handler, @@ -340,9 +335,8 @@ public: const void* act, u_long offset, u_long offset_high, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority); // Create the correct implementation class for ACE_Asynch_Write_File::Result. virtual ACE_Asynch_Accept_Result_Impl *create_asynch_accept_result (ACE_Handler &handler, @@ -351,9 +345,8 @@ public: ACE_Message_Block &message_block, u_long bytes_to_read, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority); // Create the correct implementation class for ACE_Asynch_Accept::Result. virtual ACE_Asynch_Transmit_File_Result_Impl *create_asynch_transmit_file_result (ACE_Handler &handler, @@ -366,30 +359,19 @@ public: u_long bytes_per_send, u_long flags, const void *act, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority); // Create the correct implementation class for ACE_Asynch_Transmit_File::Result. - + virtual ACE_Asynch_Result_Impl *create_asynch_timer (ACE_Handler &handler, const void *act, const ACE_Time_Value &tv, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); + ACE_HANDLE event, + int priority = 0); // Create a timer result object which can be used with the Timer - // mechanism of the Proactor. - // If <signal_number> is -1, <POSIX_SIG_Proactor> will create a - // Timer object with a meaningful signal number, choosing the - // largest signal number from the signal mask of the Proactor. + // mechanism of the Proactor. protected: - - static int post_wakeup_completions (int how_many); - // Post <how_many> completions to the completion port so that all - // threads can wake up. This is used in conjunction with the - // <run_event_loop>. - virtual void implementation (ACE_Proactor_Impl *implementation); // Set the implementation class. @@ -422,9 +404,6 @@ protected: static sig_atomic_t end_event_loop_; // Terminate the proactor event loop. - static sig_atomic_t event_loop_thread_count_; - // Number of threads in the event loop. - private: ACE_Proactor (const ACE_Proactor &); ACE_Proactor &operator= (const ACE_Proactor &); diff --git a/ace/Proactor_Impl.h b/ace/Proactor_Impl.h index 16d5b65d08f..347de43fcd7 100644 --- a/ace/Proactor_Impl.h +++ b/ace/Proactor_Impl.h @@ -85,7 +85,7 @@ public: // methods. virtual ACE_Asynch_Read_Stream_Impl *create_asynch_read_stream (void) = 0; - // Create the correct implementation class for doing Asynch_Read_Stream. + // Create the correct implementation class for doing Asynch_Read_Stream. virtual ACE_Asynch_Write_Stream_Impl *create_asynch_write_stream (void) = 0; // Create the correct implementation class for doing Asynch_Write_Stream. @@ -113,7 +113,7 @@ public: ACE_Message_Block &message_block, u_long bytes_to_read, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, + ACE_HANDLE event, int priority = 0, int signal_number = ACE_SIGRTMIN) = 0; // Create the correct implementation class for ACE_Asynch_Read_Stream::Result class. @@ -123,7 +123,7 @@ public: ACE_Message_Block &message_block, u_long bytes_to_write, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, + ACE_HANDLE event, int priority = 0, int signal_number = ACE_SIGRTMIN) = 0; // Create the correct implementation class for ACE_Asynch_Write_Stream::Result. @@ -135,7 +135,7 @@ public: const void* act, u_long offset, u_long offset_high, - ACE_HANDLE event = ACE_INVALID_HANDLE, + ACE_HANDLE event, int priority = 0, int signal_number = ACE_SIGRTMIN) = 0; // Create the correct implementation class for ACE_Asynch_Read_File::Result. @@ -147,7 +147,7 @@ public: const void* act, u_long offset, u_long offset_high, - ACE_HANDLE event = ACE_INVALID_HANDLE, + ACE_HANDLE event, int priority = 0, int signal_number = ACE_SIGRTMIN) = 0; // Create the correct implementation class for ACE_Asynch_Write_File::Result. @@ -158,7 +158,7 @@ public: ACE_Message_Block &message_block, u_long bytes_to_read, const void* act, - ACE_HANDLE event = ACE_INVALID_HANDLE, + ACE_HANDLE event, int priority = 0, int signal_number = ACE_SIGRTMIN) = 0; // Create the correct implementation class for ACE_Asynch_Accept::Result. @@ -173,7 +173,7 @@ public: u_long bytes_per_send, u_long flags, const void *act, - ACE_HANDLE event = ACE_INVALID_HANDLE, + ACE_HANDLE event, int priority = 0, int signal_number = ACE_SIGRTMIN) = 0; // Create the correct implementation class for ACE_Asynch_Transmit_File::Result. @@ -181,17 +181,10 @@ public: virtual ACE_Asynch_Result_Impl *create_asynch_timer (ACE_Handler &handler, const void *act, const ACE_Time_Value &tv, - ACE_HANDLE event = ACE_INVALID_HANDLE, + ACE_HANDLE event, int priority = 0, - int signal_number = 0) = 0; - // Create the correct implementation object for the Timer - // result. POSIX_SIG_Proactor will create a Timer object with a - // meaningful signal number, if you leave the signal number as 0. - - virtual int post_wakeup_completions (int how_many) = 0; - // Post <how_many> completions to the completion port so that all - // threads can wake up. This is used in conjunction with the - // <run_event_loop>. + int signal_number = ACE_SIGRTMIN) = 0; + // Create the correct implementation object for the Timer result. }; #endif /* (ACE_WIN32 && ACE_HAS_WINCE) || ACE_HAS_AIO_CALLS */ diff --git a/ace/Process.cpp b/ace/Process.cpp index 2f4abe189f7..3a7606d4cc4 100644 --- a/ace/Process.cpp +++ b/ace/Process.cpp @@ -92,8 +92,7 @@ ACE_Process::spawn (ACE_Process_Options &options) return this->child_id_; #else /* ACE_WIN32 */ // Fork the new process. - this->child_id_ = ACE::fork (options.command_line_argv ()[0], - options.avoid_zombies ()); + this->child_id_ = ACE_OS::fork (options.command_line_argv ()[0]); // If we're not supposed to exec, return the process id. if (ACE_BIT_ENABLED (options.creation_flags (), ACE_Process_Options::NO_EXEC)) @@ -226,7 +225,6 @@ ACE_Process_Options::ACE_Process_Options (int ie, stdin_ (ACE_INVALID_HANDLE), stdout_ (ACE_INVALID_HANDLE), stderr_ (ACE_INVALID_HANDLE), - avoid_zombies_ (0), #endif /* ACE_WIN32 */ set_handles_called_ (0), environment_buf_index_ (0), diff --git a/ace/Process.h b/ace/Process.h index b80b0020e12..7a1bf830bb4 100644 --- a/ace/Process.h +++ b/ace/Process.h @@ -188,10 +188,6 @@ public: ACE_HANDLE get_stdout (void); ACE_HANDLE get_stderr (void); - void avoid_zombies (int); - // Set value for avoid_zombies. - int avoid_zombies (void); - // Get current value for avoid_zombies. #endif /* ACE_WIN32 */ protected: @@ -238,8 +234,6 @@ protected: ACE_HANDLE stdin_; ACE_HANDLE stdout_; ACE_HANDLE stderr_; - // Avoid zombies for spawned processes. - int avoid_zombies_; #endif /* ACE_WIN32 */ #if !defined (ACE_HAS_WINCE) diff --git a/ace/Process.i b/ace/Process.i index ce83a1ec6af..8d68339895f 100644 --- a/ace/Process.i +++ b/ace/Process.i @@ -151,16 +151,6 @@ ACE_Process_Options::get_stderr (void) return stderr_; } -ACE_INLINE int -ACE_Process_Options::avoid_zombies (void) -{ - return avoid_zombies_; -} -ACE_INLINE void -ACE_Process_Options::avoid_zombies (int avoid_zombies) -{ - avoid_zombies_ = avoid_zombies; -} #endif /* ACE_WIN32 */ ACE_INLINE LPTSTR diff --git a/ace/RB_Tree.cpp b/ace/RB_Tree.cpp index 251f5c563e3..5b619313e6d 100644 --- a/ace/RB_Tree.cpp +++ b/ace/RB_Tree.cpp @@ -17,15 +17,15 @@ ACE_RCSID(ace, RB_Tree, "$Id$") -///////////////////////////////////////////////////// -// template class ACE_RB_Tree_Node<EXT_ID, INT_ID> // -///////////////////////////////////////////////////// +///////////////////////////////////////////// +// template class ACE_RB_Tree_Node<KEY, T> // +///////////////////////////////////////////// // Constructor. -template <class EXT_ID, class INT_ID> -ACE_RB_Tree_Node<EXT_ID, INT_ID>::ACE_RB_Tree_Node (const EXT_ID &k, const INT_ID &t) +template <class KEY, class T> +ACE_RB_Tree_Node<KEY, T>::ACE_RB_Tree_Node (const KEY &k, const T &t) : k_ (k) , t_ (t) , color_ (RED) @@ -33,17 +33,14 @@ ACE_RB_Tree_Node<EXT_ID, INT_ID>::ACE_RB_Tree_Node (const EXT_ID &k, const INT_I , left_ (0) , right_ (0) { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::ACE_RB_Tree_Node (const EXT_ID &k, const INT_ID &t)"); } // Destructor. -template <class EXT_ID, class INT_ID> -ACE_RB_Tree_Node<EXT_ID, INT_ID>::~ACE_RB_Tree_Node () +template <class KEY, class T> +ACE_RB_Tree_Node<KEY, T>::~ACE_RB_Tree_Node () { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::~ACE_RB_Tree_Node"); - // Delete left sub-tree. delete left_; @@ -53,113 +50,309 @@ ACE_RB_Tree_Node<EXT_ID, INT_ID>::~ACE_RB_Tree_Node () -//////////////////////////////////////////////// -// template class ACE_RB_Tree<EXT_ID, INT_ID> // -//////////////////////////////////////////////// +//////////////////////////////////////// +// template class ACE_RB_Tree<KEY, T> // +//////////////////////////////////////// // Constructor. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree (ACE_Allocator *alloc) - : allocator_ (alloc), - root_ (0), - current_size_ (0) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree () + : root_ (0) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "ACE_RB_Tree (ACE_Allocator *alloc)"); - if (this->open (alloc) == -1) - ACE_ERROR ((LM_ERROR, ASYS_TEXT ("ACE_RB_Tree::ACE_RB_Tree\n"))); } // Copy constructor. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &rbt) - : allocator_ (rbt.allocator_), - root_ (0), - current_size_ (0) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree (const ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK> &rbt) + : root_ (0) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "ACE_RB_Tree (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &rbt)"); - ACE_WRITE_GUARD (ACE_LOCK, ace_mon, this->lock_); - // Make a deep copy of the passed tree. - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> iter(rbt); + ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK> iter(rbt); for (iter.first (); iter.is_done () == 0; iter.next ()) { - insert_i (*(iter.key ()), *(iter.item ())); + insert (*(iter.key ()), *(iter.item ())); } } + // Destructor. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree () +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree () { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree"); - - // Use the locked public method, to be totally safe, as the - // class can be used with an allocator and placement new. - this->close (); + // Clear away all nodes in the tree. + clear (); } // Assignment operator. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> void -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator = (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &rbt) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> void +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::operator = (const ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK> &rbt) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator ="); - ACE_WRITE_GUARD (ACE_LOCK, ace_mon, this->lock_); - // Clear out the existing tree. - close_i (); + clear (); // Make a deep copy of the passed tree. - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> iter(rbt); + ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK> iter(rbt); for (iter.first (); iter.is_done () == 0; iter.next ()) { - insert_i (*(iter.key ()), *(iter.item ())); + insert (*(iter.key ()), *(iter.item ())); } - - // Use the same allocator as the rhs. - allocator_ = rbt.allocator_; } // Less than comparison function for keys, default // functor implementation returns 1 if k1 < k2, 0 otherwise. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::lessthan (const EXT_ID &k1, const EXT_ID &k2) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> int +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::lessthan (const KEY &k1, const KEY &k2) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::lessthan"); - return this->compare_keys_ (k1, k2); + return this->compare_keys_ (k1, k2); } -// Method for right rotation of the tree about a given node. +// Returns a pointer to the item corresponding to the +// given key, or 0 if it cannot find the key in the tree. + +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> T* +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::find (const KEY &k) +{ + // Find the closest matching node, if there is one. + ACE_RB_Tree_Node<KEY, T> *current = find_node (k); + + if (current) + { + // If a nearest matching node was returned. + if (this->lessthan (current->key (), k) + || this->lessthan (k, current->key ())) + { + // If the keys differ, there is no match: return 0. + return 0; + } + else + { + // The keys match: return a pointer to the node's item. + return &(current->item ()); + } + } + else + { + // The tree is empty: return 0. + return 0; + } +} + + + +// Inserts a *copy* of the key and the item into the tree: +// both the key type KEY and the item type T must have well +// defined semantics for copy construction and < comparison. +// This method returns a pointer to the inserted item copy, +// or 0 if an error occurred. NOTE: if an identical key +// already exists in the tree, no new item is created, and +// the returned pointer addresses the existing item +// associated with the existing key. + +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> T* +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::insert (const KEY &k, const T &t) +{ + // Find the closest matching node, if there is one. + ACE_RB_Tree_Node<KEY, T> *current = find_node (k); + if (current) + { + if (this->lessthan (current->key (), k)) + { + // If a nearest matching node has a key less than the insertion key. + if (current->right ()) + { + // If there is already a right subtree, complain. + ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), + ASYS_TEXT ("\nright subtree already present in " + "ACE_RB_Tree<KEY, T>::insert\n")), 0); + } + else + { + // The right subtree is empty: insert new node there. + current->right (new ACE_RB_Tree_Node<KEY, T> (k, t)); + if (current->right ()) + { + // If the node was successfully inserted, set its parent, rebalance + // the tree, color the root black, and return a pointer to the + // inserted item. + T *item = &(current->right ()->item ()); + current->right ()->parent (current); + RB_rebalance (current->right ()); + root_->color (ACE_RB_Tree_Node_Base::BLACK); + return item; + } + else + { + // Memory allocation failed. + ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), + ASYS_TEXT ("\nmemory allocation to current->right_ failed " + "in ACE_RB_Tree<KEY, T>::insert\n")), 0); + } + } + } + else if (this->lessthan (k, current->key ())) + { + // If a nearest matching node has a key greater than the insertion key. + if (current->left ()) + { + // If there is already a left subtree, complain. + ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), + ASYS_TEXT ("\nleft subtree already present in " + "ACE_RB_Tree<KEY, T>::insert\n")), 0); + } + else + { + // The right subtree is empty: insert new node there. + current->left (new ACE_RB_Tree_Node<KEY, T> (k, t)); + if (current->left ()) + { + // If the node was successfully inserted, set its parent, rebalance + // the tree, color the root black, and return a pointer to the + // inserted item. + T *item = &(current->left ()->item ()); + current->left ()->parent (current); + RB_rebalance (current->left ()); + root_->color (ACE_RB_Tree_Node_Base::BLACK); + return item; + } + else + { + // Memory allocation failed. + ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), + ASYS_TEXT ("\nmemory allocation to current->left_ failed in " + "ACE_RB_Tree<KEY, T>::insert\n")), 0); + } + } + } + else + { + // The keys match: return a pointer to the node's item. + return &(current->item ()); + } + } + else + { + // The tree is empty: insert at the root and color the root black. + root_ = new ACE_RB_Tree_Node<KEY, T> (k, t); + if (root_) + { + root_->color (ACE_RB_Tree_Node_Base::BLACK); + return &(root_->item ()); + } + else + { + ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), + ASYS_TEXT ("\nmemory allocation to root_ failed in " + "ACE_RB_Tree<KEY, T>::insert\n")), 0); + } + } +} + -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> void -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rotate_right (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x) +// Removes the item associated with the given key from the +// tree and destroys it. Returns 1 if it found the item +// and successfully destroyed it, 0 if it did not find the +// item, or -1 if an error occurred. + +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> int +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::remove (const KEY &k) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rotate_right"); + // Find a matching node, if there is one. + ACE_RB_Tree_Node<KEY, T> *x, *z; + + z = find_node (k); + if ((z) && (! this->lessthan (z->key (), k)) + && (! this->lessthan (k, z->key ()))) + { + // There is a matching node: remove and destroy it. + ACE_RB_Tree_Node<KEY, T> *y; + if ((z->left ()) && (z->right ())) + { + y = RB_tree_successor (z); + } + else + { + y = z; + } + if (y->left ()) + { + x = y->left (); + } + else + { + x = y->right (); + } + if (x) + { + x->parent (y->parent ()); + } + if (y->parent ()) + { + if (y == y->parent ()->left ()) + { + y->parent ()->left (x); + } + else + { + y->parent ()->right (x); + } + } + else + { + root_ = x; + } + if (y != z) + { + // Copy the elements of y into z. + z->key () = y->key (); + z->item () = y->item (); + } + if (y->color () == ACE_RB_Tree_Node_Base::BLACK) + { + RB_delete_fixup (x); + } + y->parent (0); + y->right (0); + y->left (0); + delete y; + return 1; + } + else + { + // No matching node was found: return 0. + return 0; + } +} + + +// Method for right rotation of the tree about a given node. + +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> void +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::RB_rotate_right (ACE_RB_Tree_Node<KEY, T> * x) +{ if (! x) { ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("\nerror: x is a null pointer in " - "ACE_RB_Tree<EXT_ID, INT_ID>::RB_rotate_right\n"))); + "ACE_RB_Tree<KEY, T>::RB_rotate_right\n"))); } else if (! (x->left())) { ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("\nerror: x->left () is a null pointer in " - "ACE_RB_Tree<EXT_ID, INT_ID>::RB_rotate_right\n"))); + "ACE_RB_Tree<KEY, T>::RB_rotate_right\n"))); } else { - ACE_RB_Tree_Node<EXT_ID, INT_ID> * y; + ACE_RB_Tree_Node<KEY, T> * y; y = x->left (); x->left (y->right ()); if (y->right ()) @@ -190,26 +383,24 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rotate_right (ACE_RB_Tre // Method for left rotation of the tree about a given node. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> void -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rotate_left (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> void +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::RB_rotate_left (ACE_RB_Tree_Node<KEY, T> * x) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rotate_left"); - if (! x) { ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("\nerror: x is a null pointer in " - "ACE_RB_Tree<EXT_ID, INT_ID>::RB_rotate_left\n"))); + "ACE_RB_Tree<KEY, T>::RB_rotate_left\n"))); } else if (! (x->right())) { ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("\nerror: x->right () is a null pointer " - "in ACE_RB_Tree<EXT_ID, INT_ID>::RB_rotate_left\n"))); + "in ACE_RB_Tree<KEY, T>::RB_rotate_left\n"))); } else { - ACE_RB_Tree_Node<EXT_ID, INT_ID> * y; + ACE_RB_Tree_Node<KEY, T> * y; y = x->right (); x->right (y->left ()); if (y->left ()) @@ -240,107 +431,71 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rotate_left (ACE_RB_Tree // Method for restoring Red-Black properties after deletion. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> void -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_delete_fixup (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> void +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::RB_delete_fixup (ACE_RB_Tree_Node<KEY, T> * x) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_delete_fixup"); - - while (x && - x->parent () && - x->color () == ACE_RB_Tree_Node_Base::BLACK) + while ((x) && (x->parent ()) && (x->color () == ACE_RB_Tree_Node_Base::BLACK)) { if (x == x->parent ()->left ()) { - ACE_RB_Tree_Node<EXT_ID, INT_ID> *w = x->parent ()->right (); - if (w && w->color () == ACE_RB_Tree_Node_Base::RED) + ACE_RB_Tree_Node<KEY, T> *w = x->parent ()->right (); + if (w->color () == ACE_RB_Tree_Node_Base::RED) { w->color (ACE_RB_Tree_Node_Base::BLACK); x->parent ()->color (ACE_RB_Tree_Node_Base::RED); RB_rotate_left (x->parent ()); w = x->parent ()->right (); } - // CLR pp. 263 says that nil nodes are implicitly colored BLACK - if ((w) && - (!w->left () || - w->left ()->color () == ACE_RB_Tree_Node_Base::BLACK) && - (!w->right () || - w->right ()->color () == ACE_RB_Tree_Node_Base::BLACK)) + if ((w->left ()->color () == ACE_RB_Tree_Node_Base::BLACK) && + (w->right ()->color () == ACE_RB_Tree_Node_Base::BLACK)) { w->color (ACE_RB_Tree_Node_Base::RED); x = x->parent (); } else { - // CLR pp. 263 says that nil nodes are implicitly colored BLACK - if (w && - (!w->right () || - w->right ()->color () == ACE_RB_Tree_Node_Base::BLACK)) + if (w->right ()->color () == ACE_RB_Tree_Node_Base::BLACK) { - if (w->left ()) - { - w->left ()->color (ACE_RB_Tree_Node_Base::BLACK); - } + w->left ()->color (ACE_RB_Tree_Node_Base::BLACK); w->color (ACE_RB_Tree_Node_Base::RED); RB_rotate_right (w); w = x->parent ()->right (); } - if (w) - { - w->color (x->parent ()->color ()); - if (w->right ()) - { - w->right ()->color (ACE_RB_Tree_Node_Base::BLACK); - } - } + w->color (x->parent ()->color ()); x->parent ()->color (ACE_RB_Tree_Node_Base::BLACK); + w->right ()->color (ACE_RB_Tree_Node_Base::BLACK); RB_rotate_left (x->parent ()); x = root_; } } else { - ACE_RB_Tree_Node<EXT_ID, INT_ID> *w = x->parent ()->left (); - if (w && w->color () == ACE_RB_Tree_Node_Base::RED) + ACE_RB_Tree_Node<KEY, T> *w = x->parent ()->left (); + if (w->color () == ACE_RB_Tree_Node_Base::RED) { w->color (ACE_RB_Tree_Node_Base::BLACK); x->parent ()->color (ACE_RB_Tree_Node_Base::RED); RB_rotate_right (x->parent ()); w = x->parent ()->left (); } - // CLR pp. 263 says that nil nodes are implicitly colored BLACK - if (w && - (!w->left () || - w->left ()->color () == ACE_RB_Tree_Node_Base::BLACK) && - (!w->right () || - w->right ()->color () == ACE_RB_Tree_Node_Base::BLACK)) + if ((w->left ()->color () == ACE_RB_Tree_Node_Base::BLACK) && + (w->right ()->color () == ACE_RB_Tree_Node_Base::BLACK)) { w->color (ACE_RB_Tree_Node_Base::RED); x = x->parent (); } else { - // CLR pp. 263 says that nil nodes are implicitly colored BLACK - if (w && - (!w->left () || - w->left ()->color () == ACE_RB_Tree_Node_Base::BLACK)) + if (w->left ()->color () == ACE_RB_Tree_Node_Base::BLACK) { + w->right ()->color (ACE_RB_Tree_Node_Base::BLACK); w->color (ACE_RB_Tree_Node_Base::RED); - if (w->right ()) - { - w->right ()->color (ACE_RB_Tree_Node_Base::BLACK); - } RB_rotate_left (w); w = x->parent ()->left (); } - if (w) - { - w->color (x->parent ()->color ()); - if (w->left ()) - { - w->left ()->color (ACE_RB_Tree_Node_Base::BLACK); - } - } + w->color (x->parent ()->color ()); x->parent ()->color (ACE_RB_Tree_Node_Base::BLACK); + w->left ()->color (ACE_RB_Tree_Node_Base::BLACK); RB_rotate_right (x->parent ()); x = root_; } @@ -360,13 +515,10 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_delete_fixup (ACE_RB_Tre // if the tree is not empty and there is no such match, // or 0 if the tree is empty. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<EXT_ID, INT_ID> * -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find_node (const EXT_ID &k, ACE_RB_Tree_Base::RB_SearchResult &result) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<KEY, T> * +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::find_node (const KEY &k) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find_node"); - - // Start at the root. - ACE_RB_Tree_Node<EXT_ID, INT_ID> *current = root_; + ACE_RB_Tree_Node<KEY, T> *current = root_; while (current) { @@ -381,9 +533,7 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find_node (const EXT_ID &k, } else { - // If the right subtree is empty, we're done searching, - // and are positioned to the left of the insertion point. - result = LEFT; + // If the right subtree is empty, we're done. break; } } @@ -397,16 +547,13 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find_node (const EXT_ID &k, } else { - // If the left subtree is empty, we're done searching, - // and are positioned to the right of the insertion point. - result = RIGHT; + // If the left subtree is empty, we're done. break; } } else { - // If the keys match exactly, we're done as well. - result = EXACT; + // If the keys match, we're done. break; } } @@ -417,30 +564,27 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find_node (const EXT_ID &k, // Rebalance the tree after insertion of a node. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> void -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rebalance (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> void +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::RB_rebalance (ACE_RB_Tree_Node<KEY, T> * x) { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rebalance"); - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *y = 0; + ACE_RB_Tree_Node<KEY, T> *y = 0; - while (x && - x->parent () && - x->parent ()->color () == ACE_RB_Tree_Node_Base::RED) + while ((x) && (x->parent ()) + && (x->parent ()->color () == ACE_RB_Tree_Node_Base::RED)) { if (! x->parent ()->parent ()) { // If we got here, something is drastically wrong! ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("\nerror: parent's parent is null in " - "ACE_RB_Tree<EXT_ID, INT_ID>::RB_rebalance\n"))); + "ACE_RB_Tree<KEY, T>::RB_rebalance\n"))); return; } if (x->parent () == x->parent ()->parent ()->left ()) { y = x->parent ()->parent ()->right (); - if (y && y->color () == ACE_RB_Tree_Node_Base::RED) + if (y && (y->color () == ACE_RB_Tree_Node_Base::RED)) { // Handle case 1 (see CLR book, pp. 269). x->parent ()->color (ACE_RB_Tree_Node_Base::BLACK); @@ -466,7 +610,7 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rebalance (ACE_RB_Tree_N else { y = x->parent ()->parent ()->left (); - if (y && y->color () == ACE_RB_Tree_Node_Base::RED) + if (y && (y->color () == ACE_RB_Tree_Node_Base::RED)) { // Handle case 1 (see CLR book, pp. 269). x->parent ()->color (ACE_RB_Tree_Node_Base::BLACK); @@ -495,17 +639,15 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_rebalance (ACE_RB_Tree_N // Method to find the successor node of the given node in the tree. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<EXT_ID, INT_ID> * -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_successor (ACE_RB_Tree_Node<EXT_ID, INT_ID> *x) const +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<KEY, T> * +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::RB_tree_successor (ACE_RB_Tree_Node<KEY, T> *x) const { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_successor"); - if (x->right ()) { return RB_tree_minimum (x->right ()); } - ACE_RB_Tree_Node<EXT_ID, INT_ID> *y = x->parent (); + ACE_RB_Tree_Node<KEY, T> *y = x->parent (); while ((y) && (x == y->right ())) { x = y; @@ -518,17 +660,15 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_successor (ACE_RB_T // Method to find the predecessor node of the given node in the tree. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<EXT_ID, INT_ID> * -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_predecessor (ACE_RB_Tree_Node<EXT_ID, INT_ID> *x) const +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<KEY, T> * +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::RB_tree_predecessor (ACE_RB_Tree_Node<KEY, T> *x) const { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_predecessor"); - if (x->left ()) { return RB_tree_maximum (x->left ()); } - ACE_RB_Tree_Node<EXT_ID, INT_ID> *y = x->parent (); + ACE_RB_Tree_Node<KEY, T> *y = x->parent (); while ((y) && (x == y->left ())) { x = y; @@ -541,11 +681,9 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_predecessor (ACE_RB // Method to find the minimum node of the subtree rooted at the given node. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<EXT_ID, INT_ID> * -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_minimum (ACE_RB_Tree_Node<EXT_ID, INT_ID> *x) const +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<KEY, T> * +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::RB_tree_minimum (ACE_RB_Tree_Node<KEY, T> *x) const { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_minimum"); - while ((x) && (x->left ())) { x = x->left (); @@ -557,11 +695,9 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_minimum (ACE_RB_Tre // Method to find the maximum node of the subtree rooted at the given node. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<EXT_ID, INT_ID> * -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_maximum (ACE_RB_Tree_Node<EXT_ID, INT_ID> *x) const +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_RB_Tree_Node<KEY, T> * +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::RB_tree_maximum (ACE_RB_Tree_Node<KEY, T> *x) const { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_maximum"); - while ((x) && (x->right ())) { x = x->right (); @@ -570,490 +706,30 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::RB_tree_maximum (ACE_RB_Tre return x; } -// Close down an RB_Tree. this method should -// only be called with locks already held. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::close_i () -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::close_i"); - - delete root_; - current_size_ = 0; - root_ = 0; - - return 0; -} - -// Returns a pointer to the item corresponding to the given key, -// or 0 if it cannot find the key in the tree. This method should -// only be called with locks already held. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find_i (const EXT_ID &k, - ACE_RB_Tree_Node<EXT_ID, INT_ID>* &entry) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find_i"); - - // Try to find a match. - RB_SearchResult result = LEFT; - ACE_RB_Tree_Node<EXT_ID, INT_ID> *current = find_node (k, result); - - if (current && result == EXACT) - { - // Found an exact match: return a pointer to the node. - entry = current; - return 0; - } - else - { - // The node is not there. - return -1; - } -} - - -// Inserts a *copy* of the key and the item into the tree: -// both the key type EXT_ID and the item type INT_ID must have well -// defined semantics for copy construction and < comparison. -// This method returns a pointer to the inserted item copy, -// or 0 if an error occurred. NOTE: if an identical key -// already exists in the tree, no new item is created, and -// the returned pointer addresses the existing item -// associated with the existing key. This method should -// only be called with locks already held. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> INT_ID* -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::insert_i (const EXT_ID &k, const INT_ID &t) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::insert_i (const EXT_ID &k, const INT_ID &t)"); - - // Find the closest matching node, if there is one. - RB_SearchResult result = LEFT; - ACE_RB_Tree_Node<EXT_ID, INT_ID> *current = find_node (k, result); - if (current) - { - // If the keys match, just return a pointer to the node's item. - if (result == EXACT) - { - return &(current->item ()); - } - // Otherwise if we're to the left of the insertion - // point, insert into the right subtree. - else if (result == LEFT) - { - if (current->right ()) - { - // If there is already a right subtree, complain. - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nright subtree already present in " - "ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), 0); - } - else - { - // The right subtree is empty: insert new node there. - current->right (new ACE_RB_Tree_Node<EXT_ID, INT_ID> (k, t)); - if (current->right ()) - { - // If the node was successfully inserted, set its parent, rebalance - // the tree, color the root black, and return a pointer to the - // inserted item. - INT_ID *item = &(current->right ()->item ()); - current->right ()->parent (current); - RB_rebalance (current->right ()); - root_->color (ACE_RB_Tree_Node_Base::BLACK); - ++current_size_; - return item; - } - else - { - // Memory allocation failed. - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nmemory allocation to current->right_ failed " - "in ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), 0); - } - } - } - // Otherwise, we're to the right of the insertion - // point, so insert into the left subtree. - else // (result == RIGHT) - { - if (current->left ()) - { - // If there is already a left subtree, complain. - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nleft subtree already present in " - "ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), 0); - } - else - { - // The left subtree is empty: insert new node there. - current->left (new ACE_RB_Tree_Node<EXT_ID, INT_ID> (k, t)); - if (current->left ()) - { - // If the node was successfully inserted, set its parent, rebalance - // the tree, color the root black, and return a pointer to the - // inserted item. - INT_ID *item = &(current->left ()->item ()); - current->left ()->parent (current); - RB_rebalance (current->left ()); - root_->color (ACE_RB_Tree_Node_Base::BLACK); - ++current_size_; - return item; - } - else - { - // Memory allocation failed. - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nmemory allocation to current->left_ failed in " - "ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), 0); - } - } - } - } - else - { - // The tree is empty: insert at the root and color the root black. - root_ = new ACE_RB_Tree_Node<EXT_ID, INT_ID> (k, t); - if (root_) - { - root_->color (ACE_RB_Tree_Node_Base::BLACK); - ++current_size_; - return &(root_->item ()); - } - else - { - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nmemory allocation to root_ failed in " - "ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), 0); - } - } -} - - -// Inserts a *copy* of the key and the item into the tree: both the -// key type EXT_ID and the item type INT_ID must have well defined semantics -// for copy construction. The default implementation also requires that -// the key type support well defined < semantics. This method passes back -// a pointer to the inserted (or existing) node, and the search status. If -// the node already exists, the method returns 1. If the node does not -// exist, and a new one is successfully created, and the method returns 0. -// If there was an error, the method returns -1. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::insert_i (const EXT_ID &k, const INT_ID &t, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::insert_i (const EXT_ID &k, const INT_ID &t, " - "ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry)"); - - // Find the closest matching node, if there is one. - RB_SearchResult result = LEFT; - ACE_RB_Tree_Node<EXT_ID, INT_ID> *current = find_node (k, result); - if (current) - { - // If the keys match, just return a pointer to the node's item. - if (result == EXACT) - { - entry = current; - return 1; - } - // Otherwise if we're to the left of the insertion - // point, insert into the right subtree. - else if (result == LEFT) - { - if (current->right ()) - { - // If there is already a right subtree, complain. - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nright subtree already present in " - "ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), -1); - } - else - { - // The right subtree is empty: insert new node there. - current->right (new ACE_RB_Tree_Node<EXT_ID, INT_ID> (k, t)); - if (current->right ()) - { - // If the node was successfully inserted, set its parent, rebalance - // the tree, color the root black, and return a pointer to the - // inserted item. - entry = current->right (); - current->right ()->parent (current); - RB_rebalance (current->right ()); - root_->color (ACE_RB_Tree_Node_Base::BLACK); - ++current_size_; - return 0; - } - else - { - // Memory allocation failed. - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nmemory allocation to current->right_ failed " - "in ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), -1); - } - } - } - // Otherwise, we're to the right of the insertion - // point, so insert into the left subtree. - else // (result == RIGHT) - { - if (current->left ()) - { - // If there is already a left subtree, complain. - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nleft subtree already present in " - "ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), -1); - } - else - { - // The left subtree is empty: insert new node there. - current->left (new ACE_RB_Tree_Node<EXT_ID, INT_ID> (k, t)); - if (current->left ()) - { - // If the node was successfully inserted, set its parent, rebalance - // the tree, color the root black, and return a pointer to the - // inserted item. - entry = current->left (); - current->left ()->parent (current); - RB_rebalance (current->left ()); - root_->color (ACE_RB_Tree_Node_Base::BLACK); - ++current_size_; - return 0; - } - else - { - // Memory allocation failed. - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nmemory allocation to current->left_ failed in " - "ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), -1); - } - } - } - } - else - { - // The tree is empty: insert at the root and color the root black. - root_ = new ACE_RB_Tree_Node<EXT_ID, INT_ID> (k, t); - if (root_) - { - root_->color (ACE_RB_Tree_Node_Base::BLACK); - ++current_size_; - entry = root_; - return 0; - } - else - { - ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"), - ASYS_TEXT ("\nmemory allocation to root_ failed in " - "ACE_RB_Tree<EXT_ID, INT_ID>::insert_i\n")), -1); - } - } -} - - -// Removes the item associated with the given key from the -// tree and destroys it. Returns 1 if it found the item -// and successfully destroyed it, 0 if it did not find the -// item, or -1 if an error occurred. This method should -// only be called with locks already held. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::remove_i (const EXT_ID &k, INT_ID &i) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::remove_i (const EXT_ID &k, INT_ID &i)"); - // Find a matching node, if there is one. - ACE_RB_Tree_Node<EXT_ID, INT_ID> *z; - RB_SearchResult result = LEFT; - z = find_node (k, result); - // If there is a matching node: remove and destroy it. - if (z && result == EXACT) - { - // Return the internal id stored in the deleted node. - i = z->item (); - return (-1 == this->remove_i (z)) ? -1 : 1; - } - else - { - // No matching node was found: return 0. - return 0; - } -} - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::remove_i (ACE_RB_Tree_Node<EXT_ID, INT_ID> *z) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::remove_i (ACE_RB_Tree_Node<EXT_ID, INT_ID> *z)"); - - // Delete the node and reorganize the tree to satisfy the Red-Black properties. - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *x, *y; - - if ((z->left ()) && (z->right ())) - { - y = RB_tree_successor (z); - } - else - { - y = z; - } - if (y->left ()) - { - x = y->left (); - } - else - { - x = y->right (); - } - if (x) - { - x->parent (y->parent ()); - } - if (y->parent ()) - { - if (y == y->parent ()->left ()) - { - y->parent ()->left (x); - } - else - { - y->parent ()->right (x); - } - } - else - { - root_ = x; - } - if (y != z) - { - // Copy the elements of y into z. - z->key () = y->key (); - z->item () = y->item (); - } - // CLR pp. 263 says that nil nodes are implicitly colored BLACK - if (!y || y->color () == ACE_RB_Tree_Node_Base::BLACK) - { - RB_delete_fixup (x); - } - y->parent (0); - y->right (0); - y->left (0); - delete y; - --current_size_; - - return 0; -} - - - -/////////////////////////////////////////////////////////////////////// -// template class // -// ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> // -/////////////////////////////////////////////////////////////////////// - -ACE_ALLOC_HOOK_DEFINE(ACE_RB_Tree_Iterator_Base) - -// Constructor. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Iterator_Base (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &tree, int set_first) - : tree_ (&tree), node_ (0) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Iterator_Base (ACE_RB_Tree, int)"); - - // Position the iterator at the first (or last) node in the tree. - if (set_first) - { - node_ = tree_->RB_tree_minimum (tree_->root_); - } - else - { - node_ = tree_->RB_tree_maximum (tree_->root_); - } -} - -// Copy constructor. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Iterator_Base (const ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &iter) - : tree_ (iter.tree_), - node_ (iter.node_) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Iterator_Base (ACE_RB_Tree_Iterator_Base)"); -} - -// Assignment operator. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> void -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator= (const ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &iter) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator="); - tree_ = iter.tree_; - node_ = iter.node_; -} - - -// Destructor. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree_Iterator_Base () -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree_Iterator_Base"); -} - - -////////////////////////////////////////////////////////////////// -// template class // -// ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> // -////////////////////////////////////////////////////////////////// - -ACE_ALLOC_HOOK_DEFINE(ACE_RB_Tree_Iterator) - -// Constructor. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Iterator (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &tree, - int set_first) - : ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> (tree, set_first) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Iterator"); -} - - -// Destructor. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree_Iterator () -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree_Iterator"); -} -////////////////////////////////////////////////////////////////////////// -// template class // -// ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> // -////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////// +// template class ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK> // +////////////////////////////////////////////////////////// -ACE_ALLOC_HOOK_DEFINE(ACE_RB_Tree_Reverse_Iterator) // Constructor. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Reverse_Iterator (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &tree, int set_last) - : ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> (tree, set_last ? 0 : 1) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Iterator (const ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK> &tree) + : tree_ (tree), node_ (0) { - ACE_TRACE ("ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::ACE_RB_Tree_Reverse_Iterator"); + // Position the iterator at the first node in the tree. + first (); } // Destructor. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree_Reverse_Iterator () +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree_Iterator () { - ACE_TRACE ("ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::~ACE_RB_Tree_Reverse_Iterator"); } diff --git a/ace/RB_Tree.h b/ace/RB_Tree.h index 5d20fcb6aee..a58a07d540f 100644 --- a/ace/RB_Tree.h +++ b/ace/RB_Tree.h @@ -17,54 +17,38 @@ #ifndef ACE_RB_TREE_H #define ACE_RB_TREE_H -#include "ace/OS.h" +#include "ace/ACE.h" #include "ace/Functor.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -// Forward decl. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -class ACE_RB_Tree_Iterator_Base; - -// Forward decl. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -class ACE_RB_Tree_Iterator; - -// Forward decl. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -class ACE_RB_Tree_Reverse_Iterator; - -// Forward decl. -class ACE_Allocator; - class ACE_RB_Tree_Node_Base { public: enum RB_Tree_Node_Color {RED, BLACK}; }; -template <class EXT_ID, class INT_ID> +template <class KEY, class T> class ACE_RB_Tree_Node : public ACE_RB_Tree_Node_Base { // = TITLE // Implements a node in a Red-Black Tree ADT. - // public: // Initialization and termination methods. - ACE_RB_Tree_Node (const EXT_ID &k, const INT_ID &t); + ACE_RB_Tree_Node (const KEY &k, const T &t); // Constructor. ~ACE_RB_Tree_Node (void); // Destructor. - EXT_ID &key (void); + KEY &key (void); // Key accessor. - INT_ID &item (void); + T &item (void); // Item accessor. void color (RB_Tree_Node_Color c); @@ -73,596 +57,199 @@ public: RB_Tree_Node_Color color (void); // Get color of the node. - ACE_RB_Tree_Node<EXT_ID, INT_ID> *parent (void); + ACE_RB_Tree_Node<KEY, T> *parent (void); // Accessor for node's parent pointer. - void parent (ACE_RB_Tree_Node<EXT_ID, INT_ID> * p); + void parent (ACE_RB_Tree_Node<KEY, T> * p); // Mutator for node's parent pointer. - ACE_RB_Tree_Node<EXT_ID, INT_ID> *left (void); + ACE_RB_Tree_Node<KEY, T> *left (void); // Accessor for node's left child pointer. - void left (ACE_RB_Tree_Node<EXT_ID, INT_ID> *l); + void left (ACE_RB_Tree_Node<KEY, T> *l); // Mutator for node's left child pointer. - ACE_RB_Tree_Node<EXT_ID, INT_ID> *right (void); + ACE_RB_Tree_Node<KEY, T> *right (void); // Accessor for node's right child pointer. - void right (ACE_RB_Tree_Node<EXT_ID, INT_ID> * r); + void right (ACE_RB_Tree_Node<KEY, T> * r); // Mutator for node's right child pointer private: - EXT_ID k_; + KEY k_; // The key. - INT_ID t_; + T t_; // The item. RB_Tree_Node_Color color_; // Color of the node. - ACE_RB_Tree_Node<EXT_ID, INT_ID> *parent_; + ACE_RB_Tree_Node<KEY, T> *parent_; // Pointer to node's parent. - ACE_RB_Tree_Node<EXT_ID, INT_ID> *left_; + ACE_RB_Tree_Node<KEY, T> *left_; // Pointer to node's left child. - ACE_RB_Tree_Node<EXT_ID, INT_ID> *right_; + ACE_RB_Tree_Node<KEY, T> *right_; // Pointer to node's right child. }; - -class ACE_RB_Tree_Base -{ -public: - // = Search result enumeration. - enum RB_SearchResult {LEFT, EXACT, RIGHT}; -}; - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -class ACE_RB_Tree : public ACE_RB_Tree_Base +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> +class ACE_RB_Tree { // = TITLE - // Implements a Red-Black Tree ADT, according to T. H. Corman, - // C. E. Leiserson, and R. L. Rivest, "Introduction to Algorithms" - // 1990, MIT, chapter 14. + // Implements a Red-Black Tree ADT, according to T. H. Corman, + // C. E. Leiserson, and R. L. Rivest, "Introduction to Algorithms" + // 1990, MIT, chapter 14. // // = Description - // A number of Changes have been made to this class template - // in order to conform to the ACE_Hash_Map_Manager_Ex - // interface. All previously supported public methods are - // still part of this class. However, these are marked as - // DEPRECATED and will be removed from this class in - // a future version of ACE. Please migrate your code - // to the appropriate public methods indicated in the - // method deprecation comments. - // - // This class uses an <ACE_Allocator> to allocate memory. The - // user can make this a persistent class by providing an - // <ACE_Allocator> with a persistable memory pool. - + // If an ACE allocator is passed to the RB_Tree constructor, it is used + // for all dynamic allocations done by the tree. public: - friend class ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>; - friend class ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>; - friend class ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>; - - typedef EXT_ID KEY; - typedef INT_ID VALUE; - typedef ACE_RB_Tree_Node<EXT_ID, INT_ID> ENTRY; - - // = ACE-style iterator typedefs. - typedef ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> ITERATOR; - typedef ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> REVERSE_ITERATOR; - - // = STL-style iterator typedefs. - typedef ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> iterator; - typedef ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> reverse_iterator; - // = Initialization and termination methods. - - ACE_RB_Tree (ACE_Allocator *alloc = 0); + ACE_RB_Tree (); // Constructor. - ACE_RB_Tree (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &rbt); + ACE_RB_Tree (const ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK> &rbt); // Copy constructor. - int open (ACE_Allocator *alloc = 0); - // Initialize an RB Tree. - - int close (void); - // Close down an RB_Tree and release dynamically allocated - // resources. - virtual ~ACE_RB_Tree (void); // Destructor. - // = insertion, removal, and search methods. - - int bind (const EXT_ID &item, - const INT_ID &int_id); - // Associate <ext_id> with <int_id>. If <ext_id> is already in the - // tree then the <ACE_RB_Tree_Node> is not changed. Returns 0 if a - // new entry is bound successfully, returns 1 if an attempt is made - // to bind an existing entry, and returns -1 if failures occur. - - int bind (const EXT_ID &ext_id, - const INT_ID &int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry); - // Same as a normal bind, except the tree entry is also passed back - // to the caller. The entry in this case will either be the newly - // created entry, or the existing one. - - - int trybind (const EXT_ID &ext_id, - INT_ID &int_id); - // Associate <ext_id> with <int_id> if and only if <ext_id> is not - // in the tree. If <ext_id> is already in the tree then the <int_id> - // parameter is assigned the existing value in the tree. Returns 0 - // if a new entry is bound successfully, returns 1 if an attempt is - // made to bind an existing entry, and returns -1 if failures occur. - - int trybind (const EXT_ID &ext_id, - INT_ID &int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry); - // Same as a normal trybind, except the tree entry is also passed - // back to the caller. The entry in this case will either be the - // newly created entry, or the existing one. - - int rebind (const EXT_ID &ext_id, - const INT_ID &int_id); - // Reassociate <ext_id> with <int_id>. If <ext_id> is not in the - // tree then behaves just like <bind>. Returns 0 if a new entry is - // bound successfully, returns 1 if an existing entry was rebound, - // and returns -1 if failures occur. - - int rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry); - // Same as a normal rebind, except the tree entry is also passed back - // to the caller. The entry in this case will either be the newly - // created entry, or the existing one. - - int rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - INT_ID &old_int_id); - // Associate <ext_id> with <int_id>. If <ext_id> is not in the tree - // then behaves just like <bind>. Otherwise, store the old value of - // <int_id> into the "out" parameter and rebind the new parameters. - // Returns 0 if a new entry is bound successfully, returns 1 if an - // existing entry was rebound, and returns -1 if failures occur. - - int rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - INT_ID &old_int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry); - // Same as a normal rebind, except the tree entry is also passed back - // to the caller. The entry in this case will either be the newly - // created entry, or the existing one. - - int rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - EXT_ID &old_ext_id, - INT_ID &old_int_id); - // Associate <ext_id> with <int_id>. If <ext_id> is not in the tree - // then behaves just like <bind>. Otherwise, store the old values - // of <ext_id> and <int_id> into the "out" parameters and rebind the - // new parameters. This is very useful if you need to have an - // atomic way of updating <ACE_RB_Tree_Nodes> and you also need - // full control over memory allocation. Returns 0 if a new entry is - // bound successfully, returns 1 if an existing entry was rebound, - // and returns -1 if failures occur. - - int rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - EXT_ID &old_ext_id, - INT_ID &old_int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry); - // Same as a normal rebind, except the tree entry is also passed back - // to the caller. The entry in this case will either be the newly - // created entry, or the existing one. - - int find (const EXT_ID &ext_id, - INT_ID &int_id); - // Locate <ext_id> and pass out parameter via <int_id>. If found, - // return 0, returns -1 if not found. - - int find (const EXT_ID &ext_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry); - // Locate <ext_id> and pass out parameter via <entry>. If found, - // return 0, returns -1 if not found. - - int unbind (const EXT_ID &ext_id); - // Unbind (remove) the <ext_id> from the tree. Don't return the - // <int_id> to the caller (this is useful for collections where the - // <int_id>s are *not* dynamically allocated...) - - int unbind (const EXT_ID &ext_id, - INT_ID &int_id); - // Break any association of <ext_id>. Returns the value of <int_id> - // in case the caller needs to deallocate memory. - - int unbind (ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry); - // Remove entry from tree. This method should be used with *extreme* - // caution, and only for optimization purposes. The node being passed - // in had better have been allocated by the tree that is unbinding it. - - // = Public helper methods. - - size_t current_size (void); - // Returns the current number of nodes in the tree. - - void operator= (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &rbt); + void operator= (const ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK> &rbt); // Assignment operator. - virtual int lessthan (const EXT_ID &k1, const EXT_ID &k2); + virtual int lessthan (const KEY &k1, const KEY &k2); // Less than comparison function for keys, using comparison functor. - ACE_LOCK &mutex (void); - // Returns a reference to the underlying <ACE_LOCK>. This makes it - // possible to acquire the lock explicitly, which can be useful in - // some cases if you instantiate the <ACE_Atomic_Op> with an - // <ACE_Recursive_Mutex> or <ACE_Process_Mutex>, or if you need to - // guard the state of an iterator. NOTE: the right name would be - // <lock>, but HP/C++ will choke on that! - - void dump (void) const; - // Dump the state of an object. - - // = STL styled iterator factory functions. - - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> begin (void); - // Return forward iterator positioned at first node in tree. - - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> end (void); - // Return forward iterator positioned at last node in tree. - - ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> rbegin (void); - // Return reverse iterator positioned at last node in tree. - - ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> rend (void); - // Return reverse iterator positioned at first node in tree. - - // = DEPRECATED methods. Please migrate your code to use the new methods instead - - INT_ID* find (const EXT_ID &k); + T* find (const KEY &k); // Returns a pointer to the item corresponding to the // given key, or 0 if it cannot find the key in the tree. - // - // DEPRECATED: signature will change to become - // int find (const EXT_ID &ext_id); which will return - // 0 if the <ext_id> is in the tree, otherwise -1. - - - INT_ID* insert (const EXT_ID &k, const INT_ID &t); + T* insert (const KEY &k, const T &t); // Inserts a *copy* of the key and the item into the tree: both the - // key type EXT_ID and the item type INT_ID must have well defined semantics + // key type KEY and the item type T must have well defined semantics // for copy construction. The default implementation also requires that - // the key type support well defined < semantics. This method returns a + // the key type support welll defined < semantics. This method returns a // pointer to the inserted item copy, or 0 if an error occurred. // NOTE: if an identical key already exists in the tree, no new item // is created, and the returned pointer addresses the existing item // associated with the existing key. - // DEPRECATED - int remove (const EXT_ID &k); + int remove (const KEY &k); // Removes the item associated with the given key from the tree and // destroys it. Returns 1 if it found the item and successfully // destroyed it, 0 if it did not find the item, or -1 if an error // occurred. - // DEPRECATED void clear (void); // Destroys all nodes and sets the root pointer null. - // DEPRECATED -protected: + // These could all be made private methods by making the corresponding + // class template instantiations friends, but there are some problems + // with this on certain compilers: leave them all public for now. - // = Protected methods. These should only be called with locks held. +// private: - void RB_rotate_right (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x); + void RB_rotate_right (ACE_RB_Tree_Node<KEY, T> * x); // Method for right rotation of the tree about a given node. - void RB_rotate_left (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x); + void RB_rotate_left (ACE_RB_Tree_Node<KEY, T> * x); // Method for left rotation of the tree about a given node. - void RB_delete_fixup (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x); + void RB_delete_fixup (ACE_RB_Tree_Node<KEY, T> * x); // Method for restoring Red-Black properties after deletion. - ACE_RB_Tree_Node<EXT_ID, INT_ID> * - RB_tree_successor (ACE_RB_Tree_Node<EXT_ID, INT_ID> *x) const; + ACE_RB_Tree_Node<KEY, T> * + RB_tree_successor (ACE_RB_Tree_Node<KEY, T> *x) const; // Method to find the successor node of the given node in the tree. - ACE_RB_Tree_Node<EXT_ID, INT_ID> * - RB_tree_predecessor (ACE_RB_Tree_Node<EXT_ID, INT_ID> *x) const; + ACE_RB_Tree_Node<KEY, T> * + RB_tree_predecessor (ACE_RB_Tree_Node<KEY, T> *x) const; // Method to find the predecessor node of the given node in the // tree. - ACE_RB_Tree_Node<EXT_ID, INT_ID> * - RB_tree_minimum (ACE_RB_Tree_Node<EXT_ID, INT_ID> *x) const; + ACE_RB_Tree_Node<KEY, T> * + RB_tree_minimum (ACE_RB_Tree_Node<KEY, T> *x) const; // Method to find the minimum node of the subtree rooted at the // given node. - ACE_RB_Tree_Node<EXT_ID, INT_ID> * - RB_tree_maximum (ACE_RB_Tree_Node<EXT_ID, INT_ID> *x) const; + ACE_RB_Tree_Node<KEY, T> * + RB_tree_maximum (ACE_RB_Tree_Node<KEY, T> *x) const; // Method to find the maximum node of the subtree rooted at the // given node. - ACE_RB_Tree_Node<EXT_ID, INT_ID> * - find_node (const EXT_ID &k, RB_SearchResult &result); + ACE_RB_Tree_Node<KEY, T> * find_node (const KEY &k); // Returns a pointer to a matching node if there is one, a pointer // to the node under which to insert the item if the tree is not // empty and there is no such match, or 0 if the tree is empty. - // It stores the result of the search in the result argument: - // LEFT if the node is to the left of the node to be inserted, - // RIGHT if the node is to the right of the node to be inserted, - // or EXACT if an exactly matching node already exists. - void RB_rebalance (ACE_RB_Tree_Node<EXT_ID, INT_ID> * x); + void RB_rebalance (ACE_RB_Tree_Node<KEY, T> * x); // Rebalance the tree after insertion of a node. - int close_i (void); - // Close down an RB_Tree. this method should - // only be called with locks already held. - - int find_i (const EXT_ID &ext_id, ACE_RB_Tree_Node<EXT_ID, INT_ID>* &entry); - // Retrieves a pointer to the item corresponding to the - // given key. Returns 0 for success, or -1 if it cannot find the key - // in the tree. + // Private members. - INT_ID* insert_i (const EXT_ID &k, const INT_ID &t); - // Inserts a *copy* of the key and the item into the tree: both the - // key type EXT_ID and the item type INT_ID must have well defined semantics - // for copy construction. The default implementation also requires that - // the key type support well defined < semantics. This method returns a - // pointer to the inserted item copy, or 0 if an error occurred. - // NOTE: if an identical key already exists in the tree, no new item - // is created, and the returned pointer addresses the existing item - // associated with the existing key. - - int insert_i (const EXT_ID &k, const INT_ID &t, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry); - // Inserts a *copy* of the key and the item into the tree: both the - // key type EXT_ID and the item type INT_ID must have well defined semantics - // for copy construction. The default implementation also requires that - // the key type support well defined < semantics. This method passes back - // a pointer to the inserted (or existing) node, and the search status. If - // the node already exists, the method returns 1. If the node does not - // exist, and a new one is successfully created, and the method returns 0. - // If there was an error, the method returns -1. - - int remove_i (const EXT_ID &k, INT_ID &i); - // Removes the item associated with the given key from the tree and - // destroys it. Returns 1 if it found the item and successfully - // destroyed it, 0 if it did not find the item, or -1 if an error - // occurred. Returns the stored internal id in the second argument. - - int remove_i (ACE_RB_Tree_Node<EXT_ID, INT_ID> *z); - // Removes the item associated with the given key from the tree and - // destroys it. - -private: - - // = Private members. - - ACE_Allocator *allocator_; - // Pointer to a memory allocator. - - ACE_LOCK lock_; - // Synchronization variable for the MT_SAFE <ACE_RB_Tree>. - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *root_; + ACE_RB_Tree_Node<KEY, T> *root_; // The root of the tree. COMPARE_KEYS compare_keys_; // Comparison functor for comparing nodes in the tree. - size_t current_size_; - // The current number of nodes in the tree. -}; - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -class ACE_RB_Tree_Iterator_Base -{ - // = TITLE - // Implements a common base class for iterators for a Red-Black Tree ADT. -public: - - // = Initialization and termination methods. - - ACE_RB_Tree_Iterator_Base (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &tree, - int set_first); - // Constructor. Takes an ACE_RB_Tree over which to iterate, and - // an integer indicating (if non-zero) to position the iterator - // at the first element in the tree (if this integer is 0, the - // iterator is positioned at the last element in the tree). - - ACE_RB_Tree_Iterator_Base (const ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &iter); - // Copy constructor. - - void operator= (const ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &iter); - // Assignment operator: copies both the tree reference and the position in the tree. - - ~ACE_RB_Tree_Iterator_Base (void); - // Destructor. - - // = Iteration methods. - - int next (ACE_RB_Tree_Node<EXT_ID, INT_ID> *&next_entry) const; - // Passes back the <entry> under the iterator. Returns 0 if - // the iteration has completed, otherwise 1. - - int done (void) const; - // Returns 1 when the iteration has completed, otherwise 0. - - ACE_RB_Tree_Node<EXT_ID, INT_ID> & operator* (void) const; - // STL-like iterator dereference operator: returns a reference - // to the node underneath the iterator. - - const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &tree (void); - // Returns a const reference to the tree over which we're iterating. - - int operator== (const ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &) const; - // Comparison operator: returns 1 if both iterators point to the same position, otherwise 0. - - int operator!= (const ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &) const; - // Comparison operator: returns 1 if the iterators point to different positions, otherwise 0. - - ACE_ALLOC_HOOK_DECLARE; - // Declare the dynamic allocation hooks. - -protected: - - // = protected methods - - int forward_i (void); - // Move forward by one element in the tree. Returns 0 when - // there are no more elements in the tree, otherwise 1. - - int reverse_i (void); - // Move back by one element in the tree. Returns 0 when - // there are no more elements in the tree, otherwise 1. - - void dump_i (void) const; - // Dump the state of an object. - - // = Protected members. - - const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> *tree_; - // Reference to the ACE_RB_Tree over which we're iterating. - - ACE_RB_Tree_Node <EXT_ID, INT_ID> *node_; - // Pointer to the node currently under the iterator. - }; - - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -class ACE_RB_Tree_Iterator : - public ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> +class ACE_RB_Tree_Iterator { // = TITLE // Implements an iterator for a Red-Black Tree ADT. - public: - // = Initialization and termination methods. - ACE_RB_Tree_Iterator (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &tree, - int set_first = 1); - // Constructor. Takes an ACE_RB_Tree over which to iterate, and - // an integer indicating (if non-zero) to position the iterator - // at the first element in the tree (if this integer is 0, the - // iterator is positioned at the last element in the tree). + ACE_RB_Tree_Iterator (const ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK> &tree); + // Constructor. ~ACE_RB_Tree_Iterator (void); // Destructor. - // = ACE-style iteration methods. - - int advance (void); - // Move forward by one element in the tree. Returns - // 0 when all elements have been seen, else 1. - - void dump (void) const; - // Dump the state of an object. - - // = STL-style iteration methods. - - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & operator++ (void); - // Prefix advance. - - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> operator++ (int); - // Postfix advance. - - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & operator-- (void); - // Prefix reverse. - - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> operator-- (int); - // Postfix reverse. - - ACE_ALLOC_HOOK_DECLARE; - // Declare the dynamic allocation hooks. - - // = DEPRECATED methods. Please migrate your code to use the new methods instead - - EXT_ID *key (void); + KEY *key (void); // Accessor for key of node under iterator (if any). - // DEPRECATED - INT_ID *item (void); + T *item (void); // Accessor for item of node under iterator (if any). - // DEPRECATED int first (void); - // Move to the first item in the iteration (and in the tree). - // DEPRECATED + // Move to the first item in the tree. int last (void); - // Move to the last item in the iteration (and in the tree). - // DEPRECATED + // Move to the last item in the tree. int next (void); - // Move to the next item in the iteration (and in the tree). - // DEPRECATED + // Move to the next item in the tree. int previous (void); - // Move to the previous item in the iteration (and in the tree). - // DEPRECATED + // Move to the previous item in the tree. int is_done (void); // Returns 0 if the iterator is positioned over a valid ACE_RB_Tree // node, returns 1 if not. - // DEPRECATED: use the base class done () method instead. -}; - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -class ACE_RB_Tree_Reverse_Iterator : - public ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -{ - // = TITLE - // Implements a reverse iterator for a Red-Black Tree ADT. - -public: - - // = Initialization and termination methods. - ACE_RB_Tree_Reverse_Iterator (const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &tree, - int set_last = 1); - // Constructor. Takes an ACE_RB_Tree over which to iterate, and - // an integer indicating (if non-zero) to position the iterator - // at the last element in the tree (if this integer is 0, the - // iterator is positioned at the first element in the tree). - - ~ACE_RB_Tree_Reverse_Iterator (void); - // Destructor. - - // = ACE-style iteration methods. - - int advance (void); - // Move forward by one element in the tree. Returns - // 0 when all elements have been seen, else 1. - - void dump (void) const; - // Dump the state of an object. - - // = STL-style iteration methods. - - ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & operator++ (void); - // Prefix advance. +private: + // = Declare private and do not define. - ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> operator++ (int); - // Postfix advance. + // Explicitly prevent assignment and copy construction of iterators. + ACE_UNIMPLEMENTED_FUNC ( + ACE_RB_Tree_Iterator (const ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK> &)) + ACE_UNIMPLEMENTED_FUNC ( + void operator = (const ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK> &)) - ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & operator-- (void); - // Prefix reverse. + // Private members. - ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> operator-- (int); - // Postfix reverse. + const ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK> &tree_; + // Reference to the ACE_RB_Tree over which we're iterating. - ACE_ALLOC_HOOK_DECLARE; - // Declare the dynamic allocation hooks. + ACE_RB_Tree_Node <KEY, T> *node_; + // Pointer to the node currently under the iterator. }; diff --git a/ace/RB_Tree.i b/ace/RB_Tree.i index 9ddc53d47f6..3ddfee0f079 100644 --- a/ace/RB_Tree.i +++ b/ace/RB_Tree.i @@ -1,1122 +1,185 @@ /* -*- C++ -*- */ // $Id$ -#include "ace/Synch.h" -#include "ace/Malloc.h" - -///////////////////////////////////////////////////// -// template class ACE_RB_Tree_Node<EXT_ID, INT_ID> // -///////////////////////////////////////////////////// +///////////////////////////////////////////// +// template class ACE_RB_Tree_Node<KEY, T> // +///////////////////////////////////////////// // Key accessor. -template <class EXT_ID, class INT_ID> -ACE_INLINE EXT_ID & -ACE_RB_Tree_Node<EXT_ID, INT_ID>::key () +template <class KEY, class T> ACE_INLINE KEY & +ACE_RB_Tree_Node<KEY, T>::key () { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::key"); return k_; } // Item accessor. -template <class EXT_ID, class INT_ID> -ACE_INLINE INT_ID & -ACE_RB_Tree_Node<EXT_ID, INT_ID>::item () +template <class KEY, class T> ACE_INLINE T & +ACE_RB_Tree_Node<KEY, T>::item () { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>:item"); return t_; } // Set color of the node. -template <class EXT_ID, class INT_ID> -ACE_INLINE void -ACE_RB_Tree_Node<EXT_ID, INT_ID>::color (ACE_RB_Tree_Node_Base::RB_Tree_Node_Color c) +template <class KEY, class T> ACE_INLINE void +ACE_RB_Tree_Node<KEY, T>::color (ACE_RB_Tree_Node_Base::RB_Tree_Node_Color c) { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::color mutator"); color_ = c; } // Get color of the node. -template <class EXT_ID, class INT_ID> +template <class KEY, class T> ACE_INLINE ACE_RB_Tree_Node_Base::RB_Tree_Node_Color -ACE_RB_Tree_Node<EXT_ID, INT_ID>::color () +ACE_RB_Tree_Node<KEY, T>::color () { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::color accessor"); return color_; } // Accessor for node's parent pointer. -template <class EXT_ID, class INT_ID> -ACE_INLINE ACE_RB_Tree_Node<EXT_ID, INT_ID> * -ACE_RB_Tree_Node<EXT_ID, INT_ID>::parent () +template <class KEY, class T> ACE_INLINE ACE_RB_Tree_Node<KEY, T> * +ACE_RB_Tree_Node<KEY, T>::parent () { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::parent accessor"); return parent_; } // Mutator for node's parent pointer. -template <class EXT_ID, class INT_ID> -ACE_INLINE void -ACE_RB_Tree_Node<EXT_ID, INT_ID>::parent (ACE_RB_Tree_Node<EXT_ID, INT_ID> * p) +template <class KEY, class T> ACE_INLINE void +ACE_RB_Tree_Node<KEY, T>::parent (ACE_RB_Tree_Node<KEY, T> * p) { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::parent mutator"); parent_ = p; } - + // Accessor for node's left child pointer. -template <class EXT_ID, class INT_ID> -ACE_INLINE ACE_RB_Tree_Node<EXT_ID, INT_ID> * -ACE_RB_Tree_Node<EXT_ID, INT_ID>::left () +template <class KEY, class T> ACE_INLINE ACE_RB_Tree_Node<KEY, T> * +ACE_RB_Tree_Node<KEY, T>::left () { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::left accessor"); return left_; } // Mutator for node's left child pointer. -template <class EXT_ID, class INT_ID> -ACE_INLINE void -ACE_RB_Tree_Node<EXT_ID, INT_ID>::left (ACE_RB_Tree_Node<EXT_ID, INT_ID> * l) +template <class KEY, class T> ACE_INLINE void +ACE_RB_Tree_Node<KEY, T>::left (ACE_RB_Tree_Node<KEY, T> * l) { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::left mutator"); left_ = l; } // Accessor for node's right child pointer. -template <class EXT_ID, class INT_ID> -ACE_INLINE ACE_RB_Tree_Node<EXT_ID, INT_ID> * -ACE_RB_Tree_Node<EXT_ID, INT_ID>::right () +template <class KEY, class T> ACE_INLINE ACE_RB_Tree_Node<KEY, T> * +ACE_RB_Tree_Node<KEY, T>::right () { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::right accessor"); return right_; } // Mutator for node's right child pointer. -template <class EXT_ID, class INT_ID> -ACE_INLINE void -ACE_RB_Tree_Node<EXT_ID, INT_ID>::right (ACE_RB_Tree_Node<EXT_ID, INT_ID> * r) +template <class KEY, class T> ACE_INLINE void +ACE_RB_Tree_Node<KEY, T>::right (ACE_RB_Tree_Node<KEY, T> * r) { - ACE_TRACE ("ACE_RB_Tree_Node<EXT_ID, INT_ID>::right mutator"); right_ = r; } -//////////////////////////////////////////////////////////////////////// -// template class ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> // -//////////////////////////////////////////////////////////////////////// - - -// Initialize an RB Tree. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::open (ACE_Allocator *alloc) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::open"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - // Calling this->close_i () ensures we release previously allocated - // memory before allocating new memory. - this->close_i (); - - // If we were passed an allocator use it, - // otherwise use the default instance. - - if (alloc == 0) - alloc = ACE_Allocator::instance (); - - this->allocator_ = alloc; - - return 0; -} - -// Close down an RB_Tree and release dynamically allocated -// resources. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::close (void) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::close"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - return this->close_i (); -} - - -// Associate <ext_id> with <int_id>. If <ext_id> is already in the -// tree then the <ACE_RB_Tree_Node> is not changed. Returns 0 if a -// new entry is bound successfully, returns 1 if an attempt is made -// to bind an existing entry, and returns -1 if failures occur. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::bind (const EXT_ID &ext_id, - const INT_ID &int_id) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::bind (const EXT_ID &item, const INT_ID &int_id)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry; - return this->insert_i (ext_id, int_id, entry); -} - - -// Same as a normal bind, except the tree entry is also passed back -// to the caller. The entry in this case will either be the newly -// created entry, or the existing one. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::bind (const EXT_ID &ext_id, - const INT_ID &int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>" - "::bind (const EXT_ID &ext_id, const INT_ID &int_id, " - "ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - return this->insert_i (ext_id, int_id, entry); -} - - -// Associate <ext_id> with <int_id> if and only if <ext_id> is not -// in the tree. If <ext_id> is already in the tree then the <int_id> -// parameter is assigned the existing value in the tree. Returns 0 -// if a new entry is bound successfully, returns 1 if an attempt is -// made to bind an existing entry, and returns -1 if failures occur. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::trybind (const EXT_ID &ext_id, - INT_ID &int_id) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "trybind (const EXT_ID &ext_id, INT_ID &int_id)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry; - int result = this->insert_i (ext_id, int_id, entry); - - if (result == 1) - { - int_id = entry->item (); - } - - return result; -} - - -// Same as a normal trybind, except the tree entry is also passed -// back to the caller. The entry in this case will either be the -// newly created entry, or the existing one. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::trybind (const EXT_ID &ext_id, - INT_ID &int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "trybind (const EXT_ID &ext_id, INT_ID &int_id, " - "ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - int result = this->insert_i (ext_id, int_id, entry); - - if (result == 1) - { - int_id = entry->item (); - } - - - return result; -} - - -// Reassociate <ext_id> with <int_id>. If <ext_id> is not in the -// tree then behaves just like <bind>. Returns 0 if a new entry is -// bound successfully, returns 1 if an existing entry was rebound, -// and returns -1 if failures occur. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rebind (const EXT_ID &ext_id, - const INT_ID &int_id) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "rebind (const EXT_ID &ext_id, const INT_ID &int_id)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry; - int result = this->insert_i (ext_id, int_id, entry); - - if (result == 1) - { - entry->key () = ext_id; - entry->item () = int_id; - } - - return result; -} - - -// Same as a normal rebind, except the tree entry is also passed back -// to the caller. The entry in this case will either be the newly -// created entry, or the existing one. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "rebind (const EXT_ID &ext_id, const INT_ID &int_id, " - "ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - int result = this->insert_i (ext_id, int_id, entry); - - if (result == 1) - { - entry->key () = ext_id; - entry->item () = int_id; - } - - return result; -} - - -// Associate <ext_id> with <int_id>. If <ext_id> is not in the tree -// then behaves just like <bind>. Otherwise, store the old value of -// <int_id> into the "out" parameter and rebind the new parameters. -// Returns 0 if a new entry is bound successfully, returns 1 if an -// existing entry was rebound, and returns -1 if failures occur. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - INT_ID &old_int_id) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "rebind (const EXT_ID &ext_id, const INT_ID &int_id, INT_ID &old_int_id)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry; - int result = this->insert_i (ext_id, int_id, entry); - - if (result == 1) - { - old_int_id = entry->item (); - entry->key () = ext_id; - entry->item () = int_id; - } - - return result; -} - - -// Same as a normal rebind, except the tree entry is also passed back -// to the caller. The entry in this case will either be the newly -// created entry, or the existing one. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - INT_ID &old_int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "rebind (const EXT_ID &ext_id, const INT_ID &int_id," - "INT_ID &old_int_id, ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - int result = this->insert_i (ext_id, int_id, entry); - - if (result == 1) - { - old_int_id = entry->item (); - entry->key () = ext_id; - entry->item () = int_id; - } - - return result; -} - - -// Associate <ext_id> with <int_id>. If <ext_id> is not in the tree -// then behaves just like <bind>. Otherwise, store the old values -// of <ext_id> and <int_id> into the "out" parameters and rebind the -// new parameters. This is very useful if you need to have an -// atomic way of updating <ACE_RB_Tree_Nodes> and you also need -// full control over memory allocation. Returns 0 if a new entry is -// bound successfully, returns 1 if an existing entry was rebound, -// and returns -1 if failures occur. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - EXT_ID &old_ext_id, - INT_ID &old_int_id) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "rebind (const EXT_ID &ext_id, const INT_ID &int_id," - "EXT_ID &old_ext_id, INT_ID &old_int_id)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry; - int result = this->insert_i (ext_id, int_id, entry); - - if (result == 1) - { - old_ext_id = entry->key (); - old_int_id = entry->item (); - entry->key () = ext_id; - entry->item () = int_id; - } - - return result; -} - - -// Same as a normal rebind, except the tree entry is also passed back -// to the caller. The entry in this case will either be the newly -// created entry, or the existing one. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rebind (const EXT_ID &ext_id, - const INT_ID &int_id, - EXT_ID &old_ext_id, - INT_ID &old_int_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "rebind (const EXT_ID &ext_id, const INT_ID &int_id, " - "EXT_ID &old_ext_id, INT_ID &old_int_id, " - "ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - int result = this->insert_i (ext_id, int_id, entry); - - if (result == 1) - { - old_ext_id = entry->key (); - old_int_id = entry->item (); - entry->key () = ext_id; - entry->item () = int_id; - } - - return result; -} - - -// Locate <ext_id> and pass out parameter via <int_id>. If found, -// return 0, returns -1 if not found. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find (const EXT_ID &ext_id, - INT_ID &int_id) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "find (const EXT_ID &ext_id, INT_ID &int_id)"); - ACE_READ_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry = 0; - - int result = this->find_i (ext_id, entry); - if (result == 0) - { - int_id = entry->item (); - } - - return result; -} - -// Locate <ext_id> and pass out parameter via <entry>. If found, -// return 0, returns -1 if not found. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find (const EXT_ID &ext_id, - ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "find (const EXT_ID &ext_id, ACE_RB_Tree_Node<EXT_ID, INT_ID> *&entry)"); - ACE_READ_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - return this->find_i (ext_id, entry); -} +//////////////////////////////////////////////////////////////// +// template class ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK> // +//////////////////////////////////////////////////////////////// -// Unbind (remove) the <ext_id> from the tree. Don't return the -// <int_id> to the caller (this is useful for collections where the -// <int_id>s are *not* dynamically allocated...). +// Destroys all nodes and sets the root pointer null. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::unbind (const EXT_ID &ext_id) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_INLINE void +ACE_RB_Tree<KEY, T, COMPARE_KEYS, ACE_LOCK>::clear () { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::unbind (const EXT_ID &ext_id)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - INT_ID int_id; - int result = this->remove_i (ext_id, int_id); - - // Remap the return codes from the internal method: this - // is maintained this way in support of deprecated methods, - // and will be cleaned up when these methods are removed. - switch (result) - { - case 1: - // If the node was found and deleted, return success. - return 0; - case 0: - // If nothing was found, set errno and break. - errno = ENOENT; - break; - case -1: - // If an error happened, just break. - break; - } - - // Return an error if we didn't already return success. - return -1; + delete root_; + root_ = 0; } -// Break any association of <ext_id>. Returns the value of <int_id> -// in case the caller needs to deallocate memory. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::unbind (const EXT_ID &ext_id, - INT_ID &int_id) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::" - "unbind (const EXT_ID &ext_id, INT_ID &int_id)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - int result = this->remove_i (ext_id, int_id); +////////////////////////////////////////////////////////// +// template class ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK> // +////////////////////////////////////////////////////////// - // Remap the return codes from the internal method: this - // is maintained this way in support of deprecated methods, - // and will be cleaned up when these methods are removed. - switch (result) - { - case 1: - // If the node was found and deleted, return success. - return 0; - case 0: - // If nothing was found, set errno and break. - errno = ENOENT; - break; - case -1: - // If an error happened, just break. - break; - } - - // Return an error if we didn't already return success. - return -1; -} +// Accessor for key of node under iterator (if any). -// Remove entry from the tree. This method should be used with *extreme* -// caution, and only for optimization purposes. The node being passed -// in had better have been allocated by the tree that is unbinding it. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::unbind (ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_INLINE KEY * +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::key () { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::unbind (ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry)"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - return this->remove_i (entry); + return node_ ? (&(node_->key ())) : 0; } -// Returns a reference to the underlying <ACE_LOCK>. This makes it -// possible to acquire the lock explicitly, which can be useful in -// some cases if you instantiate the <ACE_Atomic_Op> with an -// <ACE_Recursive_Mutex> or <ACE_Process_Mutex>, or if you need to -// guard the state of an iterator. NOTE: the right name would be -// <lock>, but HP/C++ will choke on that! +// Accessor for item of node under iterator (if any). -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_LOCK & -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::mutex (void) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_INLINE T * +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::item () { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::mutex"); - return this->lock_; + return node_ ? (&(node_->item ())) : 0; } -// Dump the state of an object. +// Move to the first item in the tree. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE void -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::dump (void) const +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_INLINE int +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::first () { - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::dump"); - ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ncurrent_size_ = %d"), this->current_size_)); - this->allocator_->dump (); - this->lock_.dump (); - ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); -} - - -// Return forward iterator positioned at first node in tree. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::begin (void) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::begin"); - - return ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> (*this); -} - - -// Return forward iterator positioned at last node in tree. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::end (void) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::end"); - - return ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> (*this, 0); -} - - -// Return reverse iterator positioned at last node in tree. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rbegin (void) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rbegin"); - - return ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> (*this); -} - - -// Return reverse iterator positioned at first node in tree. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rend (void) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::rend"); - - return ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> (*this, 0); -} - - -// Returns a pointer to the item corresponding to the given key, -// or 0 if it cannot find the key in the tree. DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE INT_ID* -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find (const EXT_ID &k) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::find (const EXT_ID &k)"); - - // The reinterpret cast is to ensure that when this deprecated method is removed, and - // is replaced (as planned) by a find method that takes the same argument signature - // but returns an int, that the compiler will cough if this return macro is not - // changed to just return an int (whose value will be -1). Please leave this as is. - ACE_READ_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, ACE_reinterpret_cast(INT_ID*, 0L)); - - ACE_RB_Tree_Node<EXT_ID, INT_ID> *entry; - int result = this->find_i (k, entry); - return (result == 0) ? &(entry->item ()) : 0; -} - -// Inserts a *copy* of the key and the item into the tree: -// both the key type EXT_ID and the item type INT_ID must have well -// defined semantics for copy construction and < comparison. -// This method returns a pointer to the inserted item copy, -// or 0 if an error occurred. NOTE: if an identical key -// already exists in the tree, no new item is created, and -// the returned pointer addresses the existing item -// associated with the existing key. DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE INT_ID* -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::insert (const EXT_ID &k, const INT_ID &t) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::insert"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, ACE_reinterpret_cast(INT_ID*, 0L)); - - return this->insert_i (k, t); -} - - -// Removes the item associated with the given key from the -// tree and destroys it. Returns 1 if it found the item -// and successfully destroyed it, 0 if it did not find the -// item, or -1 if an error occurred. DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::remove (const EXT_ID &k) -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::remove"); - ACE_WRITE_GUARD_RETURN (ACE_LOCK, ace_mon, this->lock_, -1); - - INT_ID i; - return this->remove_i (k, i); -} - - -// Destroys all nodes and sets the root pointer null. DEPRECATED - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE void -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::clear () -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::clear"); - ACE_WRITE_GUARD (ACE_LOCK, ace_mon, this->lock_); - - this->close_i (); -} - -// Returns the current number of nodes in the tree. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE size_t -ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::current_size () -{ - ACE_TRACE ("ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::current_size"); - return current_size_; -} - - -/////////////////////////////////////////////////////////////////////// -// template class // -// ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> // -/////////////////////////////////////////////////////////////////////// - -// Passes back the <entry> under the iterator. Returns 0 if -// the iteration has completed, otherwise 1. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::next (ACE_RB_Tree_Node<EXT_ID, INT_ID> *&next_entry) const -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::next"); - - if (this->node_) - { - next_entry = this->node_; - return 1; - } - - return 0; -} - - -// Returns 1 when the iteration has completed, otherwise 0. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::done (void) const -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::done"); - - return node_ ? 0 : 1; -} - - -// STL-like iterator dereference operator: returns a reference -// to the node underneath the iterator. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Node<EXT_ID, INT_ID> & -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator* (void) const -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator*"); - return *(this->node_); -} - - -// Returns a reference to the tree over which we're iterating. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE const ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::tree (void) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::tree"); - return *tree_; -} - - -// Comparison operator: returns 1 if both iterators point to the same position, otherwise 0. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator== - (const ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &rbt) const -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator=="); - return (this->node_ == rbt.node_) ? 1 : 0; -} - - -// Comparison operator: returns 1 if the iterators point to different positions, otherwise 0. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator!= - (const ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> &rbt) const -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator!="); - return (this->node_ == rbt.node_) ? 0 : 1; -} - - -// Move forward by one element in the tree. Returns 0 when -// there are no more elements in the tree, otherwise 1. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::forward_i (void) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::forward_i"); - - node_ = tree_->RB_tree_successor (node_); + node_ = tree_.RB_tree_minimum (tree_.root_); return node_ ? 1 : 0; } -// Move back by one element in the tree. Returns 0 when -// there are no more elements in the tree, otherwise 1. +// Move to the last item in the tree. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::reverse_i (void) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_INLINE int +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::last () { - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::reverse_i"); - - node_ = tree_->RB_tree_predecessor (node_); + node_ = tree_.RB_tree_maximum (tree_.root_); return node_ ? 1 : 0; } -// Dump the state of an object. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE void -ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::dump_i (void) const -{ - ACE_TRACE ("ACE_RB_Tree_Iterator_Base<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::dump_i"); - - ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("node_ = %x"), this->node_)); - ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); -} - - -////////////////////////////////////////////////////////////////// -// template class // -// ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> // -////////////////////////////////////////////////////////////////// - -// Move forward by one element in the tree. Returns -// 0 when all elements have been seen, else 1. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::advance (void) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::advance"); - - return this->forward_i (); -} - - -// Dump the state of an object. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE void -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::dump (void) const -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::dump"); - - this->dump_i (); -} - - -// Prefix advance. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator++ (void) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> operator++ (void)"); - - this->forward_i (); - return *this; -} - - -// Postfix advance. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator++ (int) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> operator++ (int)"); - - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> retv (*this); - this->forward_i (); - return retv; -} - - -// Prefix reverse. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator-- (void) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> operator-- (void)"); - - this->reverse_i (); - return *this; -} - - -// Postfix reverse. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator-- (int) -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> operator-- (int)"); - - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> retv (*this); - this->reverse_i (); - return retv; -} - - -// Accessor for key of node under iterator (if any). DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE EXT_ID * -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::key () -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::key"); - ACE_RB_Tree_Node <EXT_ID, INT_ID> *node_p = - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_; - return node_p ? (&(node_p->key ())) : 0; -} - - -// Accessor for item of node under iterator (if any). DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE INT_ID * -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::item () -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::item"); - ACE_RB_Tree_Node <EXT_ID, INT_ID> *node_p = - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_; - return node_p ? (&(node_p->item ())) : 0; -} - - -// Move to the first item in the tree. DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::first () -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::first"); - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ = - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::tree_-> - RB_tree_minimum (ACE_RB_Tree_Iterator<EXT_ID, INT_ID, - COMPARE_KEYS, - ACE_LOCK>::tree_->root_); - return ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ ? - 1 : 0; -} - - -// Move to the last item in the tree. DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::last () -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::last"); - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ = - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::tree_-> - RB_tree_maximum (ACE_RB_Tree_Iterator<EXT_ID, INT_ID, - COMPARE_KEYS, - ACE_LOCK>::tree_->root_); - return ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ ? - 1 : 0; -} - - // Moves to the next item in the tree, -// returns 1 if there is a next item, 0 otherwise. DEPRECATED. +// returns 1 if there is a next item, 0 otherwise. -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::next () +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_INLINE int +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::next () { - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::next"); - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ = - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::tree_-> - RB_tree_successor (ACE_RB_Tree_Iterator<EXT_ID, INT_ID, - COMPARE_KEYS, - ACE_LOCK>::node_); - return ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ ? - 1 : 0; + node_ = tree_.RB_tree_successor (node_); + return node_ ? 1 : 0; } // Moves to the previous item in the tree, -// returns 1 if there is a previous item, 0 otherwise. DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::previous () -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::previous"); - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ = - ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::tree_-> - RB_tree_predecessor (ACE_RB_Tree_Iterator<EXT_ID, INT_ID, - COMPARE_KEYS, - ACE_LOCK>::node_); - return ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ ? - 1 : 0; -} +// returns 1 if there is a previous item, 0 otherwise. - -// Returns 0 if the iterator is positioned over a valid ACE_RB_Tree -// node, returns 1 if not. DEPRECATED. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::is_done () -{ - ACE_TRACE ("ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::is_done"); - return ACE_RB_Tree_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::node_ ? - 0 : 1; -} - - -////////////////////////////////////////////////////////////////////////// -// template class // -// ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> // -////////////////////////////////////////////////////////////////////////// - - -// Move forward by one element in the tree. Returns -// 0 when all elements have been seen, else 1. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE int -ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::advance (void) -{ - ACE_TRACE ("ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::advance"); - - return this->reverse_i (); -} - - -// Dump the state of an object. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE void -ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::dump (void) const +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_INLINE int +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::previous () { - ACE_TRACE ("ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::dump"); - - this->dump_i (); -} - - -// Prefix advance. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & -ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator++ (void) -{ - ACE_TRACE ("ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator++ (void)"); - - this->reverse_i (); - return *this; -} - - -// Postfix advance. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator++ (int) -{ - ACE_TRACE ("ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator++ (int)"); - - ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> retv (*this); - this->reverse_i (); - return retv; -} - - -// Prefix reverse. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> & -ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator-- (void) -{ - ACE_TRACE ("ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator-- (void)"); - - this->forward_i (); - return *this; + node_ = tree_.RB_tree_predecessor (node_); + return node_ ? 1 : 0; } - -// Postfix reverse. - -template <class EXT_ID, class INT_ID, class COMPARE_KEYS, class ACE_LOCK> -ACE_INLINE ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> -ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator-- (int) +template <class KEY, class T, class COMPARE_KEYS, class ACE_LOCK> ACE_INLINE int +ACE_RB_Tree_Iterator<KEY, T, COMPARE_KEYS, ACE_LOCK>::is_done () { - ACE_TRACE ("ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::operator-- (int)"); - - ACE_RB_Tree_Reverse_Iterator<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK> retv (*this); - this->forward_i (); - return retv; + return node_ ? 0 : 1; } diff --git a/ace/README b/ace/README index ab9ed44e8c7..0ff57b6c38a 100644 --- a/ace/README +++ b/ace/README @@ -300,7 +300,6 @@ ACE_HAS_INLINED_OSCALLS Inline all the static class OS methods to remove call overhead ACE_HAS_IP_MULTICAST Platform supports IP multicast -ACE_HAS_IP6 Platform supports IPv6. ACE_HAS_IRIX62_THREADS Platform supports the very odd IRIX 6.2 threads... ACE_HAS_NONSTATIC_OBJECT_MANAGER Causes the ACE_Object_Manager @@ -314,13 +313,10 @@ ACE_HAS_THR_MINSTACK Platform calls thr_minstack() (e.g., Tandem). ACE_HAS_LIMITED_RUSAGE_T The rusage_t structure has only two fields. -ACE_HAS_LIMITED_SELECT The select is unable to deal with - large file descriptors. ACE_HAS_LONG_MAP_FAILED Platform defines MAP_FAILED as a long constant. ACE_HAS_MALLOC_STATS Enabled malloc statistics collection. -ACE_HAS_MEMCHR Use native implementation of memchr. ACE_HAS_MINIMAL_ACE_OS Disables some #includes in ace/OS.*. ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION Avoid #including ace/streams.h in OS.h. Users must include @@ -407,6 +403,8 @@ ACE_HAS_PTHREAD_MUTEXATTR_SETKIND_NP Platform has ACE_HAS_PTHREAD_PROCESS_ENUM pthread.h declares an enum with PTHREAD_PROCESS_PRIVATE and PTHREAD_PROCESS_SHARED values. +ACE_HAS_PTHREAD_SIGMASK Platform has pthread_sigmask() + defined. ACE_HAS_PURIFY Purify'ing. Set by wrapper_macros.GNU. ACE_HAS_QUANTIFY Quantify'ing. Set by wrapper_macros.GNU. ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS Platform will recurse @@ -729,7 +727,6 @@ ACE_LACKS_PRI_T Platform lacks pri_t (e.g., Tandem NonStop UNIX). ACE_LACKS_PTHREAD_CANCEL Platform lacks pthread_cancel(). -ACE_LACKS_PTHREAD_SIGMASK Platform lacks pthread_sigmask (). ACE_LACKS_PTHREAD_THR_SIGSETMASK Platform lacks pthread_thr_sigsetmask (e.g., MVS, HP/UX, and OSF/1 3.2) @@ -820,7 +817,6 @@ ACE_LACKS_T_ERRNO Header files lack t_errno for TLI ACE_LACKS_TCP_H Platform doesn't have netinet/tcp.h -ACE_LACKS_TCP_NODELAY OS does not support TCP_NODELAY. ACE_LACKS_TELLDIR Platform uses ACE_HAS_DIRENT but does not have telldir (). ACE_LACKS_THREAD_STACK_SIZE Platform lacks @@ -839,16 +835,8 @@ ACE_LACKS_U_LONGLONG_T Platform does not have ACE_LACKS_UALARM_PROTOTYPE Platform/compiler lacks the ualarm() prototype (e.g., Solaris) -ACE_LACKS_CHAR_RIGHT_SHIFTS Compiler does not have any istream - operator>> for chars, u_chars, or - signed chars. -ACE_LACKS_CHAR_STAR_RIGHT_SHIFTS Compiler does not have - operator>> (istream &, u_char *) or - operator>> (istream &, signed char *) ACE_LACKS_UCONTEXT_H Platform lacks the ucontext.h file -ACE_LACKS_UNBUFFERED_STREAMBUF Platform lacks streambuf - "unbuffered ()". ACE_LACKS_UNISTD_H Platform lacks the unistd.h file (e.g., VxWorks and Win32) ACE_LACKS_UNIX_DOMAIN_SOCKETS ACE platform has no UNIX diff --git a/ace/Reactor.h b/ace/Reactor.h index 9cc24fac749..d9789747de1 100644 --- a/ace/Reactor.h +++ b/ace/Reactor.h @@ -116,11 +116,7 @@ public: int restart = 0, ACE_Sig_Handler *signal_handler = 0, ACE_Timer_Queue *timer_queue = 0); - // Initialize the <ACE_Reactor> to manage <max_number_of_handles>. - // If <restart> is non-0 then the <ACE_Reactor>'s <handle_events> - // method will be restarted automatically when <EINTR> occurs. If - // <signal_handler> or <timer_queue> are non-0 they are used as the - // signal handler and timer queue, respectively. + // Initialization. virtual int set_sig_handler (ACE_Sig_Handler *signal_handler); // Use a user specified signal handler instead. diff --git a/ace/Registry.cpp b/ace/Registry.cpp index a83b9d5fbbd..5396c6330d8 100644 --- a/ace/Registry.cpp +++ b/ace/Registry.cpp @@ -3,7 +3,7 @@ #define ACE_BUILD_DLL #include "ace/Registry.h" - + ACE_RCSID(ace, Registry, "$Id$") #if defined (ACE_WIN32) @@ -22,19 +22,19 @@ ACE_RCSID(ace, Registry, "$Id$") } while (0) -// Separator for components in a name +// Separator for components in a name /* static */ LPCTSTR ACE_Registry::STRING_SEPARATOR = ACE_TEXT ("\\"); -int +int ACE_Registry::Name_Component::operator== (const Name_Component &rhs) const { - return + return rhs.id_ == this->id_ && rhs.kind_ == this->kind_; } -int +int ACE_Registry::Name_Component::operator!= (const Name_Component &rhs) const { return !this->operator== (rhs); @@ -68,15 +68,15 @@ ACE_Registry::Binding::Binding (const Istring &name, } -int +int ACE_Registry::Binding::operator== (const Binding &rhs) const { - return + return rhs.name_ == this->name_ && rhs.type_ == this->type_; } -int +int ACE_Registry::Binding::operator!= (const Binding &rhs) const { return !this->operator== (rhs); @@ -84,7 +84,7 @@ ACE_Registry::Binding::operator!= (const Binding &rhs) const // Name accessor // (Name version) -void +void ACE_Registry::Binding::name (Name &name) { name = ACE_Registry::make_name (this->name_); @@ -93,7 +93,7 @@ ACE_Registry::Binding::name (Name &name) // Name accessors // (String version) -void +void ACE_Registry::Binding::name (Istring &name) { name = this->name_; @@ -102,7 +102,7 @@ ACE_Registry::Binding::name (Istring &name) // Name accessors // (String version) -ACE_Registry::Istring +ACE_Registry::Istring ACE_Registry::Binding::name (void) { return this->name_; @@ -118,8 +118,8 @@ ACE_Registry::Binding::type (void) // Simple object constructor -ACE_Registry::Object::Object (void *data, - u_long size, +ACE_Registry::Object::Object (void *data, + u_long size, u_long type) : data_ (data), size_ (size), @@ -142,7 +142,7 @@ ACE_Registry::Object::data (void) const } -void +void ACE_Registry::Object::size (u_long size) { this->size_ = size; @@ -193,7 +193,7 @@ ACE_Registry::Naming_Context::Naming_Context (const Naming_Context &rhs) parent_key_ (rhs.parent_key_), name_ (rhs.name_) { - // This is incorrect. + // This is incorrect. // Rather than copying key, we should call ::DuplicateHandle() // But since this is private (and not used), I don't care much } @@ -208,7 +208,7 @@ ACE_Registry::Naming_Context::operator= (const Naming_Context &rhs) return *this; } - + // Destructor ACE_Registry::Naming_Context::~Naming_Context () { @@ -219,7 +219,7 @@ ACE_Registry::Naming_Context::~Naming_Context () // Insert <object> with <name> into <this> context // (Name version) int -ACE_Registry::Naming_Context::bind_new (const Name &name, +ACE_Registry::Naming_Context::bind_new (const Name &name, const Object &object) { return this->bind_new (ACE_Registry::make_string (name), object); @@ -229,11 +229,11 @@ ACE_Registry::Naming_Context::bind_new (const Name &name, // Insert <object> with <name> into <this> context // (String version) int -ACE_Registry::Naming_Context::bind_new (const Istring &name, +ACE_Registry::Naming_Context::bind_new (const Istring &name, const Object &object) { - // temporary object - Object temp; + // temporary object + Object temp; long result = this->resolve (name, temp); if (result == 0) // resolve succeeded @@ -248,7 +248,7 @@ ACE_Registry::Naming_Context::bind_new (const Istring &name, // Insert or update <object> with <name> into <this> context // (Name version) int -ACE_Registry::Naming_Context::bind (const Name &name, +ACE_Registry::Naming_Context::bind (const Name &name, const Object &object) { return this->bind (ACE_Registry::make_string (name), object); @@ -258,7 +258,7 @@ ACE_Registry::Naming_Context::bind (const Name &name, // Insert or update <object> with <name> into <this> context // (String version) int -ACE_Registry::Naming_Context::bind (const Istring &name, +ACE_Registry::Naming_Context::bind (const Istring &name, const Object &object) { long result = ::RegSetValueEx (this->key_, @@ -273,8 +273,8 @@ ACE_Registry::Naming_Context::bind (const Istring &name, // Update <object> with <name> in <this> context // (Name version) -int -ACE_Registry::Naming_Context::rebind (const Name &name, +int +ACE_Registry::Naming_Context::rebind (const Name &name, const Object &new_object) { return this->rebind (ACE_Registry::make_string (name), new_object); @@ -283,15 +283,15 @@ ACE_Registry::Naming_Context::rebind (const Name &name, // Update <object> with <name> in <this> context // (String version) -int -ACE_Registry::Naming_Context::rebind (const Istring &name, +int +ACE_Registry::Naming_Context::rebind (const Istring &name, const Object &new_object) { Object old_object; // find the old one first long result = this->resolve (name, old_object); if (result == 0) - // no need to delete first + // no need to delete first result = this->bind (name, new_object); return result; } @@ -299,31 +299,31 @@ ACE_Registry::Naming_Context::rebind (const Istring &name, // Find <object> with <name> in <this> context // (Name version) -int -ACE_Registry::Naming_Context::resolve (const Name &name, +int +ACE_Registry::Naming_Context::resolve (const Name &name, Object &object) { return this->resolve (ACE_Registry::make_string (name), object); } - + // Find <object> with <name> in <this> context // (String version) -int -ACE_Registry::Naming_Context::resolve (const Istring &name, +int +ACE_Registry::Naming_Context::resolve (const Istring &name, Object &object) { // Get object state u_long type; void *data = object.data (); u_long size = object.size (); - + long result = ::RegQueryValueEx (this->key_, name.c_str (), 0, &type, (BYTE *)data, - &size); + &size); if (result == ERROR_SUCCESS) { // Reset object state @@ -335,10 +335,10 @@ ACE_Registry::Naming_Context::resolve (const Istring &name, ACE_REGISTRY_CALL_RETURN (result); } - + // Remove object with <name> in <this> context // (Name version) -int +int ACE_Registry::Naming_Context::unbind (const Name &name) { return this->unbind (ACE_Registry::make_string (name)); @@ -347,7 +347,7 @@ ACE_Registry::Naming_Context::unbind (const Name &name) // Remove object with <name> in <this> context // (String version) -int +int ACE_Registry::Naming_Context::unbind (const Istring &name) { long result = ::RegDeleteValue (this->key_, @@ -359,14 +359,14 @@ ACE_Registry::Naming_Context::unbind (const Istring &name) // Create new <naming_context> relative to <this> context // This method may not mean a lot in this implementation -int +int ACE_Registry::Naming_Context::new_context (Naming_Context &naming_context) { // Make sure that we reset the state and close keys return naming_context.close (); } - + // Insert <naming_context> with <name> relative to <this> context // (Name version) int @@ -395,10 +395,10 @@ ACE_Registry::Naming_Context::bind_new_context (const Istring &name, { u_long reason; - long result = ::RegCreateKeyEx (this->key_, - name.c_str (), - 0, - 0, + long result = ::RegCreateKeyEx (this->key_, + name.c_str (), + 0, + 0, persistence, security_access, security_attributes, @@ -422,9 +422,9 @@ ACE_Registry::Naming_Context::bind_new_context (const Istring &name, // reset result to failure result = -1; // Close the key first - ::RegCloseKey (naming_context.key_); + ::RegCloseKey (naming_context.key_); // Reset key - naming_context.key_ = (HKEY) 0; + naming_context.key_ = (HKEY) 0; } } @@ -434,8 +434,8 @@ ACE_Registry::Naming_Context::bind_new_context (const Istring &name, // Insert or update <naming_context> with <name> relative to <this> context // (Name version) -int -ACE_Registry::Naming_Context::bind_context (const Name &name, +int +ACE_Registry::Naming_Context::bind_context (const Name &name, /* const */ Naming_Context &naming_context, u_long persistence, u_long security_access, @@ -451,8 +451,8 @@ ACE_Registry::Naming_Context::bind_context (const Name &name, // Insert or update <naming_context> with <name> relative to <this> context // (String version) -int -ACE_Registry::Naming_Context::bind_context (const Istring &name, +int +ACE_Registry::Naming_Context::bind_context (const Istring &name, /* const */ Naming_Context &naming_context, u_long persistence, u_long security_access, @@ -460,10 +460,10 @@ ACE_Registry::Naming_Context::bind_context (const Istring &name, { u_long reason; - long result = ::RegCreateKeyEx (this->key_, - name.c_str (), - 0, - 0, + long result = ::RegCreateKeyEx (this->key_, + name.c_str (), + 0, + 0, persistence, security_access, security_attributes, @@ -480,11 +480,11 @@ ACE_Registry::Naming_Context::bind_context (const Istring &name, ACE_REGISTRY_CALL_RETURN (result); } - -// Rename <naming_context> to <name> + +// Rename <naming_context> to <name> // (Name version) -int -ACE_Registry::Naming_Context::rebind_context (const Name &name, +int +ACE_Registry::Naming_Context::rebind_context (const Name &name, /* const */ Naming_Context &new_naming_context) { return this->rebind_context (ACE_Registry::make_string (name), @@ -492,20 +492,20 @@ ACE_Registry::Naming_Context::rebind_context (const Name &name, } -// Rename <naming_context> to <name> +// Rename <naming_context> to <name> // (String version) -int -ACE_Registry::Naming_Context::rebind_context (const Istring &name, +int +ACE_Registry::Naming_Context::rebind_context (const Istring &name, /* const */ Naming_Context &new_naming_context) { Naming_Context old_naming_context; // find the old one first - long result = this->resolve_context (name, + long result = this->resolve_context (name, old_naming_context); if (result == 0) { // naming_context is found: delete entry - result = this->unbind_context (name); + result = this->unbind_context (name); if (result == 0) { // successful deletion; rebind @@ -517,10 +517,10 @@ ACE_Registry::Naming_Context::rebind_context (const Istring &name, return result; } - + // Remove naming_context with <name> from <this> context // (Name version) -int +int ACE_Registry::Naming_Context::unbind_context (const Name &name) { return this->unbind_context (ACE_Registry::make_string (name)); @@ -529,20 +529,20 @@ ACE_Registry::Naming_Context::unbind_context (const Name &name) // Remove naming_context with <name> from <this> context // (String version) -int +int ACE_Registry::Naming_Context::unbind_context (const Istring &name) { - long result = ::RegDeleteKey (this->key_, + long result = ::RegDeleteKey (this->key_, name.c_str ()); ACE_REGISTRY_CALL_RETURN (result); } - + // Find <naming_context> with <name> in <this> context // (Name version) -int -ACE_Registry::Naming_Context::resolve_context (const Name &name, +int +ACE_Registry::Naming_Context::resolve_context (const Name &name, Naming_Context &naming_context, u_long security_access) { @@ -554,14 +554,14 @@ ACE_Registry::Naming_Context::resolve_context (const Name &name, // Find <naming_context> with <name> in <this> context // (String version) -int -ACE_Registry::Naming_Context::resolve_context (const Istring &name, +int +ACE_Registry::Naming_Context::resolve_context (const Istring &name, Naming_Context &naming_context, u_long security_access) { - long result = ::RegOpenKeyEx (this->key_, - name.c_str (), - 0, + long result = ::RegOpenKeyEx (this->key_, + name.c_str (), + 0, security_access, &naming_context.key_); if (result == ERROR_SUCCESS) @@ -569,7 +569,7 @@ ACE_Registry::Naming_Context::resolve_context (const Istring &name, // set the correct parent naming_context.parent (this->key_); // set the correct name - naming_context.name (name); + naming_context.name (name); } ACE_REGISTRY_CALL_RETURN (result); @@ -577,19 +577,19 @@ ACE_Registry::Naming_Context::resolve_context (const Istring &name, // Same as unbind_context() with <this> as naming_context -int +int ACE_Registry::Naming_Context::destroy (void) { // hopefully the parent_key_ is still open - long result = ::RegDeleteKey (this->parent_key_, + long result = ::RegDeleteKey (this->parent_key_, this->name_.c_str ()); ACE_REGISTRY_CALL_RETURN (result); } - + // Sync content of context to disk -int +int ACE_Registry::Naming_Context::flush (void) { long result = ::RegFlushKey (this->key_); @@ -598,16 +598,16 @@ ACE_Registry::Naming_Context::flush (void) // Close the handle of the context -int +int ACE_Registry::Naming_Context::close (void) { - long result = this->key_ ? ::RegCloseKey (this->key_) : ERROR_SUCCESS; + long result = ::RegCloseKey (this->key_); ACE_REGISTRY_CALL_RETURN (result); } // Convert a <name> to a <string> -ACE_Registry::Istring +ACE_Registry::Istring ACE_Registry::make_string (const Name &const_name) { Istring string; @@ -631,7 +631,7 @@ ACE_Registry::make_string (const Name &const_name) // Convert a <string> to a <name> -ACE_Registry::Name +ACE_Registry::Name ACE_Registry::make_name (const Istring &string) { int new_position = 0; @@ -648,17 +648,17 @@ ACE_Registry::make_name (const Istring &string) // If we have not gone past the end { // Get the substring - component.id_ = string.substr (last_position, - new_position - last_position); + component.id_ = string.substr (last_position, + new_position - last_position); // Skip past the seperator new_position += ACE_OS::strlen (ACE_Registry::STRING_SEPARATOR); } - else + else { // Get the last substring - component.id_ = string.substr (last_position); + component.id_ = string.substr (last_position); } - // Update positions + // Update positions last_position = new_position; // Insert component into name name.insert (component); @@ -746,12 +746,12 @@ ACE_Registry::Naming_Context::name (Istring &name) // listing function: iterator creator -// This is useful when there are many objects and contexts -// in <this> context and you only want to look at a few entries +// This is useful when there are many objects and contexts +// in <this> context and you only want to look at a few entries // at a time -int -ACE_Registry::Naming_Context::list (u_long how_many, - Binding_List &list, +int +ACE_Registry::Naming_Context::list (u_long how_many, + Binding_List &list, Binding_Iterator &iter) { // Empty list @@ -759,12 +759,12 @@ ACE_Registry::Naming_Context::list (u_long how_many, // Make sure that the list is empty list = empty_list; - // Correctly initalize the iterator - iter.reset (); + // Correctly initalize the iterator + iter.reset (); // Make sure that the iterator uses <this> naming context iter.naming_context (*this); - + // Start iterations from the objects iter.current_enumeration (iter.object_iteration_); @@ -777,7 +777,7 @@ ACE_Registry::Naming_Context::list (u_long how_many, // listing function: iterator creator // This gives back a listing of all entries in <this> context. -int +int ACE_Registry::Naming_Context::list (Binding_List &list) { // Empty list @@ -797,11 +797,11 @@ ACE_Registry::Naming_Context::list (Binding_List &list) long result = 0; while (1) { - ACE_Registry::Binding binding; + ACE_Registry::Binding binding; result = iterator.next_one (binding); if (result == 0) list.insert (binding); - else + else break; } return 0; @@ -818,7 +818,7 @@ ACE_Registry::Binding_Iterator::Binding_Iterator () } -void +void ACE_Registry::Binding_Iterator::reset () { this->current_enumeration_ = &this->iteration_complete_; @@ -828,7 +828,7 @@ ACE_Registry::Binding_Iterator::reset () } -void +void ACE_Registry::Binding_Iterator::Iteration_State::reset () { this->index_ = 0; @@ -841,19 +841,19 @@ ACE_Registry::Binding_Iterator::Iteration_State::Iteration_State (Binding_Iterat { } - + ACE_Registry::Binding_Iterator::Object_Iteration::Object_Iteration (Binding_Iterator &iter) : Iteration_State (iter) { } - + ACE_Registry::Binding_Iterator::Context_Iteration::Context_Iteration (Binding_Iterator &iter) : Iteration_State (iter) { } - + ACE_Registry::Binding_Iterator::Iteration_Complete::Iteration_Complete (Binding_Iterator &iter) : Iteration_State (iter) { @@ -861,7 +861,7 @@ ACE_Registry::Binding_Iterator::Iteration_Complete::Iteration_Complete (Binding_ // Next entry -int +int ACE_Registry::Binding_Iterator::next_one (Binding &binding) { u_long how_many = 1; @@ -869,18 +869,18 @@ ACE_Registry::Binding_Iterator::next_one (Binding &binding) // Get next n (where n is one) long result = this->next_n (how_many, list); - + if (result == 0) // Success - binding = (*list.begin ()); - + binding = (*list.begin ()); + return result; } // Next <how_many> entries -int -ACE_Registry::Binding_Iterator::next_n (u_long how_many, +int +ACE_Registry::Binding_Iterator::next_n (u_long how_many, Binding_List &list) { // Empty list @@ -891,18 +891,18 @@ ACE_Registry::Binding_Iterator::next_n (u_long how_many, return this->current_enumeration_->next_n (how_many, list); } - -// Destroy iterator -int + +// Destroy iterator +int ACE_Registry::Binding_Iterator::destroy (void) { this->reset (); return 0; } - + // Set/Get naming_context -void +void ACE_Registry::Binding_Iterator::naming_context (Naming_Context &naming_context) { this->naming_context_ = &naming_context; @@ -917,7 +917,7 @@ ACE_Registry::Binding_Iterator::naming_context (void) // Set/Get current enumeration -void +void ACE_Registry::Binding_Iterator::current_enumeration (Iteration_State ¤t_enumeration) { this->current_enumeration_ = ¤t_enumeration; @@ -931,8 +931,8 @@ ACE_Registry::Binding_Iterator::current_enumeration (void) } -int -ACE_Registry::Binding_Iterator::Object_Iteration::next_n (u_long how_many, +int +ACE_Registry::Binding_Iterator::Object_Iteration::next_n (u_long how_many, Binding_List &list) { // Make a copy @@ -945,19 +945,19 @@ ACE_Registry::Binding_Iterator::Object_Iteration::next_n (u_long how_many, u_long size = sizeof string / sizeof (TCHAR); long result = ::RegEnumValue (this->parent_->naming_context (). key(), this->index_, - string, + string, &size, 0, 0, 0, 0); switch (result) - { + { case ERROR_SUCCESS: // Object found { // Readjust counters - this->index_++; + this->index_++; how_many--; // Add to list @@ -967,47 +967,47 @@ ACE_Registry::Binding_Iterator::Object_Iteration::next_n (u_long how_many, list.insert (binding); } // Continue to add to list - break; - + break; + case ERROR_NO_MORE_ITEMS: // Enumeration of objects complete - // Reset index - this->index_ = 0; + // Reset index + this->index_ = 0; // Current enumeration will become CONTEXTS - this->parent_->current_enumeration (this->parent_->context_iteration_); + this->parent_->current_enumeration (this->parent_->context_iteration_); result = this->parent_->current_enumeration ().next_n (how_many, list); // If we were able to add objects if (requested != how_many) return 0; - else + else return result; - + default: - // Strange error - // Reset index - this->index_ = 0; + // Strange error + // Reset index + this->index_ = 0; // Current enumeration will become COMPLETE - this->parent_->current_enumeration (this->parent_->iteration_complete_); - // strange error + this->parent_->current_enumeration (this->parent_->iteration_complete_); + // strange error return -1; } - } + } // If we reach here, all of <how_many> pairs were added to the list - // Since more entries may be available + // Since more entries may be available // current enumeration will remain OBJECTS return 0; } -int -ACE_Registry::Binding_Iterator::Context_Iteration::next_n (u_long how_many, +int +ACE_Registry::Binding_Iterator::Context_Iteration::next_n (u_long how_many, Binding_List &list) { // Make a copy u_long requested = how_many; - + // While there are more entries to be added to the list while (how_many > 0) { @@ -1015,19 +1015,19 @@ ACE_Registry::Binding_Iterator::Context_Iteration::next_n (u_long how_many, u_long size = sizeof string / sizeof (TCHAR); long result = ::RegEnumKeyEx (this->parent_->naming_context (). key (), this->index_, - string, + string, &size, 0, 0, 0, 0); switch (result) - { + { case ERROR_SUCCESS: // Object found { // Readjust counters - this->index_++; + this->index_++; how_many--; // Add to list @@ -1037,7 +1037,7 @@ ACE_Registry::Binding_Iterator::Context_Iteration::next_n (u_long how_many, list.insert (binding); } // Continue to add to list - break; + break; case ERROR_NO_MORE_ITEMS: // Enumeration of objects complete @@ -1045,29 +1045,29 @@ ACE_Registry::Binding_Iterator::Context_Iteration::next_n (u_long how_many, /* FALL THROUGH */ default: - // Strange error + // Strange error - // Reset index - this->index_ = 0; + // Reset index + this->index_ = 0; // Current enumeration will become CONTEXTS - this->parent_->current_enumeration (this->parent_->iteration_complete_); + this->parent_->current_enumeration (this->parent_->iteration_complete_); // If we were able to add contexts if (requested != how_many) return 0; - else + else return -1; } } // If we reach here, all of <how_many> pairs were added to the list - // Since more entries may be available + // Since more entries may be available // current enumeration will remain CONTEXTS return 0; } -int -ACE_Registry::Binding_Iterator::Iteration_Complete::next_n (u_long how_many, +int +ACE_Registry::Binding_Iterator::Iteration_Complete::next_n (u_long how_many, Binding_List &list) { ACE_UNUSED_ARG(list); @@ -1099,18 +1099,18 @@ ACE_Predefined_Naming_Contexts::connect (ACE_Registry::Naming_Context &naming_co &naming_context.key_); if (predefined == HKEY_CURRENT_USER || predefined == HKEY_CLASSES_ROOT) // Make sure that for these types, the machine is local - if (machine_name == 0 || + if (machine_name == 0 || ACE_Predefined_Naming_Contexts::is_local_host (machine_name)) { naming_context.key_ = predefined; result = 0; } - else + else result = -1; - + ACE_REGISTRY_CALL_RETURN (result); } - + // Check if <machine_name> is the local host /* static */ int @@ -1124,5 +1124,5 @@ ACE_Predefined_Naming_Contexts::is_local_host (LPCTSTR machine_name) result = 0; return result; } - + #endif /* ACE_WIN32 */ diff --git a/ace/SOCK_Dgram_Mcast.h b/ace/SOCK_Dgram_Mcast.h index 55d3ba832dd..a5640829f7e 100644 --- a/ace/SOCK_Dgram_Mcast.h +++ b/ace/SOCK_Dgram_Mcast.h @@ -34,7 +34,7 @@ class ACE_Export ACE_SOCK_Dgram_Mcast : public ACE_SOCK_Dgram public: // = Initialization routine. ACE_SOCK_Dgram_Mcast (void); - // Note that there is no <open>. This cannot be used unless you + // Note that there is no open (). This cannot be used unless you // subscribe to the multicast group. If you just want to send (and // not listen) to the multicast group, use ACE_SOCK_Dgram or // ACE_SOCK_CODgram. diff --git a/ace/SOCK_IO.cpp b/ace/SOCK_IO.cpp index abf00af3559..942fdd66342 100644 --- a/ace/SOCK_IO.cpp +++ b/ace/SOCK_IO.cpp @@ -34,13 +34,11 @@ ACE_SOCK_IO::recvv (iovec *io_vec, handle_set.reset (); handle_set.set_bit (this->get_handle ()); - io_vec->iov_base = 0; - // Check the status of the current socket. switch (ACE_OS::select (int (this->get_handle ()) + 1, - handle_set, - 0, 0, - timeout)) + handle_set, + 0, 0, + timeout)) { case -1: return -1; @@ -56,17 +54,13 @@ ACE_SOCK_IO::recvv (iovec *io_vec, u_long inlen; - if (ACE_OS::ioctl (this->get_handle (), - FIONREAD, + if (ACE_OS::ioctl (this->get_handle (), FIONREAD, (u_long *) &inlen) == -1) return -1; else if (inlen > 0) { - ACE_NEW_RETURN (io_vec->iov_base, - char[inlen], - -1); - io_vec->iov_len = this->recv (io_vec->iov_base, - inlen); + ACE_NEW_RETURN (io_vec->iov_base, char[inlen], -1); + io_vec->iov_len = this->recv (io_vec->iov_base, inlen); return io_vec->iov_len; } else @@ -105,9 +99,7 @@ ACE_SOCK_IO::send (size_t n, ...) const iovp[i].iov_len = va_arg (argp, ssize_t); } - ssize_t result = ACE_OS::sendv (this->get_handle (), - iovp, - total_tuples); + ssize_t result = ACE_OS::sendv (this->get_handle (), iovp, total_tuples); #if !defined (ACE_HAS_ALLOCA) delete [] iovp; #endif /* !defined (ACE_HAS_ALLOCA) */ @@ -143,9 +135,7 @@ ACE_SOCK_IO::recv (size_t n, ...) const iovp[i].iov_len = va_arg (argp, ssize_t); } - ssize_t result = ACE_OS::recvv (this->get_handle (), - iovp, - total_tuples); + ssize_t result = ACE_OS::recvv (this->get_handle (), iovp, total_tuples); #if !defined (ACE_HAS_ALLOCA) delete [] iovp; #endif /* !defined (ACE_HAS_ALLOCA) */ diff --git a/ace/SOCK_IO.h b/ace/SOCK_IO.h index e978945f0c2..26700cc4064 100644 --- a/ace/SOCK_IO.h +++ b/ace/SOCK_IO.h @@ -73,8 +73,7 @@ public: // buffer to read. This method determines how much data is in the // socket, allocates a buffer of this size, reads in the data, and // returns the number of bytes read. The caller is responsible for - // deleting the member in the <iov_base> field of <io_vec> using - // delete [] io_vec->iov_base. + // deleting the member in the <iov_base> field of <io_vec>. ssize_t recv (iovec *io_vec, const ACE_Time_Value *timeout = 0); diff --git a/ace/SString.h b/ace/SString.h index b7fe755c629..3b2246091b6 100644 --- a/ace/SString.h +++ b/ace/SString.h @@ -29,21 +29,20 @@ class ACE_Allocator; class ACE_Export ACE_CString { // = TITLE - // This class provides a wrapper facade for C strings. + // A simple C String <ACE_CString> class. // // = DESCRIPTION - // This class uses an <ACE_Allocator> to allocate memory. The - // user can make this a persistant class by providing an - // ACE_Allocator with a persistable memory pool. NOTE: if an - // instance of this class is constructed from or assigned an empty - // string (with first element of '\0'), then it is _not_ allocated - // new space. Instead, its internal representation is set equal - // to a global empty string. CAUTION: in cases when ACE_CString - // is constructed from provided buffer with release parameter set - // to 0, ACE_CString is not guaranteed to be '\0' terminated. // This is a place holder until all compilers implement the - // ANSI/ISO C++ standard String class. - + // ANSI/ISO C++ standard String class. This class uses + // an ACE_Allocator to allocate memory. The user can make this a + // persistant class by providing an ACE_Allocator with a + // persistable memory pool. NOTE: if an instance of this class is + // constructed from or assigned an empty string (with first + // element of '\0'), then it is _not_ allocated new space. + // Instead, its internal representation is set equal to a global + // empty string. CAUTION: in cases when ACE_CString is + // constructed from provided buffer with release parameter set to 0, ACE_CString + // is not guaranteed to be '\0' terminated. public: static const int npos; // No position constant @@ -193,130 +192,117 @@ ACE_Export ACE_INLINE ACE_CString operator + (const ACE_CString &, const ACE_CSt ACE_Export ostream &operator << (ostream &, const ACE_CString &); #endif /* ! ACE_LACKS_IOSTREAM_TOTALLY */ -class ACE_Export ACE_WString +class ACE_Export ACE_SString { // = TITLE - // This class provides a wrapper facade for C wide strings. + // A very Simple String <ACE_SString> class. This is not a + // general-purpose string class, and you should probably consider + // using <ACE_CString> is you don't understand why this class + // exists... // - // = DESCRIPTION - // This class uses an <ACE_Allocator> to allocate memory. The - // user can make this a persistant class by providing an - // <ACE_Allocator> with a persistable memory pool. This is a - // place holder until all compilers implement the ANSI/ISO C++ - // standard String class. + // = DESCRIPTION + // This class is only intended for use with applications that + // understand how it works. In particular, its destructor does + // not deallocate its memory when it is destroyed... We need this + // class since the <ACE_Map_Manager> requires an object that + // supports the operator == and operator !=. This class uses an + // <ACE_Allocator> to allocate memory. The user can make this a + // persistant class by providing an <ACE_Allocator> with a + // persistable memory pool. public: static const int npos; // No position constant - ACE_WString (ACE_Allocator *alloc = 0); + ACE_SString (ACE_Allocator *alloc = 0); // Default constructor. - ACE_WString (const char *s, - ACE_Allocator *alloc = 0); - // Constructor that copies <s> into dynamically allocated memory. - - ACE_WString (const ACE_USHORT16 *s, - ACE_Allocator *alloc = 0); + ACE_SString (const char *s, ACE_Allocator *alloc = 0); // Constructor that copies <s> into dynamically allocated memory. - ACE_WString (const ACE_USHORT16 *s, - size_t len, - ACE_Allocator *alloc = 0); - // Constructor that copies <len> ACE_USHORT16's of <s> into dynamically + ACE_SString (const char *s, size_t len, ACE_Allocator *alloc = 0); + // Constructor that copies <len> chars of <s> into dynamically // allocated memory (will NUL terminate the result). - ACE_WString (size_t len, ACE_Allocator *alloc = 0); - // Constructor that dynamically allocates memory for <len> + 1 - // ACE_USHORT16 characters. The newly created memory is set memset to 0. - - ACE_WString (const ACE_WString &s); + ACE_SString (const ACE_SString &); // Copy constructor. - ACE_WString (ACE_USHORT16 c, ACE_Allocator *alloc = 0); + ACE_SString (char c, ACE_Allocator *alloc = 0); // Constructor that copies <c> into dynamically allocated memory. - ~ACE_WString (void); - // Deletes the memory... + ~ACE_SString (void); + // Default dtor. - ACE_USHORT16 operator [] (size_t index) const; + char operator [] (size_t index) const; // Return the <index'th> character in the string (doesn't perform // bounds checking). - ACE_USHORT16 &operator [] (size_t index); + char &operator [] (size_t index); // Return the <index'th> character by reference in the string // (doesn't perform bounds checking). - ACE_WString &operator = (const ACE_WString &); + ACE_SString &operator = (const ACE_SString &); // Assignment operator (does copy memory). - void set (const ACE_USHORT16 *s); - // Copy <s> - - void set (const ACE_USHORT16 *s, size_t len); - // Copy <len> bytes of <s> (will NUL terminate the result) - - ACE_WString substring (size_t offset, ssize_t length = -1) const; + ACE_SString substring (size_t offset, ssize_t length = -1) const; // Return a substring given an offset and length, if length == -1 // use rest of str return empty substring if offset or offset/length - // are invalid. + // are invalid - ACE_WString substr (size_t offset, ssize_t length = -1) const; + ACE_SString substr (size_t offset, ssize_t length = -1) const; // Same as substring - ACE_WString &operator += (const ACE_WString &); - // Concat operator (does copy memory). - u_long hash (void) const; // Returns a hash value for this string. size_t length (void) const; // Return the length of the string. - ACE_USHORT16 *rep (void) const; - // Gets a copy of the underlying pointer. + void rep (char *s); + // Set the underlying pointer. Since this does not copy memory or + // delete existing memory use with extreme caution!!! - char *char_rep (void) const; - // Transform into a copy of the ASCII character representation. + const char *rep (void) const; + // Get the underlying pointer. - const ACE_USHORT16 *fast_rep (void) const; - // Get at the underlying representation directly! + const char *fast_rep (void) const; + // Get the underlying pointer. - const ACE_USHORT16 *c_str (void) const; + const char *c_str (void) const; // Same as STL String's <c_str> and <fast_rep>. - int strstr (const ACE_WString &s) const; + int strstr (const ACE_SString &s) const; // Comparison operator that will match substrings. Returns the // index of the first location that matches, else -1. - int find (const ACE_WString &str, int pos = 0) const; + int find (const ACE_SString &str, int pos = 0) const; // Find <str> starting at pos. Returns the index of the first // location that matches, else npos. - int find (const ACE_USHORT16 *s, int pos = 0) const; + int find (const char *s, int pos = 0) const; // Find <s> starting at pos. Returns the index of the first // location that matches, else npos. - int find (ACE_USHORT16 c, int pos = 0) const; + int find (char c, int pos = 0) const; // Find <c> starting at pos. Returns the index of the first // location that matches, else npos. - int rfind (ACE_USHORT16 c, int pos = npos) const; + int rfind (char c, int pos = npos) const; // Find <c> starting at pos (counting from the end). Returns the // index of the first location that matches, else npos. - int operator == (const ACE_WString &s) const; + int operator == (const ACE_SString &s) const; // Equality comparison operator (must match entire string). - int operator < (const ACE_WString &s) const; + int operator < (const ACE_SString &s) const; // Less than comparison operator. - int operator > (const ACE_WString &s) const; + int operator > (const ACE_SString &s) const; // Greater than comparison operator. - int operator != (const ACE_WString &s) const; + int operator != (const ACE_SString &s) const; // Inequality comparison operator. - int compare (const ACE_WString &s) const; + int compare (const ACE_SString &s) const; // Performs a <strcmp>-style comparison. void dump (void) const; @@ -325,145 +311,145 @@ public: ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. - static size_t strlen (const ACE_USHORT16 *); - // Computes the length of a "0" terminated ACE_USHORT16 *. - - static const ACE_USHORT16 *strstr (const ACE_USHORT16 *s1, const ACE_USHORT16 *s2); - // Traditional style strstr - - void resize (size_t len); - // This method is designed for high-performance. Please use with - // care ;-) If the current size of the string is less than <len>, - // the string is resized to the new length. The data is is zero'd - // out after this operation. - private: ACE_Allocator *allocator_; // Pointer to a memory allocator. size_t len_; - // Length of the ACE_WString. + // Length of the ACE_SString (not counting the trailing '\0'). - ACE_USHORT16 *rep_; + char *rep_; // Pointer to data. }; -ACE_Export ACE_INLINE ACE_WString operator + (const ACE_WString &, const ACE_WString &); #if !defined (ACE_LACKS_IOSTREAM_TOTALLY) -ACE_Export ostream &operator << (ostream &, const ACE_WString &); +ACE_Export ostream &operator << (ostream &, const ACE_SString &); #endif /* ! ACE_LACKS_IOSTREAM_TOTALLY */ -class ACE_Export ACE_SString +class ACE_Export ACE_WString { // = TITLE - // A very Simple String <ACE_SString> class. This is not a - // general-purpose string class, and you should probably consider - // using <ACE_CString> is you don't understand why this class - // exists... + // A persistent wide string class. // // = DESCRIPTION - // This class is only intended for use with applications that - // understand how it works. In particular, its destructor does - // not deallocate its memory when it is destroyed... We need this - // class since the <ACE_Map_Manager> requires an object that - // supports the operator == and operator !=. This class uses an - // <ACE_Allocator> to allocate memory. The user can make this a - // persistant class by providing an <ACE_Allocator> with a - // persistable memory pool. + // We need to use this class since the <ACE_Map_Manager> requires + // an object that supports the operator == and operator !=. This + // class uses an <ACE_Allocator> to allocate memory. The user can + // make this a persistant class by providing an <ACE_Allocator> + // with a persistable memory pool public: static const int npos; // No position constant - ACE_SString (ACE_Allocator *alloc = 0); + ACE_WString (ACE_Allocator *alloc = 0); // Default constructor. - ACE_SString (const char *s, ACE_Allocator *alloc = 0); + ACE_WString (const char *s, + ACE_Allocator *alloc = 0); // Constructor that copies <s> into dynamically allocated memory. - ACE_SString (const char *s, size_t len, ACE_Allocator *alloc = 0); - // Constructor that copies <len> chars of <s> into dynamically + ACE_WString (const ACE_USHORT16 *s, + ACE_Allocator *alloc = 0); + // Constructor that copies <s> into dynamically allocated memory. + + ACE_WString (const ACE_USHORT16 *s, + size_t len, + ACE_Allocator *alloc = 0); + // Constructor that copies <len> ACE_USHORT16's of <s> into dynamically // allocated memory (will NUL terminate the result). - ACE_SString (const ACE_SString &); + ACE_WString (size_t len, ACE_Allocator *alloc = 0); + // Constructor that dynamically allocates memory for <len> + 1 + // ACE_USHORT16 characters. The newly created memory is set memset to 0. + + ACE_WString (const ACE_WString &s); // Copy constructor. - ACE_SString (char c, ACE_Allocator *alloc = 0); + ACE_WString (ACE_USHORT16 c, ACE_Allocator *alloc = 0); // Constructor that copies <c> into dynamically allocated memory. - ~ACE_SString (void); - // Default dtor. + ~ACE_WString (void); + // Deletes the memory... - char operator [] (size_t index) const; + ACE_USHORT16 operator [] (size_t index) const; // Return the <index'th> character in the string (doesn't perform // bounds checking). - char &operator [] (size_t index); + ACE_USHORT16 &operator [] (size_t index); // Return the <index'th> character by reference in the string // (doesn't perform bounds checking). - ACE_SString &operator = (const ACE_SString &); + ACE_WString &operator = (const ACE_WString &); // Assignment operator (does copy memory). - ACE_SString substring (size_t offset, ssize_t length = -1) const; + void set (const ACE_USHORT16 *s); + // Copy <s> + + void set (const ACE_USHORT16 *s, size_t len); + // Copy <len> bytes of <s> (will NUL terminate the result) + + ACE_WString substring (size_t offset, ssize_t length = -1) const; // Return a substring given an offset and length, if length == -1 // use rest of str return empty substring if offset or offset/length - // are invalid + // are invalid. - ACE_SString substr (size_t offset, ssize_t length = -1) const; + ACE_WString substr (size_t offset, ssize_t length = -1) const; // Same as substring + ACE_WString &operator += (const ACE_WString &); + // Concat operator (does copy memory). + u_long hash (void) const; // Returns a hash value for this string. size_t length (void) const; // Return the length of the string. - void rep (char *s); - // Set the underlying pointer. Since this does not copy memory or - // delete existing memory use with extreme caution!!! + ACE_USHORT16 *rep (void) const; + // Gets a copy of the underlying pointer. - const char *rep (void) const; - // Get the underlying pointer. + char *char_rep (void) const; + // Transform into a copy of the ASCII character representation. - const char *fast_rep (void) const; - // Get the underlying pointer. + const ACE_USHORT16 *fast_rep (void) const; + // Get at the underlying representation directly! - const char *c_str (void) const; + const ACE_USHORT16 *c_str (void) const; // Same as STL String's <c_str> and <fast_rep>. - int strstr (const ACE_SString &s) const; + int strstr (const ACE_WString &s) const; // Comparison operator that will match substrings. Returns the // index of the first location that matches, else -1. - int find (const ACE_SString &str, int pos = 0) const; + int find (const ACE_WString &str, int pos = 0) const; // Find <str> starting at pos. Returns the index of the first // location that matches, else npos. - int find (const char *s, int pos = 0) const; + int find (const ACE_USHORT16 *s, int pos = 0) const; // Find <s> starting at pos. Returns the index of the first // location that matches, else npos. - int find (char c, int pos = 0) const; + int find (ACE_USHORT16 c, int pos = 0) const; // Find <c> starting at pos. Returns the index of the first // location that matches, else npos. - int rfind (char c, int pos = npos) const; + int rfind (ACE_USHORT16 c, int pos = npos) const; // Find <c> starting at pos (counting from the end). Returns the // index of the first location that matches, else npos. - int operator == (const ACE_SString &s) const; + int operator == (const ACE_WString &s) const; // Equality comparison operator (must match entire string). - int operator < (const ACE_SString &s) const; + int operator < (const ACE_WString &s) const; // Less than comparison operator. - int operator > (const ACE_SString &s) const; + int operator > (const ACE_WString &s) const; // Greater than comparison operator. - int operator != (const ACE_SString &s) const; + int operator != (const ACE_WString &s) const; // Inequality comparison operator. - int compare (const ACE_SString &s) const; + int compare (const ACE_WString &s) const; // Performs a <strcmp>-style comparison. void dump (void) const; @@ -472,21 +458,36 @@ public: ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. + static size_t strlen (const ACE_USHORT16 *); + // Computes the length of a "0" terminated ACE_USHORT16 *. + + static const ACE_USHORT16 *strstr (const ACE_USHORT16 *s1, const ACE_USHORT16 *s2); + // Traditional style strstr + + void resize (size_t len); + // This method is designed for high-performance. Please use with + // care ;-) If the current size of the string is less than <len>, + // the string is resized to the new length. The data is is zero'd + // out after this operation. + private: ACE_Allocator *allocator_; // Pointer to a memory allocator. size_t len_; - // Length of the ACE_SString (not counting the trailing '\0'). + // Length of the ACE_WString. - char *rep_; + ACE_USHORT16 *rep_; // Pointer to data. }; +ACE_Export ACE_INLINE ACE_WString operator + (const ACE_WString &, const ACE_WString &); #if !defined (ACE_LACKS_IOSTREAM_TOTALLY) -ACE_Export ostream &operator << (ostream &, const ACE_SString &); +ACE_Export ostream &operator << (ostream &, const ACE_WString &); #endif /* ! ACE_LACKS_IOSTREAM_TOTALLY */ +// ************************************************************ + class ACE_Export ACE_Tokenizer { // = TITLE @@ -588,36 +589,6 @@ private: // Pointer to the next free space in delimiters_. }; -// **************************************************************** - -class ACE_Auto_String_Free -{ - // = TITLE - // Simple class to automatically de-allocate strings - // - // = DESCRIPTION - // Keeps a pointer to a string and deallocates it (using - // ACE_OS::free()) on its destructor. - // If you need to delete using "delete[]" the - // ACE_Auto_Array_Ptr<char*> is your choice. - // The class plays the same role as auto_ptr<> - // -public: - /* explicit */ ACE_Auto_String_Free (char* p = 0); - ACE_Auto_String_Free (ACE_Auto_String_Free &rhs); - ACE_Auto_String_Free& operator= (ACE_Auto_String_Free &rhs); - ~ACE_Auto_String_Free (void); - - char* operator* () const; - char operator[] (int i) const; - char* get (void) const; - char* release (void); - void reset (char* p = 0); - -private: - char* p_; -}; - #if defined (__ACE_INLINE__) #include "ace/SString.i" #endif /* __ACE_INLINE__ */ diff --git a/ace/SString.i b/ace/SString.i index 8e7157da963..46b33d7541d 100644 --- a/ace/SString.i +++ b/ace/SString.i @@ -10,7 +10,7 @@ ACE_CString::ACE_CString (ACE_Allocator *alloc) : allocator_ (alloc ? alloc : ACE_Allocator::instance ()), len_ (0), buf_len_ (0), - rep_ (&ACE_CString::NULL_CString_), + rep_ (0), release_ (0) { ACE_TRACE ("ACE_CString::ACE_CString"); @@ -684,69 +684,3 @@ ACE_WString::hash (void) const { return ACE::hash_pjw (this->rep_); } - -// **************************************************************** - -ACE_INLINE -ACE_Auto_String_Free::ACE_Auto_String_Free (char* p) - : p_ (p) -{ -} - -ACE_INLINE -ACE_Auto_String_Free::ACE_Auto_String_Free (ACE_Auto_String_Free& rhs) - : p_ (rhs.p_) -{ - rhs.p_ = 0; -} - -ACE_INLINE void -ACE_Auto_String_Free::reset (char* p) -{ - if (this->p_ != 0) - ACE_OS::free (this->p_); - this->p_ = p; -} - -ACE_INLINE ACE_Auto_String_Free& -ACE_Auto_String_Free::operator= (ACE_Auto_String_Free& rhs) -{ - if (this != &rhs) - { - this->reset (rhs.p_); - rhs.p_ = 0; - } - return *this; -} - -ACE_INLINE -ACE_Auto_String_Free::~ACE_Auto_String_Free (void) -{ - this->reset (0); -} - -ACE_INLINE char* -ACE_Auto_String_Free::operator* (void) const -{ - return this->p_; -} - -ACE_INLINE char -ACE_Auto_String_Free::operator[] (int i) const -{ - return this->p_[i]; -} - -ACE_INLINE char* -ACE_Auto_String_Free::get (void) const -{ - return this->p_; -} - -ACE_INLINE char* -ACE_Auto_String_Free::release (void) -{ - char* p = this->p_; - this->p_ = 0; - return p; -} diff --git a/ace/Sched_Params.cpp b/ace/Sched_Params.cpp index cafb440f5da..e1da20664e9 100644 --- a/ace/Sched_Params.cpp +++ b/ace/Sched_Params.cpp @@ -24,6 +24,11 @@ #include "ace/Sched_Params.i" #endif /* __ACE_INLINE__ */ +#if defined (ACE_HAS_PRIOCNTL) && defined (ACE_HAS_STHREADS) +# include /**/ <sys/rtpriocntl.h> +# include /**/ <sys/tspriocntl.h> +#endif /* ACE_HAS_PRIOCNTL && defined (ACE_HAS_STHREADS) */ + ACE_RCSID(ace, Sched_Params, "$Id$") int diff --git a/ace/Select_Reactor_Base.cpp b/ace/Select_Reactor_Base.cpp index 3bf4e4ac8cf..49253ee4bfe 100644 --- a/ace/Select_Reactor_Base.cpp +++ b/ace/Select_Reactor_Base.cpp @@ -294,12 +294,6 @@ ACE_Select_Reactor_Handler_Repository::unbind (ACE_HANDLE handle, this->select_reactor_.wait_set_, ACE_Reactor::CLR_MASK); - // And suspend_set. - this->select_reactor_.bit_ops (handle, - mask, - this->select_reactor_.suspend_set_, - ACE_Reactor::CLR_MASK); - // Note the fact that we've changed the state of the <wait_set_>, // which is used by the dispatching loop to determine whether it can // keep going or if it needs to reconsult select(). diff --git a/ace/Select_Reactor_Base.h b/ace/Select_Reactor_Base.h index e21b1a48290..739c50e3dd7 100644 --- a/ace/Select_Reactor_Base.h +++ b/ace/Select_Reactor_Base.h @@ -373,8 +373,7 @@ protected: // we didn't create it, then we don't delete it). int restart_; - // Restart the <handle_events> event-loop method automatically when - // <select> is interrupted via <EINTR>. + // Restart automatically when interrupted int requeue_position_; // Position that the main ACE_Select_Reactor thread is requeued in diff --git a/ace/Select_Reactor_T.h b/ace/Select_Reactor_T.h index 2f26d04379b..0c85859f460 100644 --- a/ace/Select_Reactor_T.h +++ b/ace/Select_Reactor_T.h @@ -127,19 +127,13 @@ public: ACE_Reactor_Notify *notify = 0); // Initialize <ACE_Select_Reactor> with size <size>. - virtual int open (size_t max_number_of_handles = DEFAULT_SIZE, + virtual int open (size_t size = DEFAULT_SIZE, int restart = 0, ACE_Sig_Handler * = 0, ACE_Timer_Queue * = 0, int disable_notify_pipe = 0, ACE_Reactor_Notify * = 0); - // Initialize the <ACE_Select_Reactor> to manage - // <max_number_of_handles>. If <restart> is non-0 then the - // <ACE_Reactor>'s <handle_events> method will be restarted - // automatically when <EINTR> occurs. If <signal_handler> or - // <timer_queue> are non-0 they are used as the signal handler and - // timer queue, respectively. If <disable_notify_pipe> is non-0 the - // notification pipe is not created, thereby saving two I/O handles. + // Initialize <ACE_Select_Reactor> with size <size>. virtual int current_info (ACE_HANDLE, size_t & /* size */); // Returns -1 (not used in this implementation); diff --git a/ace/Service_Config.i b/ace/Service_Config.i index c0aff18fde6..1d71fb21cd9 100644 --- a/ace/Service_Config.i +++ b/ace/Service_Config.i @@ -58,13 +58,16 @@ ACE_Service_Config::signal_handler (ACE_Sig_Adapter *signal_handler) ACE_INLINE int ACE_Service_Config::initialize (const ACE_Service_Type *sp, char parameters[]) { - return ACE_Service_Config::initialize (sp, ACE_WIDE_STRING (parameters)); + wchar_t *wparameters = ACE_const_cast (wchar_t *, ACE_WIDE_STRING (parameters)); + return ACE_Service_Config::initialize (sp, wparameters); } ACE_INLINE int ACE_Service_Config::initialize (const char svc_name[], char parameters[]) { - return ACE_Service_Config::initialize (ACE_WIDE_STRING (svc_name), ACE_WIDE_STRING (parameters)); + const wchar_t *wsvc_name = ACE_WIDE_STRING (svc_name); + wchar_t *wparameters = ACE_const_cast (wchar_t *, ACE_WIDE_STRING (parameters)); + return ACE_Service_Config::initialize (wsvc_name, wparameters); } ACE_INLINE int diff --git a/ace/Service_Object.i b/ace/Service_Object.i index 1b15899cc49..7dea95999e2 100644 --- a/ace/Service_Object.i +++ b/ace/Service_Object.i @@ -60,7 +60,7 @@ ACE_Service_Type::name (const ASYS_TCHAR *n) this->name_ = ACE_OS::strcpy (new ASYS_TCHAR [ACE_OS::strlen (n) + 1], n); #if defined (ACE_HAS_MOSTLY_UNICODE_APIS) delete [] (char *) this->chname_; - this->chname_ = ACE_OS_WString (this->name_).char_rep (); + this->chname_ = ACE_MULTIBYTE_STRING (this->name_); #endif /* !ACE_HAS_MOSTLY_UNICODE_APIS */ } diff --git a/ace/Service_Repository.cpp b/ace/Service_Repository.cpp index 43711da3b7d..0db2df28a47 100644 --- a/ace/Service_Repository.cpp +++ b/ace/Service_Repository.cpp @@ -209,15 +209,13 @@ ACE_Service_Repository::find_i (const ASYS_TCHAR name[], if (i < this->current_size_) { - if (this->service_vector_[i]->fini_called ()) + if (srp != 0) + *srp = this->service_vector_[i]; + if ((*srp)->fini_called ()) { - if (srp != 0) - *srp = 0; + *srp = 0; return -1; } - - if (srp != 0) - *srp = this->service_vector_[i]; if (ignore_suspended && this->service_vector_[i]->active () == 0) return -2; diff --git a/ace/Synch.h b/ace/Synch.h index a15155352d1..21415ad495a 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -1577,9 +1577,7 @@ public: // = Initialization and termination methods. ACE_Guard (ACE_Null_Mutex &) {} ACE_Guard (ACE_Null_Mutex &, int) {} -#if defined (ACE_WIN32) ~ACE_Guard (void) {} -#endif /* ACE_WIN32 */ int acquire (void) { return 0; } int tryacquire (void) { return 0; } diff --git a/ace/Synch_Options.cpp b/ace/Synch_Options.cpp index e3ed2627f1d..dff6dfb9b20 100644 --- a/ace/Synch_Options.cpp +++ b/ace/Synch_Options.cpp @@ -1,3 +1,4 @@ +// Synch_Options.cpp // $Id$ #define ACE_BUILD_DLL @@ -18,20 +19,19 @@ ACE_Synch_Options::dump (void) const } // Static initialization. -// Note: these three objects require static construction and destruction. -/* static */ +/* static */ ACE_Synch_Options ACE_Synch_Options::defaults; -/* static */ +/* static */ ACE_Synch_Options ACE_Synch_Options::synch; -/* static */ +/* static */ ACE_Synch_Options ACE_Synch_Options::asynch (ACE_Synch_Options::USE_REACTOR); ACE_Synch_Options::ACE_Synch_Options (u_long options, - const ACE_Time_Value &timeout, - const void *arg) + const ACE_Time_Value &timeout, + const void *arg) { // ACE_TRACE ("ACE_Synch_Options::ACE_Synch_Options"); this->set (options, timeout, arg); @@ -39,17 +39,13 @@ ACE_Synch_Options::ACE_Synch_Options (u_long options, void ACE_Synch_Options::set (u_long options, - const ACE_Time_Value &timeout, - const void *arg) + const ACE_Time_Value &timeout, + const void *arg) { // ACE_TRACE ("ACE_Synch_Options::set"); this->options_ = options; this->timeout_ = (ACE_Time_Value &) timeout; - // Whoa, possible dependence on static initialization here. This - // function is called during initialization of the statics above. - // But, ACE_Time_Value::zero is a static object. Very fortunately, - // its bits have a value of 0. if (this->timeout_ != ACE_Time_Value::zero) ACE_SET_BITS (this->options_, ACE_Synch_Options::USE_TIMEOUT); @@ -63,7 +59,7 @@ ACE_Synch_Options::operator[] (u_long option) const return (this->options_ & option) != 0; } -void +void ACE_Synch_Options::operator= (u_long option) { ACE_TRACE ("ACE_Synch_Options::operator="); @@ -77,7 +73,7 @@ ACE_Synch_Options::timeout (void) const return this->timeout_; } -void +void ACE_Synch_Options::timeout (ACE_Time_Value &tv) { ACE_TRACE ("ACE_Synch_Options::timeout"); @@ -104,3 +100,4 @@ ACE_Synch_Options::arg (const void *a) ACE_TRACE ("ACE_Synch_Options::arg"); this->arg_ = a; } + diff --git a/ace/Synch_T.cpp b/ace/Synch_T.cpp index 4984d772f13..d72e8b2452c 100644 --- a/ace/Synch_T.cpp +++ b/ace/Synch_T.cpp @@ -35,13 +35,6 @@ ACE_Lock_Adapter<ACE_LOCKING_MECHANISM>::ACE_Lock_Adapter (void) ACE_NEW (this->lock_, ACE_LOCKING_MECHANISM); } -template <class ACE_LOCKING_MECHANISM> -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::~ACE_Reverse_Lock (void) -{ - if (this->delete_lock_) - delete this->lock_; -} - template <class ACE_LOCK, class TYPE> ACE_Test_and_Set<ACE_LOCK, TYPE>::ACE_Test_and_Set (TYPE initial_value) : is_set_ (initial_value) @@ -107,8 +100,7 @@ ACE_Atomic_Op<ACE_LOCK, TYPE>::ACE_Atomic_Op (const TYPE &c) // ACE_TRACE ("ACE_Atomic_Op<ACE_LOCK, TYPE>::ACE_Atomic_Op"); } -// **************************************************************** -// ACE_ALLOC_HOOK_DEFINE(ACE_Guard) +ACE_ALLOC_HOOK_DEFINE(ACE_Guard) template <class ACE_LOCK> void ACE_Guard<ACE_LOCK>::dump (void) const @@ -121,7 +113,7 @@ ACE_Guard<ACE_LOCK>::dump (void) const ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } -// ACE_ALLOC_HOOK_DEFINE(ACE_Write_Guard) +ACE_ALLOC_HOOK_DEFINE(ACE_Write_Guard) template <class ACE_LOCK> void ACE_Write_Guard<ACE_LOCK>::dump (void) const @@ -130,7 +122,7 @@ ACE_Write_Guard<ACE_LOCK>::dump (void) const ACE_Guard<ACE_LOCK>::dump (); } -// ACE_ALLOC_HOOK_DEFINE(ACE_Read_Guard) +ACE_ALLOC_HOOK_DEFINE(ACE_Read_Guard) template <class ACE_LOCK> void ACE_Read_Guard<ACE_LOCK>::dump (void) const diff --git a/ace/Synch_T.h b/ace/Synch_T.h index b89d1b0a707..c2ea6468e77 100644 --- a/ace/Synch_T.h +++ b/ace/Synch_T.h @@ -96,72 +96,6 @@ private: // the lock }; -template <class ACE_LOCKING_MECHANISM> -class ACE_Reverse_Lock : public ACE_Lock -{ - // = TITLE - // A reverse (or anti) lock. - // - // = DESCRIPTION - // This is an interesting adapter class that changes a lock into - // a reverse lock, i.e., acquire() on this class calls release() - // on the lock, and release() on this class calls acquire() on - // the lock. - // - // One motivation for this class is when we temporarily want to - // release a lock (which we have already acquired) but then - // reaquire it soon after. An alternative design would be to - // add a Anti_Guard or Reverse_Guard class which would release() - // on construction and acquire() destruction. However, there - // are *many* varieties of the Guard class and this design - // choice would lead to at least 6 new classes. One new - // ACE_Reverse_Lock class seemed more reasonable. -public: - typedef ACE_LOCKING_MECHANISM ACE_LOCK; - - // = Initialization/Finalization methods. - - ACE_Reverse_Lock (ACE_LOCKING_MECHANISM &lock); - // Constructor. All locking requests will be forwarded to <lock>. - - virtual ~ACE_Reverse_Lock (void); - // Destructor. If <lock_> was not passed in by the user, it will be - // deleted. - - // = Lock accessors. - virtual int acquire (void); - // Release the lock. - - virtual int tryacquire (void); - // Release the lock. - - virtual int release (void); - // Acquire the lock. - - virtual int acquire_read (void); - // Release the lock. - - virtual int acquire_write (void); - // Release the lock. - - virtual int tryacquire_read (void); - // Release the lock. - - virtual int tryacquire_write (void); - // Release the lock. - - virtual int remove (void); - // Explicitly destroy the lock. - -private: - ACE_LOCKING_MECHANISM *lock_; - // The concrete locking mechanism that all the methods delegate to. - - int delete_lock_; - // This flag keep track of whether we are responsible for deleting - // the lock -}; - template <class ACE_LOCK, class TYPE> class ACE_Test_and_Set : public ACE_Event_Handler { diff --git a/ace/Synch_T.i b/ace/Synch_T.i index 52445c8750b..c4e1b9d8d06 100644 --- a/ace/Synch_T.i +++ b/ace/Synch_T.i @@ -161,69 +161,6 @@ ACE_Lock_Adapter<ACE_LOCKING_MECHANISM>::tryacquire_write (void) return this->lock_->tryacquire_write (); } -template <class ACE_LOCKING_MECHANISM> ACE_INLINE -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::ACE_Reverse_Lock (ACE_LOCKING_MECHANISM &lock) - : lock_ (&lock), - delete_lock_ (0) -{ -} - -// Explicitly destroy the lock. -template <class ACE_LOCKING_MECHANISM> ACE_INLINE int -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::remove (void) -{ - return this->lock_->remove (); -} - -// Release the lock. -template <class ACE_LOCKING_MECHANISM> ACE_INLINE int -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::acquire (void) -{ - return this->lock_->release (); -} - -// Release the lock. -template <class ACE_LOCKING_MECHANISM> ACE_INLINE int -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::tryacquire (void) -{ - return this->lock_->tryacquire (); -} - -// Acquire the lock. -template <class ACE_LOCKING_MECHANISM> ACE_INLINE int -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::release (void) -{ - return this->lock_->acquire (); -} - -// Release the lock. -template <class ACE_LOCKING_MECHANISM> ACE_INLINE int -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::acquire_read (void) -{ - return this->lock_->acquire_read (); -} - -// Release the lock. -template <class ACE_LOCKING_MECHANISM> ACE_INLINE int -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::acquire_write (void) -{ - return this->lock_->acquire_write (); -} - -// Release the lock. -template <class ACE_LOCKING_MECHANISM> ACE_INLINE int -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::tryacquire_read (void) -{ - return this->lock_->tryacquire_read (); -} - -// Release the lock. -template <class ACE_LOCKING_MECHANISM> ACE_INLINE int -ACE_Reverse_Lock<ACE_LOCKING_MECHANISM>::tryacquire_write (void) -{ - return this->lock_->tryacquire_write (); -} - #if defined (ACE_HAS_THREADS) template<class MUTEX> ACE_INLINE int diff --git a/ace/TLI_Acceptor.cpp b/ace/TLI_Acceptor.cpp index f77851f2097..cf9f319bd2e 100644 --- a/ace/TLI_Acceptor.cpp +++ b/ace/TLI_Acceptor.cpp @@ -142,8 +142,7 @@ open_new_endpoint (ACE_HANDLE listen_handle, #if defined (I_PUSH) && !defined (ACE_HAS_FORE_ATM_XTI) else if (rwf != 0 && ACE_OS::ioctl (fd, I_PUSH, - ACE_const_cast (char *, "tirdwr")) - == ACE_INVALID_HANDLE) + "tirdwr") == ACE_INVALID_HANDLE) fd = ACE_INVALID_HANDLE; #endif /* I_PUSH */ diff --git a/ace/TLI_Connector.cpp b/ace/TLI_Connector.cpp index 12323b0fe1d..878386e26f1 100644 --- a/ace/TLI_Connector.cpp +++ b/ace/TLI_Connector.cpp @@ -170,7 +170,7 @@ ACE_TLI_Connector::connect (ACE_TLI_Stream &new_stream, if (new_stream.get_rwflag ()) result = ACE_OS::ioctl (new_stream.get_handle (), I_PUSH, - ACE_const_cast (char *, "tirdwr")); + "tirdwr"); #endif /* I_PUSH */ } else if (!(errno == EWOULDBLOCK || errno == ETIME)) diff --git a/ace/TP_Reactor.h b/ace/TP_Reactor.h index 6f5bd35886f..3dab62c2607 100644 --- a/ace/TP_Reactor.h +++ b/ace/TP_Reactor.h @@ -111,16 +111,11 @@ public: ACE_Timer_Queue * = 0); // Initialize <ACE_TP_Reactor> with the default size. - ACE_TP_Reactor (size_t max_number_of_handles, + ACE_TP_Reactor (size_t size, int restart = 0, ACE_Sig_Handler * = 0, ACE_Timer_Queue * = 0); - // Initialize the <ACE_TP_Reactor> to manage - // <max_number_of_handles>. If <restart> is non-0 then the - // <ACE_Reactor>'s <handle_events> method will be restarted - // automatically when <EINTR> occurs. If <signal_handler> or - // <timer_queue> are non-0 they are used as the signal handler and - // timer queue, respectively. + // Initialize <ACE_TP_Reactor> with size <size>. // = Event loop drivers. diff --git a/ace/Thread_Manager.h b/ace/Thread_Manager.h index 2b43724a0bc..e203e068d35 100644 --- a/ace/Thread_Manager.h +++ b/ace/Thread_Manager.h @@ -498,19 +498,14 @@ public: // treated as "absolute" time. Returns 0 on success and -1 on // failure. If <abandon_detached_threads> is set, wait will first // check thru its thread list for threads with THR_DETACHED or - // THR_DAEMON flags set and remove these threads. Notice that - // unlike other wait_* function, by default, wait () does wait on - // all thread spawned by this thread_manager no matter the detached - // flags are set or not unless it is called with - // <abandon_detached_threads> flag set. + // THR_DAEMON flags set and remove these threads. int join (ACE_thread_t tid, void **status = 0); - // Join a thread specified by <tid>. Do not wait on a detached thread. + // Join a thread specified by <tid>. int wait_grp (int grp_id); // Block until there are no more threads running in a group. - // Returns 0 on success and -1 on failure. Notice that wait_grp - // will not wait on detached threads. + // Returns 0 on success and -1 on failure. // = Accessors for ACE_Thread_Descriptors. ACE_Thread_Descriptor *thread_desc_self (void); @@ -600,8 +595,7 @@ public: // = Operations on ACE_Tasks. int wait_task (ACE_Task_Base *task); // Block until there are no more threads running in <task>. Returns - // 0 on success and -1 on failure. Notice that wait_task will not - // wait on detached threads. + // 0 on success and -1 on failure. int suspend_task (ACE_Task_Base *task); // Suspend all threads in an ACE_Task. int resume_task (ACE_Task_Base *task); diff --git a/ace/Timer_Queue.i b/ace/Timer_Queue.i deleted file mode 100644 index 41e4324e61e..00000000000 --- a/ace/Timer_Queue.i +++ /dev/null @@ -1,22 +0,0 @@ -/* -*- C++ -*- */ - -template <class TYPE, class FUNCTOR> ACE_INLINE void -ACE_Timer_Queue_T<TYPE, FUNCTOR>::timer_skew (const ACE_Time_Value &skew) -{ - timer_skew_ = skew; -} - -template <class TYPE, class FUNCTOR> ACE_INLINE const ACE_Time_Value & -ACE_Timer_Queue_T<TYPE, FUNCTOR>::timer_skew (void) const -{ - return timer_skew_; -} - -template <class TYPE, class FUNCTOR> ACE_INLINE int -ACE_Timer_Queue_T<TYPE, FUNCTOR>::expire (void) -{ - if (!this->is_empty ()) - return this->expire (this->gettimeofday () + timer_skew_); - else - return 0; -} diff --git a/ace/TkReactor.cpp b/ace/TkReactor.cpp deleted file mode 100644 index b32a0220333..00000000000 --- a/ace/TkReactor.cpp +++ /dev/null @@ -1,415 +0,0 @@ -#define ACE_BUILD_DLL -#include "ace/Synch_T.h" -#include "ace/SOCK_Acceptor.h" -#include "ace/SOCK_Connector.h" -#include "ace/TkReactor.h" - -ACE_RCSID(ace, TkReactor, "$Id$") - -#if defined (ACE_HAS_TK) - -ACE_ALLOC_HOOK_DEFINE (ACE_TkReactor) - -// Must be called with lock held -ACE_TkReactor::ACE_TkReactor (size_t size, - int restart, - ACE_Sig_Handler *h) - : ACE_Select_Reactor (size, restart, h), - ids_ (0), - timeout_ (0) -{ - // When the ACE_Select_Reactor is constructed it creates the notify - // pipe and registers it with the register_handler_i() method. The - // TkReactor overloads this method BUT because the - // register_handler_i occurs when constructing the base class - // ACE_Select_Reactor, the ACE_Select_Reactor register_handler_i() - // is called not the TkReactor register_handler_i(). This means - // that the notify pipe is registered with the ACE_Select_Reactor - // event handling code not the TkReactor and so notfications don't - // work. To get around this we simply close and re-opened the - // notification handler in the constructor of the TkReactor. - -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - this->notify_handler_->close (); - this->notify_handler_->open (this, 0); -#endif /* ACE_MT_SAFE */ -} - -ACE_TkReactor::~ACE_TkReactor (void) -{ - // Delete the remaining items in the linked list. - - while (this->ids_) - { - ACE_TkReactorID *TkID = this->ids_->next_; - delete this->ids_; - this->ids_ = TkID; - } -} - -// This is just the <wait_for_multiple_events> from ace/Reactor.cpp -// but we use the Tk functions to wait for an event, not <select> - -int -ACE_TkReactor::wait_for_multiple_events (ACE_Select_Reactor_Handle_Set &handle_set, - ACE_Time_Value *max_wait_time) -{ - ACE_TRACE ("ACE_TkReactor::wait_for_multiple_events"); - int nfound; - - do - { - max_wait_time = this->timer_queue_->calculate_timeout (max_wait_time); - - size_t width = this->handler_rep_.max_handlep1 (); - handle_set.rd_mask_ = this->wait_set_.rd_mask_; - handle_set.wr_mask_ = this->wait_set_.wr_mask_; - handle_set.ex_mask_ = this->wait_set_.ex_mask_; - nfound = TkWaitForMultipleEvents (width, - handle_set, - max_wait_time); - - } while (nfound == -1 && this->handle_error () > 0); - - if (nfound > 0) - { -#if !defined (ACE_WIN32) - handle_set.rd_mask_.sync (this->handler_rep_.max_handlep1 ()); - handle_set.wr_mask_.sync (this->handler_rep_.max_handlep1 ()); - handle_set.ex_mask_.sync (this->handler_rep_.max_handlep1 ()); -#endif /* ACE_WIN32 */ - } - return nfound; // Timed out or input available -} - -void -ACE_TkReactor::TimerCallbackProc (ClientData cd) -{ - ACE_TkReactor *self = (ACE_TkReactor *) cd; - self->timeout_ = 0; - - // Deal with any timer events - ACE_Select_Reactor_Handle_Set handle_set; - self->dispatch (0, handle_set); - self->reset_timeout (); -} - -// This could be made shorter if we know which *kind* of event we were -// about to get. Here we use <select> to find out which one might be -// available. - -void -ACE_TkReactor::InputCallbackProc (ClientData cd, - int mask) -{ - ACE_TkReactor_Input_Callback *callback = (ACE_TkReactor_Input_Callback *) cd; - ACE_TkReactor *self = callback->reactor_; - ACE_HANDLE handle = callback->handle_; - - // my copy isn't const. - ACE_Time_Value zero = ACE_Time_Value::zero; - - ACE_Select_Reactor_Handle_Set wait_set; - - // Deal with one file event. - - // - read which kind of event - if (self->wait_set_.rd_mask_.is_set (handle)) - wait_set.rd_mask_.set_bit (handle); - if (self->wait_set_.wr_mask_.is_set (handle)) - wait_set.wr_mask_.set_bit (handle); - if (self->wait_set_.ex_mask_.is_set (handle)) - wait_set.ex_mask_.set_bit (handle); - - int result = ACE_OS::select (handle + 1, - wait_set.rd_mask_, - wait_set.wr_mask_, - wait_set.ex_mask_, &zero); - - ACE_Select_Reactor_Handle_Set dispatch_set; - - // - Use only that one file event (removes events for other files). - if (result > 0) - { - if (wait_set.rd_mask_.is_set (handle)) - dispatch_set.rd_mask_.set_bit (handle); - if (wait_set.wr_mask_.is_set (handle)) - dispatch_set.wr_mask_.set_bit (handle); - if (wait_set.ex_mask_.is_set (handle)) - dispatch_set.ex_mask_.set_bit (handle); - - self->dispatch (1, dispatch_set); - } -} - -int -ACE_TkReactor::TkWaitForMultipleEvents (int width, - ACE_Select_Reactor_Handle_Set &wait_set, - ACE_Time_Value *) -{ - // Check to make sure our handle's are all usable. - ACE_Select_Reactor_Handle_Set temp_set = wait_set; - - if (ACE_OS::select (width, - temp_set.rd_mask_, - temp_set.wr_mask_, - temp_set.ex_mask_, - (ACE_Time_Value *) &ACE_Time_Value::zero) == -1) - return -1; // Bad file arguments... - - // Instead of waiting using <select>, just use the Tk mechanism to - // wait for a single event. - - // Wait for something to happen. - ::Tcl_DoOneEvent (0); - - // Reset the width, in case it changed during the upcalls. - width = this->handler_rep_.max_handlep1 (); - - // Now actually read the result needed by the <Select_Reactor> using - // <select>. - return ACE_OS::select (width, - wait_set.rd_mask_, - wait_set.wr_mask_, - wait_set.ex_mask_, - (ACE_Time_Value *) &ACE_Time_Value::zero); -} - -int -ACE_TkReactor::register_handler_i (ACE_HANDLE handle, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask) -{ - ACE_TRACE ("ACE_TkReactor::register_handler_i"); - - int result = ACE_Select_Reactor::register_handler_i (handle, - handler, mask); - if (result == -1) - return -1; - - int condition = 0; - -#if !defined ACE_WIN32 - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::READ_MASK)) - ACE_SET_BITS (condition, TK_READABLE); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::WRITE_MASK)) - ACE_SET_BITS (condition, TK_WRITABLE); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::EXCEPT_MASK)) - ACE_SET_BITS (condition, TK_EXCEPTION); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::ACCEPT_MASK)) - ACE_SET_BITS (condition, TK_READABLE); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::CONNECT_MASK)){ - ACE_SET_BITS (condition, TK_READABLE); // connected, you may write - ACE_SET_BITS (condition, TK_WRITABLE); // connected, you have data/err - } -#else - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::READ_MASK)) - ACE_SET_BITS (condition, TK_READABLE); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::WRITE_MASK)) - ACE_SET_BITS (condition, TK_WRITABLE); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::EXCEPT_MASK)) - ACE_NOTSUP_RETURN(-1); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::ACCEPT_MASK)) - ACE_SET_BITS (condition, TK_READABLE); - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::CONNECT_MASK)){ - ACE_SET_BITS (condition, TK_READABLE); // connected, you may write - ACE_SET_BITS (condition, TK_WRITABLE); // connected, you have data/err - } -#endif /* !ACE_WIN32 */ - - if (condition != 0) - { - ACE_TkReactorID *TkID = this->ids_; - - while(TkID) - { - if (TkID->handle_ == handle) - { - ::Tk_DeleteFileHandler (TkID->handle_); - - ACE_TkReactor_Input_Callback *callback; - ACE_NEW_RETURN (callback, - ACE_TkReactor_Input_Callback, - -1); - callback->reactor_ = this; - callback->handle_ = handle; - ::Tk_CreateFileHandler ((int) handle, - condition, - InputCallbackProc, - (ClientData) callback); - return 0; - } - else - TkID = TkID->next_; - } - - ACE_NEW_RETURN (TkID, - ACE_TkReactorID, - -1); - TkID->next_ = this->ids_; - TkID->handle_ = handle; - ACE_TkReactor_Input_Callback *callback; - ACE_NEW_RETURN (callback, - ACE_TkReactor_Input_Callback, - -1); - callback->reactor_ = this; - callback->handle_ = handle; - - ::Tk_CreateFileHandler ((int) handle, - condition, - InputCallbackProc, - (ClientData) callback); - this->ids_ = TkID; - } - return 0; -} - -int -ACE_TkReactor::register_handler_i (const ACE_Handle_Set &handles, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask) -{ - return ACE_Select_Reactor::register_handler_i (handles, - handler, - mask); -} - -int -ACE_TkReactor::remove_handler_i (ACE_HANDLE handle, - ACE_Reactor_Mask mask) -{ - ACE_TRACE ("ACE_TkReactor::remove_handler_i"); - - // In the registration phase we registered first with - // ACE_Select_Reactor and then with X. Now we are now doing things - // in reverse order. - - // First clean up the corresponding X11Input. - this->remove_TkFileHandler (handle); - - // Now let the reactor do its work. - return ACE_Select_Reactor::remove_handler_i (handle, - mask); -} - -void -ACE_TkReactor::remove_TkFileHandler (ACE_HANDLE handle) -{ - ACE_TRACE ("ACE_TkReactor::remove_TkInput"); - - ACE_TkReactorID *TkID = this->ids_; - - if (TkID) - { - if (TkID->handle_ == handle) - { - ::Tk_DeleteFileHandler (TkID->handle_); - this->ids_ = TkID->next_; - delete TkID; - return; - } - - ACE_TkReactorID *NextID = TkID->next_; - - while (NextID) - { - if (NextID->handle_ == handle) - { - ::Tk_DeleteFileHandler (NextID->handle_); - TkID->next_ = NextID->next_; - delete NextID; - return; - } - else - { - TkID = NextID; - NextID = NextID->next_; - } - } - } -} - -int -ACE_TkReactor::remove_handler_i (const ACE_Handle_Set &handles, - ACE_Reactor_Mask mask) -{ - return ACE_Select_Reactor::remove_handler_i (handles, - mask); -} - -// The following functions ensure that there is an Tk timeout for the -// first timeout in the Reactor's Timer_Queue. - -void -ACE_TkReactor::reset_timeout (void) -{ - if (this->timeout_) - ::Tk_DeleteTimerHandler (this->timeout_); - timeout_ = 0; - - ACE_Time_Value *max_wait_time = - this->timer_queue_->calculate_timeout (0); - - if (max_wait_time) - timeout_ = ::Tk_CreateTimerHandler (max_wait_time->msec (), - TimerCallbackProc, - (ClientData) this); -} - -long -ACE_TkReactor::schedule_timer (ACE_Event_Handler *handler, - const void *arg, - const ACE_Time_Value &delta_time, - const ACE_Time_Value &interval) -{ - ACE_TRACE ("ACE_TkReactor::schedule_timer"); - ACE_MT (ACE_GUARD_RETURN (ACE_Select_Reactor_Token, ace_mon, this->token_, -1)); - - long result = ACE_Select_Reactor::schedule_timer (handler, - arg, - delta_time, - interval); - if (result == -1) - return -1; - else - { - this->reset_timeout (); - return result; - } -} - -int -ACE_TkReactor::cancel_timer (ACE_Event_Handler *handler, - int dont_call_handle_close) -{ - ACE_TRACE ("ACE_TkReactor::cancel_timer"); - - if (ACE_Select_Reactor::cancel_timer (handler, - dont_call_handle_close) == -1) - return -1; - else - { - this->reset_timeout (); - return 0; - } -} - -int -ACE_TkReactor::cancel_timer (long timer_id, - const void **arg, - int dont_call_handle_close) -{ - ACE_TRACE ("ACE_TkReactor::cancel_timer"); - - if (ACE_Select_Reactor::cancel_timer (timer_id, - arg, - dont_call_handle_close) == -1) - return -1; - else - { - this->reset_timeout (); - return 0; - } -} - -#endif /* ACE_HAS_TK */ diff --git a/ace/TkReactor.h b/ace/TkReactor.h deleted file mode 100644 index 7290a49d9c3..00000000000 --- a/ace/TkReactor.h +++ /dev/null @@ -1,123 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ -// ============================================================================ -// -// = LIBRARY -// ace -// -// = FILENAME -// TkReactor.h -// -// = AUTHOR -// Nagarajan Surendran <naga@cs.wustl.edu> -// -// ============================================================================ - -#ifndef ACE_TKREACTOR_H -#define ACE_TKREACTOR_H - -#include "ace/Select_Reactor.h" -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#if defined (ACE_HAS_TK) -#include <tk.h> - -class ACE_Export ACE_TkReactorID -{ - // = TITLE - // This little class is necessary due to the way that Microsoft - // implements sockets to be pointers rather than indices. -public: - ACE_HANDLE handle_; - // Underlying handle. - - ACE_TkReactorID *next_; - // Pointer to next node in the linked list. -}; - -class ACE_TkReactor; - -class ACE_Export ACE_TkReactor_Input_Callback -{ -public: - ACE_TkReactor *reactor_; - ACE_HANDLE handle_; -}; - -class ACE_Export ACE_TkReactor : public ACE_Select_Reactor -{ - // = TITLE - // An object-oriented event demultiplexor and event handler - // dispatcher that uses the Tk functions. -public: - // = Initialization and termination methods. - ACE_TkReactor (size_t size = DEFAULT_SIZE, - int restart = 0, - ACE_Sig_Handler * = 0); - - virtual ~ACE_TkReactor (void); - - // = Timer operations. - virtual long schedule_timer (ACE_Event_Handler *handler, - const void *arg, - const ACE_Time_Value &delta_time, - const ACE_Time_Value &interval); - - virtual int cancel_timer (ACE_Event_Handler *handler, - int dont_call_handle_close = 1); - - virtual int cancel_timer (long timer_id, - const void **arg = 0, - int dont_call_handle_close = 1); - -protected: - // = Register timers/handles with Tk. - virtual int register_handler_i (ACE_HANDLE handle, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask); - // Register a single <handler>. - - virtual int register_handler_i (const ACE_Handle_Set &handles, - ACE_Event_Handler *handler, - ACE_Reactor_Mask mask); - // Register a set of <handlers>. - - virtual int remove_handler_i (ACE_HANDLE handle, - ACE_Reactor_Mask mask); - // Remove the <handler> associated with this <handle>. - - virtual int remove_handler_i (const ACE_Handle_Set &handles, - ACE_Reactor_Mask); - // Remove a set of <handles>. - - virtual void remove_TkFileHandler (ACE_HANDLE handle); - // Removes an Tk FileHandler. - - virtual int wait_for_multiple_events (ACE_Select_Reactor_Handle_Set &, - ACE_Time_Value *); - // Wait for events to occur. - - virtual int TkWaitForMultipleEvents (int, - ACE_Select_Reactor_Handle_Set &, - ACE_Time_Value *); - //Wait for Tk events to occur. - - ACE_TkReactorID *ids_; - Tk_TimerToken timeout_; - -private: - void reset_timeout (void); - - // = Integrate with the X callback function mechanism. - static void TimerCallbackProc (ClientData cd); - static void InputCallbackProc (ClientData cd,int mask); - - ACE_TkReactor (const ACE_TkReactor &); - ACE_TkReactor &operator = (const ACE_TkReactor &); - // Deny access since member-wise won't work... -}; - -#endif /* ACE_HAS_TK */ -#endif /* ACE_TK_REACTOR_H */ diff --git a/ace/UNIX_Addr.h b/ace/UNIX_Addr.h index 1c8b9a8269e..b198b13da25 100644 --- a/ace/UNIX_Addr.h +++ b/ace/UNIX_Addr.h @@ -50,7 +50,7 @@ public: // Creates an ACE_UNIX_Addr from a string. int set (const sockaddr_un *, int len); - // Creates an ACE_UNIX_Addr from a sockaddr_un structure. + // Creates an ACE_INET_Addr from a sockaddr_un structure. virtual void *get_addr (void) const; // Return a pointer to the underlying network address. diff --git a/ace/Version.h b/ace/Version.h index 73a4cf3341e..b914616ceba 100644 --- a/ace/Version.h +++ b/ace/Version.h @@ -3,5 +3,5 @@ #define ACE_MAJOR_VERSION 4 #define ACE_MINOR_VERSION 6 -#define ACE_BETA_VERSION 40 -#define ACE_VERSION "4.6.40" +#define ACE_BETA_VERSION 37 +#define ACE_VERSION "4.6.37" diff --git a/ace/WIN32_Proactor.cpp b/ace/WIN32_Proactor.cpp index fc87933c28b..e67e3bef3e6 100644 --- a/ace/WIN32_Proactor.cpp +++ b/ace/WIN32_Proactor.cpp @@ -16,38 +16,6 @@ #include "ace/WIN32_Proactor.i" #endif /* __ACE_INLINE__ */ -class ACE_Export ACE_WIN32_Wakeup_Completion : public ACE_WIN32_Asynch_Result -{ - // = TITLE - // - // This is result object is used by the <end_event_loop> of the - // ACE_Proactor interface to wake up all the threads blocking - // for completions. - // - // = DESCRIPTION - // - -public: - ACE_WIN32_Wakeup_Completion (ACE_Handler &handler, - const void *act = 0, - ACE_HANDLE event = ACE_INVALID_HANDLE, - int priority = 0, - int signal_number = ACE_SIGRTMIN); - // Constructor. - - virtual ~ACE_WIN32_Wakeup_Completion (void); - // Destructor. - - - virtual void complete (u_long bytes_transferred = 0, - int success = 1, - const void *completion_key = 0, - u_long error = 0); - // This method calls the <handler>'s <handle_wakeup> method. -}; - -// ********************************************************************* - ACE_WIN32_Proactor::ACE_WIN32_Proactor (size_t number_of_threads, int used_with_reactor_event_loop) : completion_port_ (0), @@ -494,30 +462,13 @@ ACE_WIN32_Proactor::post_completion (ACE_WIN32_Asynch_Result *result) ) == FALSE) { delete result; - ACE_ERROR_RETURN ((LM_ERROR, "PostQueuedCompletionStatus failed\n"), -1); + ACE_ERROR_RETURN ((LM_ERROR, "Failure in dealing with timers: PostQueuedCompletionStatus failed\n"), -1); } return 0; } int -ACE_WIN32_Proactor::post_wakeup_completions (int how_many) -{ - ACE_WIN32_Wakeup_Completion *wakeup_completion = 0; - for (ssize_t ci = 0; ci < how_many; ci++) - { - ACE_NEW_RETURN (wakeup_completion, - ACE_WIN32_Wakeup_Completion (this->wakeup_handler_), - -1); - - if (wakeup_completion->post_completion (this) == -1) - return -1; - } - - return 0; -} - -int ACE_WIN32_Proactor::wake_up_dispatch_threads (void) { return 0; @@ -562,7 +513,7 @@ ACE_WIN32_Asynch_Timer::complete (u_long bytes_transferred, const void *completion_key, u_long error) { - ACE_UNUSED_ARG (error); + ACE_UNUSED_ARG (error); ACE_UNUSED_ARG (completion_key); ACE_UNUSED_ARG (success); ACE_UNUSED_ARG (bytes_transferred); @@ -570,29 +521,4 @@ ACE_WIN32_Asynch_Timer::complete (u_long bytes_transferred, this->handler_.handle_time_out (this->time_, this->act ()); } -// ********************************************************************* - -ACE_WIN32_Wakeup_Completion::ACE_WIN32_Wakeup_Completion (ACE_Handler &handler, - const void *act, - ACE_HANDLE event, - int priority, - int signal_number) - : ACE_Asynch_Result_Impl (), - ACE_WIN32_Asynch_Result (handler, act, event, 0, 0, priority, signal_number) -{ -} - -ACE_WIN32_Wakeup_Completion::~ACE_WIN32_Wakeup_Completion (void) -{ -} - -void -ACE_WIN32_Wakeup_Completion::complete (u_long /* bytes_transferred */, - int /* success */, - const void * /* completion_key */, - u_long /* error */) -{ - this->handler_.handle_wakeup (); -} - #endif /* ACE_WIN32 */ diff --git a/ace/WIN32_Proactor.h b/ace/WIN32_Proactor.h index cc7dec6e120..f46999dbf9e 100644 --- a/ace/WIN32_Proactor.h +++ b/ace/WIN32_Proactor.h @@ -201,10 +201,6 @@ protected: // Protect against structured exceptions caused by user code when // dispatching handles. - virtual int post_wakeup_completions (int how_many); - // Post <how_many> completions to the completion port so that all - // threads can wake up. This is used in conjunction with the - // <run_event_loop>. ACE_HANDLE completion_port_; // Handle for the completion port. Unix doesnt have completion @@ -221,10 +217,6 @@ protected: int used_with_reactor_event_loop_; // Flag that indicates whether we are used in conjunction with // Reactor. - - ACE_Handler wakeup_handler_; - // Handler to handle the wakeups. This works in conjunction with the - // <ACE_Proactor::run_event_loop>. }; class ACE_Export ACE_WIN32_Asynch_Timer : public ACE_WIN32_Asynch_Result diff --git a/ace/XtReactor.cpp b/ace/XtReactor.cpp index 8acce2bdf4a..aed4161ad09 100644 --- a/ace/XtReactor.cpp +++ b/ace/XtReactor.cpp @@ -14,8 +14,8 @@ ACE_ALLOC_HOOK_DEFINE (ACE_XtReactor) // Must be called with lock held ACE_XtReactor::ACE_XtReactor (XtAppContext context, - size_t size, - int restart, + size_t size, + int restart, ACE_Sig_Handler *h) : ACE_Select_Reactor (size, restart, h), context_ (context), @@ -54,22 +54,22 @@ ACE_XtReactor::~ACE_XtReactor (void) // This is just the <wait_for_multiple_events> from ace/Reactor.cpp // but we use the Xt functions to wait for an event, not <select> -int +int ACE_XtReactor::wait_for_multiple_events (ACE_Select_Reactor_Handle_Set &handle_set, ACE_Time_Value *max_wait_time) { ACE_TRACE ("ACE_XtReactor::wait_for_multiple_events"); int nfound; - do + do { max_wait_time = this->timer_queue_->calculate_timeout (max_wait_time); - + size_t width = this->handler_rep_.max_handlep1 (); handle_set.rd_mask_ = this->wait_set_.rd_mask_; handle_set.wr_mask_ = this->wait_set_.wr_mask_; handle_set.ex_mask_ = this->wait_set_.ex_mask_; - nfound = XtWaitForMultipleEvents (width, + nfound = XtWaitForMultipleEvents (width, handle_set, max_wait_time); @@ -86,7 +86,7 @@ ACE_XtReactor::wait_for_multiple_events (ACE_Select_Reactor_Handle_Set &handle_s return nfound; // Timed out or input available } -void +void ACE_XtReactor::TimerCallbackProc (XtPointer closure, XtIntervalId *id) { ACE_XtReactor *self = (ACE_XtReactor *) closure; @@ -102,21 +102,21 @@ ACE_XtReactor::TimerCallbackProc (XtPointer closure, XtIntervalId *id) // about to get. Here we use <select> to find out which one might be // available. -void -ACE_XtReactor::InputCallbackProc (XtPointer closure, - int *source, +void +ACE_XtReactor::InputCallbackProc (XtPointer closure, + int *source, XtInputId *) { ACE_XtReactor *self = (ACE_XtReactor *) closure; ACE_HANDLE handle = (ACE_HANDLE) *source; // my copy isn't const. - ACE_Time_Value zero = ACE_Time_Value::zero; + ACE_Time_Value zero = ACE_Time_Value::zero; ACE_Select_Reactor_Handle_Set wait_set; // Deal with one file event. - + // - read which kind of event if (self->wait_set_.rd_mask_.is_set (handle)) wait_set.rd_mask_.set_bit (handle); @@ -146,8 +146,8 @@ ACE_XtReactor::InputCallbackProc (XtPointer closure, } } -int -ACE_XtReactor::XtWaitForMultipleEvents (int width, +int +ACE_XtReactor::XtWaitForMultipleEvents (int width, ACE_Select_Reactor_Handle_Set &wait_set, ACE_Time_Value *) { @@ -157,10 +157,10 @@ ACE_XtReactor::XtWaitForMultipleEvents (int width, // Check to make sure our handle's are all usable. ACE_Select_Reactor_Handle_Set temp_set = wait_set; - if (ACE_OS::select (width, - temp_set.rd_mask_, - temp_set.wr_mask_, - temp_set.ex_mask_, + if (ACE_OS::select (width, + temp_set.rd_mask_, + temp_set.wr_mask_, + temp_set.ex_mask_, (ACE_Time_Value *) &ACE_Time_Value::zero) == -1) return -1; // Bad file arguments... @@ -176,26 +176,26 @@ ACE_XtReactor::XtWaitForMultipleEvents (int width, // Now actually read the result needed by the <Select_Reactor> using // <select>. return ACE_OS::select (width, - wait_set.rd_mask_, - wait_set.wr_mask_, - wait_set.ex_mask_, + wait_set.rd_mask_, + wait_set.wr_mask_, + wait_set.ex_mask_, (ACE_Time_Value *) &ACE_Time_Value::zero); } -XtAppContext +XtAppContext ACE_XtReactor::context (void) const { - return this->context_; + return this->context_; } -void +void ACE_XtReactor::context (XtAppContext context) { this->context_ = context; } int -ACE_XtReactor::register_handler_i (ACE_HANDLE handle, +ACE_XtReactor::register_handler_i (ACE_HANDLE handle, ACE_Event_Handler *handler, ACE_Reactor_Mask mask) { @@ -249,10 +249,10 @@ ACE_XtReactor::register_handler_i (ACE_HANDLE handle, { ::XtRemoveInput (XtID->id_); - XtID->id_ = ::XtAppAddInput (this->context_, - (int) handle, - (XtPointer) condition, - InputCallbackProc, + XtID->id_ = ::XtAppAddInput (this->context_, + (int) handle, + (XtPointer) condition, + InputCallbackProc, (XtPointer) this); return 0; } @@ -266,9 +266,9 @@ ACE_XtReactor::register_handler_i (ACE_HANDLE handle, XtID->next_ = this->ids_; XtID->handle_ = handle; XtID->id_ = ::XtAppAddInput (this->context_, - (int) handle, - (XtPointer) condition, - InputCallbackProc, + (int) handle, + (XtPointer) condition, + InputCallbackProc, (XtPointer) this); this->ids_ = XtID; } @@ -276,8 +276,8 @@ ACE_XtReactor::register_handler_i (ACE_HANDLE handle, } int -ACE_XtReactor::register_handler_i (const ACE_Handle_Set &handles, - ACE_Event_Handler *handler, +ACE_XtReactor::register_handler_i (const ACE_Handle_Set &handles, + ACE_Event_Handler *handler, ACE_Reactor_Mask mask) { return ACE_Select_Reactor::register_handler_i (handles, @@ -286,27 +286,13 @@ ACE_XtReactor::register_handler_i (const ACE_Handle_Set &handles, } int -ACE_XtReactor::remove_handler_i (ACE_HANDLE handle, +ACE_XtReactor::remove_handler_i (ACE_HANDLE handle, ACE_Reactor_Mask mask) { ACE_TRACE ("ACE_XtReactor::remove_handler_i"); - // In the registration phase we registered first with - // ACE_Select_Reactor and then with X. Now we are now doing things - // in reverse order. - - // First clean up the corresponding X11Input. - this->remove_XtInput (handle); - - // Now let the reactor do its work. - return ACE_Select_Reactor::remove_handler_i (handle, - mask); -} - -void -ACE_XtReactor::remove_XtInput (ACE_HANDLE handle) -{ - ACE_TRACE ("ACE_XtReactor::remove_XtInput"); + int result = ACE_Select_Reactor::remove_handler_i (handle, + mask); ACE_XtReactorID *XtID = this->ids_; @@ -317,7 +303,10 @@ ACE_XtReactor::remove_XtInput (ACE_HANDLE handle) ::XtRemoveInput (XtID->id_); this->ids_ = XtID->next_; delete XtID; - return; + if (result == -1) + return result; + else + return 0; } ACE_XtReactorID *NextID = XtID->next_; @@ -329,7 +318,11 @@ ACE_XtReactor::remove_XtInput (ACE_HANDLE handle) ::XtRemoveInput(NextID->id_); XtID->next_ = NextID->next_; delete NextID; - return; + + if (result == -1) + return result; + else + return 0; } else { @@ -338,20 +331,25 @@ ACE_XtReactor::remove_XtInput (ACE_HANDLE handle) } } } + + if (result == -1) + return result; + else + return 0; } -int -ACE_XtReactor::remove_handler_i (const ACE_Handle_Set &handles, +int +ACE_XtReactor::remove_handler_i (const ACE_Handle_Set &handles, ACE_Reactor_Mask mask) { - return ACE_Select_Reactor::remove_handler_i (handles, + return ACE_Select_Reactor::remove_handler_i (handles, mask); } // The following functions ensure that there is an Xt timeout for the // first timeout in the Reactor's Timer_Queue. -void +void ACE_XtReactor::reset_timeout (void) { // Make sure we have a valid context @@ -361,20 +359,20 @@ ACE_XtReactor::reset_timeout (void) ::XtRemoveTimeOut (timeout_); timeout_ = 0; - ACE_Time_Value *max_wait_time = + ACE_Time_Value *max_wait_time = this->timer_queue_->calculate_timeout (0); if (max_wait_time) - timeout_ = ::XtAppAddTimeOut (this->context_, - max_wait_time->msec (), - TimerCallbackProc, + timeout_ = ::XtAppAddTimeOut (this->context_, + max_wait_time->msec (), + TimerCallbackProc, (XtPointer) this); } long -ACE_XtReactor::schedule_timer (ACE_Event_Handler *handler, +ACE_XtReactor::schedule_timer (ACE_Event_Handler *handler, const void *arg, - const ACE_Time_Value &delta_time, + const ACE_Time_Value &delta_time, const ACE_Time_Value &interval) { ACE_TRACE ("ACE_XtReactor::schedule_timer"); @@ -399,7 +397,7 @@ ACE_XtReactor::cancel_timer (ACE_Event_Handler *handler, { ACE_TRACE ("ACE_XtReactor::cancel_timer"); - if (ACE_Select_Reactor::cancel_timer (handler, + if (ACE_Select_Reactor::cancel_timer (handler, dont_call_handle_close) == -1) return -1; else @@ -410,13 +408,13 @@ ACE_XtReactor::cancel_timer (ACE_Event_Handler *handler, } int -ACE_XtReactor::cancel_timer (long timer_id, +ACE_XtReactor::cancel_timer (long timer_id, const void **arg, int dont_call_handle_close) { ACE_TRACE ("ACE_XtReactor::cancel_timer"); - if (ACE_Select_Reactor::cancel_timer (timer_id, + if (ACE_Select_Reactor::cancel_timer (timer_id, arg, dont_call_handle_close) == -1) return -1; diff --git a/ace/XtReactor.h b/ace/XtReactor.h index 2895626357c..b2f86dc5d1f 100644 --- a/ace/XtReactor.h +++ b/ace/XtReactor.h @@ -96,9 +96,6 @@ protected: ACE_Reactor_Mask); // Remove a set of <handles>. - virtual void remove_XtInput (ACE_HANDLE handle); - // Removes an Xt handle. - virtual int wait_for_multiple_events (ACE_Select_Reactor_Handle_Set &, ACE_Time_Value *); // Wait for events to occur. diff --git a/ace/ace_dll.dsp b/ace/ace_dll.dsp index 71e4639265c..d880eaa61b7 100644 --- a/ace/ace_dll.dsp +++ b/ace/ace_dll.dsp @@ -31,7 +31,7 @@ CFG=ACE dynamic library - Win32 Debug # Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
-# PROP Scc_LocalPath "Desktop"
+# PROP Scc_LocalPath ""
!IF "$(CFG)" == "ACE dynamic library - Win32 Debug"
@@ -171,12 +171,14 @@ LINK32=link.exe # PROP Intermediate_Dir "DLL\Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+CPP=cl.exe
+# ADD BASE CPP /nologo /Gt0 /W3 /GX /Zi /Od /Gy /I "..\\ /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /FD /MTd /c
+# SUBTRACT BASE CPP /YX /Yc /Yu
+# ADD CPP /nologo /Gt0 /W3 /GX /Zi /Od /Gy /I "..\\ /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /FD /MDd /c
+# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /o /win32 "NUL" "NUL"
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /o /win32 "NUL" "NUL"
-CPP=cl.exe
-# ADD BASE CPP /Gt0 nologo Gt0 W3 GX Zi Od Gy I "..\\ /D " WIN32" D "_DEBUG" D "_WINDOWS" D ACE_HAS_DLL=1 FD MTd c
-# ADD CPP /nologo /MDd /Gt0 /W3 /GX /Zi /Od /Gy /I "..\\ /D" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=1 /D "_DEBUG" /FD /c
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
@@ -203,12 +205,14 @@ LINK32=link.exe # PROP Intermediate_Dir "DLL\Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+CPP=cl.exe
+# ADD BASE CPP /nologo /MT /Gt0 /W3 /GX /O2 /Ob2 /I "..\\ /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /FD /c
+# SUBTRACT BASE CPP /YX
+# ADD CPP /nologo /MD /Gt0 /W3 /GX /O2 /Ob2 /I "..\\ /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /FD /c
+# SUBTRACT CPP /YX
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /o /win32 "NUL" "NUL"
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /o /win32 "NUL" "NUL"
-CPP=cl.exe
-# ADD BASE CPP /Gt0 nologo MT Gt0 W3 GX O2 Ob2 I "..\\ /D " WIN32" D "NDEBUG" D "_WINDOWS" D ACE_HAS_DLL=1 FD c
-# ADD CPP /nologo /MD /Gt0 /W3 /GX /O2 /Ob2 /I "..\\" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /FD /c
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
@@ -235,12 +239,14 @@ LINK32=link.exe # PROP Intermediate_Dir "DLL\Unicode_Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+CPP=cl.exe
+# ADD BASE CPP /nologo /Gt0 /W3 /GX /Zi /Od /Gy /I "..\\ /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /D "UNICODE" /FD /MTd /c
+# SUBTRACT BASE CPP /YX
+# ADD CPP /nologo /Gt0 /W3 /GX /Zi /Od /Gy /I "..\\ /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /D "UNICODE" /FD /MTd /c
+# SUBTRACT CPP /YX
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /o /win32 "NUL" "NUL"
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /o /win32 "NUL" "NUL"
-CPP=cl.exe
-# ADD BASE CPP /Gt0 nologo Gt0 W3 GX Zi Od Gy I "..\\ /D " WIN32" D "_DEBUG" D "_WINDOWS" D ACE_HAS_DLL=1 D "UNICODE" FD MTd c
-# ADD CPP /nologo /MTd /Gt0 /W3 /GX /Zi /Od /Gy /I "..\\" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /D "UNICODE" /FD /c
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
@@ -267,12 +273,14 @@ LINK32=link.exe # PROP Intermediate_Dir "DLL\Unicode_Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+CPP=cl.exe
+# ADD BASE CPP /nologo /MT /Gt0 /W3 /GX /O2 /Ob2 /I "..\\ /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /D "UNICODE" /FD /c
+# SUBTRACT BASE CPP /YX
+# ADD CPP /nologo /MT /Gt0 /W3 /GX /O2 /Ob2 /I "..\\ /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /D "UNICODE" /FD /c
+# SUBTRACT CPP /YX
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /o /win32 "NUL" "NUL"
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /o /win32 "NUL" "NUL"
-CPP=cl.exe
-# ADD BASE CPP /Gt0 nologo MT Gt0 W3 GX O2 Ob2 I "..\\ /D " WIN32" D "NDEBUG" D "_WINDOWS" D ACE_HAS_DLL=1 D "UNICODE" FD c
-# ADD CPP /nologo /MT /Gt0 /W3 /GX /O2 /Ob2 /I "..\\" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D ACE_HAS_DLL=1 /D "UNICODE" /FD /c
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
@@ -314,8 +322,98 @@ SOURCE=.\ACE.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_ACE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_ACE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -337,8 +435,252 @@ SOURCE=.\Activation_Queue.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_ACTIV=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Activation_Queue.h"\
+ ".\Activation_Queue.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Method_Request.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_ACTIV=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Activation_Queue.h"\
+ ".\Activation_Queue.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Method_Request.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -383,8 +725,80 @@ SOURCE=.\Addr.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_ADDR_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_ADDR_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -406,8 +820,78 @@ SOURCE=.\Arg_Shifter.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_ARG_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Arg_Shifter.h"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_ARG_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Arg_Shifter.h"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -429,8 +913,146 @@ SOURCE=.\ARGV.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_ARGV_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_ARGV_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -452,8 +1074,310 @@ SOURCE=.\Asynch_IO.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_ASYNC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_ASYNC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -498,8 +1422,404 @@ SOURCE=.\Basic_Types.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_BASIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Template_Instantiations.cpp"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_BASIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Template_Instantiations.cpp"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -552,8 +1872,142 @@ SOURCE=.\Containers.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -575,8 +2029,186 @@ SOURCE=.\CORBA_Handler.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_CORBA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\CORBA_Handler.h"\
+ ".\CORBA_Handler.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_CORBA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\CORBA_Handler.h"\
+ ".\CORBA_Handler.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -598,8 +2230,80 @@ SOURCE=.\CORBA_Ref.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_CORBA_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\CORBA_Ref.h"\
+ ".\CORBA_Ref.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_CORBA_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\CORBA_Ref.h"\
+ ".\CORBA_Ref.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -621,8 +2325,80 @@ SOURCE=.\Date_Time.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DATE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Date_Time.h"\
+ ".\Date_Time.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DATE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Date_Time.h"\
+ ".\Date_Time.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -644,8 +2420,92 @@ SOURCE=.\DEV.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DEV_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DEV_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -667,8 +2527,84 @@ SOURCE=.\DEV_Addr.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DEV_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DEV_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -690,8 +2626,100 @@ SOURCE=.\DEV_Connector.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DEV_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_Connector.h"\
+ ".\DEV_Connector.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DEV_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_Connector.h"\
+ ".\DEV_Connector.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -713,8 +2741,96 @@ SOURCE=.\DEV_IO.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DEV_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DEV_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -736,8 +2852,16 @@ SOURCE=.\Dirent.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DIREN=\
+ ".\Dirent.i"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DIREN=\
+ ".\Dirent.i"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -759,8 +2883,78 @@ SOURCE=.\DLL.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DLL_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DLL.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DLL_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DLL.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -782,8 +2976,110 @@ SOURCE=.\Dump.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DUMP_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dump.h"\
+ ".\Dump_T.cpp"\
+ ".\Dump_T.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DUMP_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dump.h"\
+ ".\Dump_T.cpp"\
+ ".\Dump_T.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -805,8 +3101,114 @@ SOURCE=.\Dynamic.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DYNAM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DYNAM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -828,8 +3230,184 @@ SOURCE=.\Dynamic_Service.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_DYNAMI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic_Service.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_DYNAMI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic_Service.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -851,8 +3429,174 @@ SOURCE=.\Event_Handler.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_EVENT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_EVENT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -874,8 +3618,84 @@ SOURCE=.\Event_Handler_T.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_EVENT_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Event_Handler_T.h"\
+ ".\Event_Handler_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_EVENT_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Event_Handler_T.h"\
+ ".\Event_Handler_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -897,8 +3717,84 @@ SOURCE=.\FIFO.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FIFO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FIFO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -920,8 +3816,88 @@ SOURCE=.\FIFO_Recv.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FIFO_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Recv.h"\
+ ".\FIFO_Recv.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FIFO_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Recv.h"\
+ ".\FIFO_Recv.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -943,8 +3919,92 @@ SOURCE=.\FIFO_Recv_Msg.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FIFO_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Recv.h"\
+ ".\FIFO_Recv.i"\
+ ".\FIFO_Recv_Msg.h"\
+ ".\FIFO_Recv_Msg.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FIFO_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Recv.h"\
+ ".\FIFO_Recv.i"\
+ ".\FIFO_Recv_Msg.h"\
+ ".\FIFO_Recv_Msg.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -966,8 +4026,88 @@ SOURCE=.\FIFO_Send.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FIFO_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Send.h"\
+ ".\FIFO_Send.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FIFO_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Send.h"\
+ ".\FIFO_Send.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -989,8 +4129,92 @@ SOURCE=.\FIFO_Send_Msg.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FIFO_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Send.h"\
+ ".\FIFO_Send.i"\
+ ".\FIFO_Send_Msg.h"\
+ ".\FIFO_Send_Msg.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FIFO_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Send.h"\
+ ".\FIFO_Send.i"\
+ ".\FIFO_Send_Msg.h"\
+ ".\FIFO_Send_Msg.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1012,8 +4236,92 @@ SOURCE=.\FILE.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FILE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FILE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1035,8 +4343,84 @@ SOURCE=.\FILE_Addr.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FILE_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FILE_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1058,8 +4442,100 @@ SOURCE=.\FILE_Connector.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FILE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\FILE_Connector.h"\
+ ".\FILE_Connector.i"\
+ ".\FILE_IO.h"\
+ ".\FILE_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FILE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\FILE_Connector.h"\
+ ".\FILE_Connector.i"\
+ ".\FILE_IO.h"\
+ ".\FILE_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1081,8 +4557,96 @@ SOURCE=.\FILE_IO.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FILE_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\FILE_IO.h"\
+ ".\FILE_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FILE_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\FILE_IO.h"\
+ ".\FILE_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1104,8 +4668,196 @@ SOURCE=.\Filecache.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FILEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FILEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1127,8 +4879,86 @@ SOURCE=.\Functor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FUNCT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FUNCT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1150,8 +4980,106 @@ SOURCE=.\Future.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_FUTUR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Future.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_FUTUR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Future.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1173,8 +5101,80 @@ SOURCE=.\Get_Opt.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_GET_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_GET_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1196,8 +5196,80 @@ SOURCE=.\Handle_Set.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_HANDL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_HANDL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1265,8 +5337,150 @@ SOURCE=.\High_Res_Timer.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_HIGH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_HIGH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1288,8 +5502,84 @@ SOURCE=.\INET_Addr.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_INET_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_INET_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1334,8 +5624,80 @@ SOURCE=.\IO_SAP.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_IO_SA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_IO_SA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1357,8 +5719,96 @@ SOURCE=.\IOStream.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_IOSTR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IOStream.h"\
+ ".\IOStream_T.cpp"\
+ ".\IOStream_T.h"\
+ ".\IOStream_T.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_IOSTR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IOStream.h"\
+ ".\IOStream_T.cpp"\
+ ".\IOStream_T.h"\
+ ".\IOStream_T.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1380,8 +5830,80 @@ SOURCE=.\IPC_SAP.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_IPC_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_IPC_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1403,8 +5925,248 @@ SOURCE=.\Local_Name_Space.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LOCAL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LOCAL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1426,8 +6188,192 @@ SOURCE=.\Local_Tokens.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LOCAL_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LOCAL_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1449,8 +6395,192 @@ SOURCE=.\Log_Msg.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LOG_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LOG_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1472,8 +6602,76 @@ SOURCE=.\Log_Record.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LOG_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LOG_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1495,8 +6693,92 @@ SOURCE=.\LSOCK.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LSOCK=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LSOCK=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1518,8 +6800,122 @@ SOURCE=.\LSOCK_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Acceptor.h"\
+ ".\LSOCK_Acceptor.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LSOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Acceptor.h"\
+ ".\LSOCK_Acceptor.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1541,8 +6937,104 @@ SOURCE=.\LSOCK_CODgram.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_CODgram.h"\
+ ".\LSOCK_CODgram.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LSOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_CODgram.h"\
+ ".\LSOCK_CODgram.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1564,8 +7056,122 @@ SOURCE=.\LSOCK_Connector.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Connector.h"\
+ ".\LSOCK_Connector.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LSOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Connector.h"\
+ ".\LSOCK_Connector.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1587,8 +7193,100 @@ SOURCE=.\LSOCK_Dgram.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Dgram.h"\
+ ".\LSOCK_Dgram.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LSOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Dgram.h"\
+ ".\LSOCK_Dgram.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1610,8 +7308,112 @@ SOURCE=.\LSOCK_Stream.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_LSOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1633,8 +7435,142 @@ SOURCE=.\Malloc.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_MALLO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_MALLO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1679,8 +7615,80 @@ SOURCE=.\Mem_Map.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_MEM_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_MEM_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1702,8 +7710,142 @@ SOURCE=.\Memory_Pool.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_MEMOR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_MEMOR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1725,8 +7867,170 @@ SOURCE=.\Message_Block.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_MESSA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_MESSA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1756,8 +8060,246 @@ SOURCE=.\Message_Queue.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_MESSAG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_MESSAG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1779,8 +8321,78 @@ SOURCE=.\Method_Request.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_METHO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Method_Request.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_METHO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Method_Request.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1802,8 +8414,250 @@ SOURCE=.\Msg_WFMO_Reactor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_MSG_W=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Msg_WFMO_Reactor.h"\
+ ".\Msg_WFMO_Reactor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_MSG_W=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Msg_WFMO_Reactor.h"\
+ ".\Msg_WFMO_Reactor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1825,8 +8679,278 @@ SOURCE=.\Multiplexor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_MULTI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Multiplexor.h"\
+ ".\Multiplexor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_MULTI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Multiplexor.h"\
+ ".\Multiplexor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1848,8 +8972,212 @@ SOURCE=.\Name_Proxy.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_NAME_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_NAME_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1871,8 +9199,80 @@ SOURCE=.\Name_Request_Reply.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_NAME_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Name_Request_Reply.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_NAME_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Name_Request_Reply.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1894,8 +9294,214 @@ SOURCE=.\Name_Space.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_NAME_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_NAME_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1917,8 +9523,258 @@ SOURCE=.\Naming_Context.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_NAMIN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Registry.h"\
+ ".\Registry_Name_Space.h"\
+ ".\Remote_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_NAMIN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Registry.h"\
+ ".\Registry_Name_Space.h"\
+ ".\Remote_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1940,8 +9796,272 @@ SOURCE=.\NT_Service.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_NT_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\NT_Service.h"\
+ ".\NT_Service.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_NT_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\NT_Service.h"\
+ ".\NT_Service.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1963,8 +10083,238 @@ SOURCE=.\Object_Manager.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_OBJEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_OBJEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -1986,8 +10336,146 @@ SOURCE=.\Obstack.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_OBSTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_OBSTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2009,8 +10497,276 @@ SOURCE=.\OS.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_OS_CP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_OS_CP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2055,8 +10811,272 @@ SOURCE=.\Parse_Node.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_PARSE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_PARSE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2078,8 +11098,114 @@ SOURCE=.\Pipe.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_PIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_PIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2101,8 +11227,220 @@ SOURCE=.\Priority_Reactor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_PRIOR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Priority_Reactor.h"\
+ ".\Priority_Reactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_PRIOR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Priority_Reactor.h"\
+ ".\Priority_Reactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2124,8 +11462,302 @@ SOURCE=.\Proactor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_PROAC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_PROAC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2147,8 +11779,150 @@ SOURCE=.\Process.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_PROCE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_PROCE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2170,8 +11944,112 @@ SOURCE=.\Process_Manager.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_PROCES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Process_Manager.h"\
+ ".\Process_Manager.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_PROCES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Process_Manager.h"\
+ ".\Process_Manager.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2193,8 +12071,191 @@ SOURCE=.\Profile_Timer.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_PROFI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+
+DEP_CPP_PROFI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\RB_Tree.cpp
+
+!IF "$(CFG)" == "ACE dynamic library - Win32 Debug"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Release"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Unicode Debug"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Unicode Release"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+
+DEP_CPP_RB_TR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\RB_Tree.h"\
+ ".\RB_Tree.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_RB_TR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\RB_Tree.h"\
+ ".\RB_Tree.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2216,8 +12277,292 @@ SOURCE=.\Reactor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_REACT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Msg_WFMO_Reactor.h"\
+ ".\Msg_WFMO_Reactor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_REACT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Msg_WFMO_Reactor.h"\
+ ".\Msg_WFMO_Reactor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2239,8 +12584,178 @@ SOURCE=.\Read_Buffer.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_READ_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Read_Buffer.h"\
+ ".\Read_Buffer.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_READ_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Read_Buffer.h"\
+ ".\Read_Buffer.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2262,8 +12777,144 @@ SOURCE=.\Registry.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_REGIS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Registry.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_REGIS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Registry.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2285,8 +12936,220 @@ SOURCE=.\Registry_Name_Space.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_REGIST=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Registry.h"\
+ ".\Registry_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_REGIST=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Registry.h"\
+ ".\Registry_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2308,8 +13171,216 @@ SOURCE=.\Remote_Name_Space.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_REMOT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_REMOT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2331,8 +13402,232 @@ SOURCE=.\Remote_Tokens.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_REMOTE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_REMOTE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2354,8 +13649,80 @@ SOURCE=.\Sched_Params.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SCHED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SCHED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2377,8 +13744,216 @@ SOURCE=.\Select_Reactor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SELEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SELEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2400,8 +13975,212 @@ SOURCE=.\Select_Reactor_Base.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SELECT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SELECT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2423,8 +14202,354 @@ SOURCE=.\Service_Config.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SERVI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SERVI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2446,8 +14571,284 @@ SOURCE=.\Service_Manager.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SERVIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SERVIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2469,8 +14870,116 @@ SOURCE=.\Service_Object.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2492,8 +15001,120 @@ SOURCE=.\Service_Repository.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SERVICE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SERVICE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2515,8 +15136,276 @@ SOURCE=.\Service_Types.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SERVICE_T=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SERVICE_T=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2538,8 +15427,78 @@ SOURCE=.\Shared_Memory.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SHARE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SHARE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2561,8 +15520,86 @@ SOURCE=.\Shared_Memory_MM.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SHARED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\Shared_Memory_MM.h"\
+ ".\Shared_Memory_MM.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SHARED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\Shared_Memory_MM.h"\
+ ".\Shared_Memory_MM.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2584,8 +15621,86 @@ SOURCE=.\Shared_Memory_SV.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SHARED_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\Shared_Memory_SV.h"\
+ ".\Shared_Memory_SV.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Shared_Memory.h"\
+ ".\SV_Shared_Memory.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SHARED_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\Shared_Memory_SV.h"\
+ ".\Shared_Memory_SV.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Shared_Memory.h"\
+ ".\SV_Shared_Memory.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2607,8 +15722,80 @@ SOURCE=.\Shared_Object.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SHARED_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SHARED_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2630,8 +15817,142 @@ SOURCE=.\Signal.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SIGNA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SIGNA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2653,8 +15974,88 @@ SOURCE=.\SOCK.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2676,8 +16077,134 @@ SOURCE=.\SOCK_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2699,8 +16226,96 @@ SOURCE=.\SOCK_CODgram.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2722,8 +16337,110 @@ SOURCE=.\SOCK_Connector.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2745,8 +16462,124 @@ SOURCE=.\SOCK_Dgram.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2768,8 +16601,100 @@ SOURCE=.\SOCK_Dgram_Bcast.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_DG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Bcast.h"\
+ ".\SOCK_Dgram_Bcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_DG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Bcast.h"\
+ ".\SOCK_Dgram_Bcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2791,8 +16716,100 @@ SOURCE=.\SOCK_Dgram_Mcast.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_DGR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Mcast.h"\
+ ".\SOCK_Dgram_Mcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_DGR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Mcast.h"\
+ ".\SOCK_Dgram_Mcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2814,8 +16831,96 @@ SOURCE=.\SOCK_IO.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2837,8 +16942,100 @@ SOURCE=.\SOCK_Stream.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2860,8 +17057,92 @@ SOURCE=.\SPIPE.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SPIPE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SPIPE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2883,8 +17164,126 @@ SOURCE=.\SPIPE_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SPIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Acceptor.h"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SPIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Acceptor.h"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2906,8 +17305,84 @@ SOURCE=.\SPIPE_Addr.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SPIPE_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SPIPE_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2929,8 +17404,100 @@ SOURCE=.\SPIPE_Connector.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SPIPE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SPIPE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2952,8 +17519,96 @@ SOURCE=.\SPIPE_Stream.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SPIPE_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SPIPE_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2975,8 +17630,174 @@ SOURCE=.\SString.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SSTRI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SSTRI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -2998,8 +17819,146 @@ SOURCE=.\Stats.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_STATS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_STATS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3021,8 +17980,246 @@ SOURCE=.\Strategies.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_STRAT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_STRAT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3044,8 +18241,80 @@ SOURCE=.\SV_Message.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SV_ME=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SV_ME=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3067,8 +18336,84 @@ SOURCE=.\SV_Message_Queue.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SV_MES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\SV_Message_Queue.h"\
+ ".\SV_Message_Queue.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SV_MES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\SV_Message_Queue.h"\
+ ".\SV_Message_Queue.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3090,8 +18435,84 @@ SOURCE=.\SV_Semaphore_Complex.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SV_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SV_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3113,8 +18534,80 @@ SOURCE=.\SV_Semaphore_Simple.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SV_SEM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SV_SEM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3136,8 +18629,80 @@ SOURCE=.\SV_Shared_Memory.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SV_SH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Shared_Memory.h"\
+ ".\SV_Shared_Memory.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SV_SH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Shared_Memory.h"\
+ ".\SV_Shared_Memory.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3159,8 +18724,188 @@ SOURCE=.\Svc_Conf_l.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SVC_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SVC_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3182,8 +18927,290 @@ SOURCE=.\Svc_Conf_y.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SVC_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SVC_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3205,8 +19232,282 @@ SOURCE=.\Svc_Handler.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SVC_H=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Svc_Handler.h"\
+ ".\Svc_Handler.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SVC_H=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Svc_Handler.h"\
+ ".\Svc_Handler.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3228,8 +19529,104 @@ SOURCE=.\Synch.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3251,8 +19648,80 @@ SOURCE=.\Synch_Options.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SYNCH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SYNCH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3274,8 +19743,144 @@ SOURCE=.\System_Time.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_SYSTE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\System_Time.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_SYSTE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\System_Time.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3297,8 +19902,268 @@ SOURCE=.\Task.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TASK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TASK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3320,8 +20185,80 @@ SOURCE=.\Thread.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_THREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_THREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3343,8 +20280,156 @@ SOURCE=.\Thread_Manager.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_THREAD=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_THREAD=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3366,8 +20451,80 @@ SOURCE=.\Time_Request_Reply.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TIME_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Request_Reply.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TIME_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Request_Reply.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3389,8 +20546,160 @@ SOURCE=.\Timeprobe.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TIMEP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TIMEP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3412,8 +20721,166 @@ SOURCE=.\Timer_Hash.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TIMER=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TIMER=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3435,8 +20902,168 @@ SOURCE=.\Timer_Heap.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TIMER_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TIMER_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3458,8 +21085,168 @@ SOURCE=.\Timer_List.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TIMER_L=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TIMER_L=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3481,8 +21268,168 @@ SOURCE=.\Timer_Queue.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TIMER_Q=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TIMER_Q=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3504,8 +21451,272 @@ SOURCE=.\Timer_Queue_Adapters.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TIMER_QU=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_Adapters.h"\
+ ".\Timer_Queue_Adapters.i"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TIMER_QU=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_Adapters.h"\
+ ".\Timer_Queue_Adapters.i"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3527,8 +21738,158 @@ SOURCE=.\Timer_Wheel.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TIMER_W=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TIMER_W=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3550,8 +21911,88 @@ SOURCE=.\TLI.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TLI_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TLI_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3573,8 +22014,102 @@ SOURCE=.\TLI_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TLI_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Acceptor.h"\
+ ".\TLI_Acceptor.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TLI_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Acceptor.h"\
+ ".\TLI_Acceptor.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3596,8 +22131,104 @@ SOURCE=.\TLI_Connector.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TLI_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Connector.h"\
+ ".\TLI_Connector.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TLI_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Connector.h"\
+ ".\TLI_Connector.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3619,8 +22250,96 @@ SOURCE=.\TLI_Stream.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TLI_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TLI_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3642,8 +22361,108 @@ SOURCE=.\Token.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TOKEN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TOKEN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3665,8 +22484,192 @@ SOURCE=.\Token_Collection.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TOKEN_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Collection.h"\
+ ".\Token_Collection.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TOKEN_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Collection.h"\
+ ".\Token_Collection.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3688,8 +22691,192 @@ SOURCE=.\Token_Invariants.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TOKEN_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TOKEN_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3711,8 +22898,192 @@ SOURCE=.\Token_Manager.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TOKEN_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TOKEN_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3734,8 +23105,194 @@ SOURCE=.\Token_Request_Reply.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TOKEN_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TOKEN_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3757,8 +23314,220 @@ SOURCE=.\TP_Reactor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TP_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TP_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3780,8 +23549,78 @@ SOURCE=.\Trace.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3803,8 +23642,102 @@ SOURCE=.\TTY_IO.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TTY_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_Connector.h"\
+ ".\DEV_Connector.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\TTY_IO.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TTY_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_Connector.h"\
+ ".\DEV_Connector.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\TTY_IO.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3826,8 +23759,80 @@ SOURCE=.\Typed_SV_Message.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TYPED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Typed_SV_Message.h"\
+ ".\Typed_SV_Message.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TYPED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Typed_SV_Message.h"\
+ ".\Typed_SV_Message.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3849,8 +23854,94 @@ SOURCE=.\Typed_SV_Message_Queue.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_TYPED_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\SV_Message_Queue.h"\
+ ".\SV_Message_Queue.i"\
+ ".\Trace.h"\
+ ".\Typed_SV_Message.cpp"\
+ ".\Typed_SV_Message.h"\
+ ".\Typed_SV_Message.i"\
+ ".\Typed_SV_Message_Queue.h"\
+ ".\Typed_SV_Message_Queue.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_TYPED_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\SV_Message_Queue.h"\
+ ".\SV_Message_Queue.i"\
+ ".\Trace.h"\
+ ".\Typed_SV_Message.cpp"\
+ ".\Typed_SV_Message.h"\
+ ".\Typed_SV_Message.i"\
+ ".\Typed_SV_Message_Queue.h"\
+ ".\Typed_SV_Message_Queue.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3872,8 +23963,84 @@ SOURCE=.\UNIX_Addr.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_UNIX_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_UNIX_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3895,8 +24062,308 @@ SOURCE=.\UPIPE_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_UPIPE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Acceptor.h"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Acceptor.h"\
+ ".\UPIPE_Acceptor.i"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_UPIPE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Acceptor.h"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Acceptor.h"\
+ ".\UPIPE_Acceptor.i"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3918,8 +24385,306 @@ SOURCE=.\UPIPE_Connector.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_UPIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Connector.h"\
+ ".\UPIPE_Connector.i"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_UPIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Connector.h"\
+ ".\UPIPE_Connector.i"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3941,8 +24706,298 @@ SOURCE=.\UPIPE_Stream.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_UPIPE_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_UPIPE_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -3964,8 +25019,252 @@ SOURCE=.\WFMO_Reactor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_WFMO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_WFMO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -4033,8 +25332,252 @@ SOURCE=.\XtReactor.cpp !ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+DEP_CPP_XTREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+ ".\XtReactor.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+DEP_CPP_XTREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+ ".\XtReactor.h"\
+
+
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
@@ -5734,11 +27277,6 @@ SOURCE=.\Pair_T.cpp # End Source File
# Begin Source File
-SOURCE=.\RB_Tree.cpp
-# PROP Exclude_From_Build 1
-# End Source File
-# Begin Source File
-
SOURCE=.\Select_Reactor_T.cpp
!IF "$(CFG)" == "ACE dynamic library - Win32 Debug"
diff --git a/ace/ace_lib.dsp b/ace/ace_lib.dsp index 7932b4fed75..40a8180e47b 100644 --- a/ace/ace_lib.dsp +++ b/ace/ace_lib.dsp @@ -31,7 +31,7 @@ CFG=ACE static library - Win32 Alpha Unicode Debug # Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
-# PROP Scc_LocalPath "Desktop"
+# PROP Scc_LocalPath ""
!IF "$(CFG)" == "ACE static library - Win32 Debug"
@@ -46,7 +46,7 @@ CFG=ACE static library - Win32 Alpha Unicode Debug # PROP Intermediate_Dir ".\LIB\Debug"
# PROP Target_Dir ""
CPP=cl.exe
-# ADD BASE CPP /nologo /G5 /MTd /W3 /Gm /GX /Zi /Od /Gy /I "..\STL" /I "..\\" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /YX /FD /c
+# ADD BASE CPP /nologo /G5 /MTd /W3 /Gm /GX /Zi /Od /Gy /I "..\STL" /I "..\\" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /D __ACE_INLINE__=0 /YX /FD /c
# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /Gy /I "..\\" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /FD /c
# SUBTRACT CPP /YX
RSC=rc.exe
@@ -72,8 +72,8 @@ LIB32=link.exe -lib # PROP Intermediate_Dir ".\LIB\Release"
# PROP Target_Dir ""
CPP=cl.exe
-# ADD BASE CPP /nologo /G5 /MT /W3 /GX /O1 /I "..\STL" /I "..\\" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /YX /FD /c
-# ADD CPP /nologo /MD /W3 /GX /O1 /I "..\\" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /FD /c
+# ADD BASE CPP /nologo /G5 /MT /W3 /GX /O1 /I "..\STL" /I "..\\" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /D __ACE_INLINE__=0 /YX /FD /c
+# ADD CPP /nologo /MD /W3 /GX /O1 /I "..\\" /D ACE_HAS_DLL=0 /D __ACE_INLINE__=0 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /FD /c
# SUBTRACT CPP /YX
RSC=rc.exe
# ADD BASE RSC /l 0x409
@@ -98,8 +98,8 @@ LIB32=link.exe -lib # PROP Intermediate_Dir ".\LIB\Unicode_Debug"
# PROP Target_Dir ""
CPP=cl.exe
-# ADD BASE CPP /nologo /G5 /MTd /W3 /Gm /GX /Zi /Od /Gy /I "..\STL" /I "..\\" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /YX /FD /c
-# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /Gy /I "..\\" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /D "_DEBUG" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /FD /c
+# ADD BASE CPP /nologo /G5 /MTd /W3 /Gm /GX /Zi /Od /Gy /I "..\STL" /I "..\\" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /D __ACE_INLINE__=0 /YX /FD /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /Gy /I "..\\" /D ACE_HAS_DLL=0 /D __ACE_INLINE__=0 /D "_DEBUG" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /FD /c
# SUBTRACT CPP /YX
RSC=rc.exe
# ADD BASE RSC /l 0x409
@@ -124,8 +124,8 @@ LIB32=link.exe -lib # PROP Intermediate_Dir ".\LIB\Unicode_Release"
# PROP Target_Dir ""
CPP=cl.exe
-# ADD BASE CPP /nologo /G5 /MT /W3 /GX /O1 /I "..\STL" /I "..\\" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /YX /FD /c
-# ADD CPP /nologo /MD /W3 /GX /O1 /I "..\\" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /D "NDEBUG" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /FD /c
+# ADD BASE CPP /nologo /G5 /MT /W3 /GX /O1 /I "..\STL" /I "..\\" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D ACE_HAS_DLL=0 /D __ACE_INLINE__=0 /YX /FD /c
+# ADD CPP /nologo /MD /W3 /GX /O1 /I "..\\" /D ACE_HAS_DLL=0 /D __ACE_INLINE__=0 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D "_WINDOWS" /FD /c
# SUBTRACT CPP /YX
RSC=rc.exe
# ADD BASE RSC /l 0x409
@@ -150,8 +150,10 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Lib\Debug"
# PROP Target_Dir ""
CPP=cl.exe
-# ADD BASE CPP /Gt0 nologo Gt0 W3 GX Zi Od Gy D "_DEBUG" D "_WINDOWS" FD I "..\\ /D " WIN32" c
-# ADD CPP /nologo /MTd /Gt0 /W3 /GX /Zi /Od /Gy /I "..\\" /D "_DEBUG" /D "_WINDOWS" /D "WIN32" /D ACE_HAS_DLL=0 /FD /c
+# ADD BASE CPP /nologo /Gt0 /W3 /GX /Zi /Od /Gy /D "_DEBUG" /D "_WINDOWS" /FD /I "..\\ /D " WIN32" /c
+# SUBTRACT BASE CPP /YX
+# ADD CPP /nologo /Gt0 /W3 /GX /Zi /Od /Gy /D "_DEBUG" /D "_WINDOWS" /FD /I /MTd "..\\ /D " WIN32" /c
+# SUBTRACT CPP /YX
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo /o".\ace.bsc"
# ADD BSC32 /nologo /o".\ace.bsc"
@@ -172,8 +174,10 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Lib\Release"
# PROP Target_Dir ""
CPP=cl.exe
-# ADD BASE CPP /Gt0 nologo Gt0 W3 GX O1 D "NDEBUG" D "_WINDOWS" FD I "..\\ /D " WIN32" c
-# ADD CPP /nologo /MT /Gt0 /W3 /GX /O1 /I "..\\" /D "NDEBUG" /D "_WINDOWS" /D "WIN32" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /FD /c
+# ADD BASE CPP /nologo /Gt0 /W3 /GX /O1 /D "NDEBUG" /D "_WINDOWS" /FD /I "..\\ /D " WIN32" /c
+# SUBTRACT BASE CPP /YX
+# ADD CPP /nologo /MT /Gt0 /W3 /GX /O1 /D "NDEBUG" /D "_WINDOWS" /FD /I "..\\ /D " WIN32" /c
+# SUBTRACT CPP /YX
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo /o".\ace.bsc"
# ADD BSC32 /nologo /o".\ace.bsc"
@@ -194,8 +198,10 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "LIB\Unicode_Debug"
# PROP Target_Dir ""
CPP=cl.exe
-# ADD BASE CPP /Gt0 nologo Gt0 W3 GX Zi Od Gy D "_DEBUG" D "_WINDOWS" D "UNICODE" FD I "..\\ /D " WIN32" c
-# ADD CPP /nologo /MTd /Gt0 /W3 /GX /Zi /Od /Gy /I "..\\" /D "_DEBUG" /D "_WINDOWS" /D "UNICODE" /D "WIN32" /D ACE_HAS_DLL=0 /FD /c
+# ADD BASE CPP /nologo /Gt0 /W3 /GX /Zi /Od /Gy /D "_DEBUG" /D "_WINDOWS" /D "UNICODE" /FD /I "..\\ /D " WIN32" /c
+# SUBTRACT BASE CPP /YX
+# ADD CPP /nologo /Gt0 /W3 /GX /Zi /Od /Gy /D "_DEBUG" /D "_WINDOWS" /D "UNICODE" /FD /I /MTd "..\\ /D " WIN32" /c
+# SUBTRACT CPP /YX
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo /o".\ace.bsc"
# ADD BSC32 /nologo /o".\ace.bsc"
@@ -216,8 +222,10 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "LIB\Unicode_Release"
# PROP Target_Dir ""
CPP=cl.exe
-# ADD BASE CPP /Gt0 nologo Gt0 W3 GX O1 D "NDEBUG" D "_WINDOWS" D "UNICODE" FD I "..\\ /D " WIN32" c
-# ADD CPP /nologo /MT /Gt0 /W3 /GX /O1 /I "..\\" /D "NDEBUG" /D "_WINDOWS" /D "UNICODE" /D "WIN32" /D ACE_HAS_DLL=0 /D "ACE_NO_INLINE" /FD /c
+# ADD BASE CPP /nologo /Gt0 /W3 /GX /O1 /D "NDEBUG" /D "_WINDOWS" /D "UNICODE" /FD /I "..\\ /D " WIN32" /c
+# SUBTRACT BASE CPP /YX
+# ADD CPP /nologo /MT /Gt0 /W3 /GX /O1 /D "NDEBUG" /D "_WINDOWS" /D "UNICODE" /FD /I "..\\ /D " WIN32" /c
+# SUBTRACT CPP /YX
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo /o".\ace.bsc"
# ADD BSC32 /nologo /o".\ace.bsc"
@@ -254,6 +262,51 @@ SOURCE=.\ACE.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_ACE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -277,6 +330,128 @@ SOURCE=.\Activation_Queue.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_ACTIV=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Activation_Queue.h"\
+ ".\Activation_Queue.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Method_Request.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -323,6 +498,42 @@ SOURCE=.\Addr.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_ADDR_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -346,6 +557,41 @@ SOURCE=.\Arg_Shifter.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_ARG_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Arg_Shifter.h"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -369,6 +615,75 @@ SOURCE=.\ARGV.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_ARGV_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -392,6 +707,157 @@ SOURCE=.\Asynch_IO.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_ASYNC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -438,28 +904,203 @@ SOURCE=.\Basic_Types.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Release"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\CDR_Stream.cpp
-
-!IF "$(CFG)" == "ACE static library - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_BASIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Template_Instantiations.cpp"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
@@ -492,6 +1133,73 @@ SOURCE=.\Containers.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -515,6 +1223,95 @@ SOURCE=.\CORBA_Handler.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_CORBA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\CORBA_Handler.h"\
+ ".\CORBA_Handler.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -538,6 +1335,42 @@ SOURCE=.\CORBA_Ref.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_CORBA_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\CORBA_Ref.h"\
+ ".\CORBA_Ref.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -561,6 +1394,42 @@ SOURCE=.\Date_Time.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DATE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Date_Time.h"\
+ ".\Date_Time.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -584,6 +1453,48 @@ SOURCE=.\DEV.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DEV_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -607,6 +1518,44 @@ SOURCE=.\DEV_Addr.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DEV_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -630,6 +1579,52 @@ SOURCE=.\DEV_Connector.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DEV_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_Connector.h"\
+ ".\DEV_Connector.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -653,6 +1648,50 @@ SOURCE=.\DEV_IO.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DEV_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -676,6 +1715,10 @@ SOURCE=.\Dirent.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DIREN=\
+ ".\Dirent.i"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -699,6 +1742,41 @@ SOURCE=.\DLL.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DLL_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DLL.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -722,6 +1800,57 @@ SOURCE=.\Dump.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DUMP_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dump.h"\
+ ".\Dump_T.cpp"\
+ ".\Dump_T.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -745,6 +1874,59 @@ SOURCE=.\Dynamic.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DYNAM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -768,6 +1950,94 @@ SOURCE=.\Dynamic_Service.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_DYNAMI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic_Service.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -791,6 +2061,89 @@ SOURCE=.\Event_Handler.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_EVENT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -814,6 +2167,44 @@ SOURCE=.\Event_Handler_T.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_EVENT_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Event_Handler_T.h"\
+ ".\Event_Handler_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -837,6 +2228,44 @@ SOURCE=.\FIFO.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FIFO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -860,6 +2289,46 @@ SOURCE=.\FIFO_Recv.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FIFO_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Recv.h"\
+ ".\FIFO_Recv.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -883,6 +2352,48 @@ SOURCE=.\FIFO_Recv_Msg.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FIFO_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Recv.h"\
+ ".\FIFO_Recv.i"\
+ ".\FIFO_Recv_Msg.h"\
+ ".\FIFO_Recv_Msg.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -906,6 +2417,46 @@ SOURCE=.\FIFO_Send.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FIFO_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Send.h"\
+ ".\FIFO_Send.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -929,6 +2480,48 @@ SOURCE=.\FIFO_Send_Msg.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FIFO_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FIFO.h"\
+ ".\FIFO.i"\
+ ".\FIFO_Send.h"\
+ ".\FIFO_Send.i"\
+ ".\FIFO_Send_Msg.h"\
+ ".\FIFO_Send_Msg.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -952,6 +2545,48 @@ SOURCE=.\FILE.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FILE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -975,6 +2610,44 @@ SOURCE=.\FILE_Addr.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FILE_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -998,6 +2671,52 @@ SOURCE=.\FILE_Connector.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FILE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\FILE_Connector.h"\
+ ".\FILE_Connector.i"\
+ ".\FILE_IO.h"\
+ ".\FILE_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1021,6 +2740,50 @@ SOURCE=.\FILE_IO.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FILE_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\FILE.h"\
+ ".\FILE.i"\
+ ".\FILE_Addr.h"\
+ ".\FILE_Addr.i"\
+ ".\FILE_IO.h"\
+ ".\FILE_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1044,28 +2807,99 @@ SOURCE=.\Filecache.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Release"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Functor.cpp
-
-!IF "$(CFG)" == "ACE static library - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FILEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
@@ -1090,6 +2924,55 @@ SOURCE=.\Future.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_FUTUR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Future.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1113,6 +2996,42 @@ SOURCE=.\Get_Opt.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_GET_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1136,6 +3055,42 @@ SOURCE=.\Handle_Set.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_HANDL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1159,6 +3114,99 @@ SOURCE=.\Hash_Map_Manager.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_HASH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1182,6 +3230,77 @@ SOURCE=.\High_Res_Timer.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_HIGH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1205,6 +3324,44 @@ SOURCE=.\INET_Addr.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_INET_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1251,6 +3408,42 @@ SOURCE=.\IO_SAP.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_IO_SA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1274,6 +3467,50 @@ SOURCE=.\IOStream.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_IOSTR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IOStream.h"\
+ ".\IOStream_T.cpp"\
+ ".\IOStream_T.h"\
+ ".\IOStream_T.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1297,6 +3534,42 @@ SOURCE=.\IPC_SAP.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_IPC_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1320,6 +3593,126 @@ SOURCE=.\Local_Name_Space.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LOCAL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1343,6 +3736,98 @@ SOURCE=.\Local_Tokens.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LOCAL_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1366,6 +3851,98 @@ SOURCE=.\Log_Msg.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LOG_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1389,6 +3966,40 @@ SOURCE=.\Log_Record.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LOG_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1412,6 +4023,48 @@ SOURCE=.\LSOCK.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LSOCK=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1435,6 +4088,63 @@ SOURCE=.\LSOCK_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Acceptor.h"\
+ ".\LSOCK_Acceptor.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1458,6 +4168,54 @@ SOURCE=.\LSOCK_CODgram.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_CODgram.h"\
+ ".\LSOCK_CODgram.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1481,6 +4239,63 @@ SOURCE=.\LSOCK_Connector.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Connector.h"\
+ ".\LSOCK_Connector.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1504,6 +4319,52 @@ SOURCE=.\LSOCK_Dgram.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Dgram.h"\
+ ".\LSOCK_Dgram.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1527,6 +4388,58 @@ SOURCE=.\LSOCK_Stream.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_LSOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\LSOCK.h"\
+ ".\LSOCK.i"\
+ ".\LSOCK_Stream.h"\
+ ".\LSOCK_Stream.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1550,6 +4463,73 @@ SOURCE=.\Malloc.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_MALLO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1596,6 +4576,42 @@ SOURCE=.\Mem_Map.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_MEM_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1619,6 +4635,73 @@ SOURCE=.\Memory_Pool.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_MEMOR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1642,6 +4725,87 @@ SOURCE=.\Message_Block.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_MESSA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1673,6 +4837,125 @@ SOURCE=.\Message_Queue.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_MESSAG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1696,28 +4979,40 @@ SOURCE=.\Method_Request.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Release"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Msg_WFMO_Reactor.cpp
-
-!IF "$(CFG)" == "ACE static library - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_METHO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Method_Request.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
@@ -1742,6 +5037,141 @@ SOURCE=.\Multiplexor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_MULTI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Multiplexor.h"\
+ ".\Multiplexor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1765,6 +5195,108 @@ SOURCE=.\Name_Proxy.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_NAME_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1788,6 +5320,42 @@ SOURCE=.\Name_Request_Reply.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_NAME_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Name_Request_Reply.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1811,6 +5379,109 @@ SOURCE=.\Name_Space.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_NAME_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1834,6 +5505,131 @@ SOURCE=.\Naming_Context.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_NAMIN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Registry.h"\
+ ".\Registry_Name_Space.h"\
+ ".\Remote_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1857,6 +5653,138 @@ SOURCE=.\NT_Service.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_NT_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\NT_Service.h"\
+ ".\NT_Service.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1880,6 +5808,121 @@ SOURCE=.\Object_Manager.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_OBJEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1903,6 +5946,75 @@ SOURCE=.\Obstack.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_OBSTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1926,6 +6038,140 @@ SOURCE=.\OS.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_OS_CP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1972,6 +6218,138 @@ SOURCE=.\Parse_Node.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_PARSE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -1995,6 +6373,59 @@ SOURCE=.\Pipe.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_PIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2018,6 +6449,112 @@ SOURCE=.\Priority_Reactor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_PRIOR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Priority_Reactor.h"\
+ ".\Priority_Reactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2041,6 +6578,153 @@ SOURCE=.\Proactor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_PROAC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2064,6 +6748,77 @@ SOURCE=.\Process.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_PROCE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2087,6 +6842,58 @@ SOURCE=.\Process_Manager.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_PROCES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Process_Manager.h"\
+ ".\Process_Manager.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2110,6 +6917,45 @@ SOURCE=.\Profile_Timer.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_PROFI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2133,6 +6979,148 @@ SOURCE=.\Reactor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_REACT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Msg_WFMO_Reactor.h"\
+ ".\Msg_WFMO_Reactor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2156,6 +7144,91 @@ SOURCE=.\Read_Buffer.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_READ_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Read_Buffer.h"\
+ ".\Read_Buffer.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2179,6 +7252,74 @@ SOURCE=.\Registry.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_REGIS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Registry.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2202,6 +7343,112 @@ SOURCE=.\Registry_Name_Space.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_REGIST=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Registry.h"\
+ ".\Registry_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2225,6 +7472,110 @@ SOURCE=.\Remote_Name_Space.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_REMOT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Name_Space.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2248,6 +7599,118 @@ SOURCE=.\Remote_Tokens.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_REMOTE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2271,6 +7734,42 @@ SOURCE=.\Sched_Params.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SCHED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2294,6 +7793,110 @@ SOURCE=.\Select_Reactor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SELEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2317,6 +7920,108 @@ SOURCE=.\Select_Reactor_Base.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SELECT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2340,6 +8045,179 @@ SOURCE=.\Service_Config.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SERVI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2363,6 +8241,144 @@ SOURCE=.\Service_Manager.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SERVIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2386,6 +8402,60 @@ SOURCE=.\Service_Object.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2409,6 +8479,62 @@ SOURCE=.\Service_Repository.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SERVICE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2432,6 +8558,140 @@ SOURCE=.\Service_Types.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SERVICE_T=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2455,6 +8715,41 @@ SOURCE=.\Shared_Memory.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SHARE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2478,6 +8773,45 @@ SOURCE=.\Shared_Memory_MM.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SHARED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\Shared_Memory_MM.h"\
+ ".\Shared_Memory_MM.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2501,6 +8835,45 @@ SOURCE=.\Shared_Memory_SV.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SHARED_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Memory.h"\
+ ".\Shared_Memory_SV.h"\
+ ".\Shared_Memory_SV.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Shared_Memory.h"\
+ ".\SV_Shared_Memory.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2524,6 +8897,42 @@ SOURCE=.\Shared_Object.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SHARED_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2547,6 +8956,73 @@ SOURCE=.\Signal.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SIGNA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2570,6 +9046,46 @@ SOURCE=.\SOCK.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2593,6 +9109,69 @@ SOURCE=.\SOCK_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2616,6 +9195,50 @@ SOURCE=.\SOCK_CODgram.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2639,6 +9262,57 @@ SOURCE=.\SOCK_Connector.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2662,6 +9336,64 @@ SOURCE=.\SOCK_Dgram.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2685,6 +9417,52 @@ SOURCE=.\SOCK_Dgram_Bcast.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_DG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Bcast.h"\
+ ".\SOCK_Dgram_Bcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2708,6 +9486,52 @@ SOURCE=.\SOCK_Dgram_Mcast.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_DGR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Mcast.h"\
+ ".\SOCK_Dgram_Mcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2731,6 +9555,50 @@ SOURCE=.\SOCK_IO.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2754,6 +9622,52 @@ SOURCE=.\SOCK_Stream.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2777,6 +9691,48 @@ SOURCE=.\SPIPE.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SPIPE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2800,6 +9756,65 @@ SOURCE=.\SPIPE_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SPIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Acceptor.h"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2823,6 +9838,44 @@ SOURCE=.\SPIPE_Addr.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SPIPE_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2846,6 +9899,52 @@ SOURCE=.\SPIPE_Connector.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SPIPE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2869,6 +9968,50 @@ SOURCE=.\SPIPE_Stream.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SPIPE_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2892,6 +10035,89 @@ SOURCE=.\SString.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SSTRI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2915,6 +10141,75 @@ SOURCE=.\Stats.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_STATS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2938,6 +10233,125 @@ SOURCE=.\Strategies.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_STRAT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2961,6 +10375,42 @@ SOURCE=.\SV_Message.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SV_ME=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -2984,6 +10434,44 @@ SOURCE=.\SV_Message_Queue.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SV_MES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\SV_Message_Queue.h"\
+ ".\SV_Message_Queue.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3007,6 +10495,44 @@ SOURCE=.\SV_Semaphore_Complex.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SV_SE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3030,6 +10556,42 @@ SOURCE=.\SV_Semaphore_Simple.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SV_SEM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3053,6 +10615,42 @@ SOURCE=.\SV_Shared_Memory.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SV_SH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Shared_Memory.h"\
+ ".\SV_Shared_Memory.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3076,6 +10674,96 @@ SOURCE=.\Svc_Conf_l.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SVC_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3099,6 +10787,147 @@ SOURCE=.\Svc_Conf_y.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SVC_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3122,6 +10951,143 @@ SOURCE=.\Svc_Handler.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SVC_H=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Svc_Handler.h"\
+ ".\Svc_Handler.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3145,6 +11111,54 @@ SOURCE=.\Synch.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3168,6 +11182,42 @@ SOURCE=.\Synch_Options.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SYNCH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3191,6 +11241,74 @@ SOURCE=.\System_Time.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_SYSTE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\System_Time.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3214,6 +11332,136 @@ SOURCE=.\Task.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TASK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3237,6 +11485,42 @@ SOURCE=.\Thread.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_THREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3260,6 +11544,80 @@ SOURCE=.\Thread_Manager.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_THREAD=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3283,6 +11641,42 @@ SOURCE=.\Time_Request_Reply.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TIME_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Request_Reply.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3306,6 +11700,82 @@ SOURCE=.\Timeprobe.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TIMEP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3329,6 +11799,85 @@ SOURCE=.\Timer_Hash.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TIMER=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3352,6 +11901,86 @@ SOURCE=.\Timer_Heap.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TIMER_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3375,6 +12004,86 @@ SOURCE=.\Timer_List.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TIMER_L=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3398,6 +12107,86 @@ SOURCE=.\Timer_Queue.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TIMER_Q=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3421,6 +12210,138 @@ SOURCE=.\Timer_Queue_Adapters.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TIMER_QU=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_Adapters.h"\
+ ".\Timer_Queue_Adapters.i"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3444,6 +12365,81 @@ SOURCE=.\Timer_Wheel.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TIMER_W=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3467,6 +12463,46 @@ SOURCE=.\TLI.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TLI_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3490,6 +12526,53 @@ SOURCE=.\TLI_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TLI_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Time_Value.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Acceptor.h"\
+ ".\TLI_Acceptor.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3513,6 +12596,54 @@ SOURCE=.\TLI_Connector.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TLI_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Connector.h"\
+ ".\TLI_Connector.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3536,6 +12667,50 @@ SOURCE=.\TLI_Stream.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TLI_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\TLI.h"\
+ ".\TLI.i"\
+ ".\TLI_Stream.h"\
+ ".\TLI_Stream.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3559,6 +12734,56 @@ SOURCE=.\Token.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TOKEN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3582,6 +12807,98 @@ SOURCE=.\Token_Collection.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TOKEN_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Collection.h"\
+ ".\Token_Collection.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3605,6 +12922,98 @@ SOURCE=.\Token_Invariants.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TOKEN_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3628,6 +13037,98 @@ SOURCE=.\Token_Manager.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TOKEN_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3651,6 +13152,99 @@ SOURCE=.\Token_Request_Reply.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TOKEN_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3674,6 +13268,112 @@ SOURCE=.\TP_Reactor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TP_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3697,6 +13397,41 @@ SOURCE=.\Trace.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3720,6 +13455,53 @@ SOURCE=.\TTY_IO.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TTY_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\DEV.h"\
+ ".\DEV.i"\
+ ".\DEV_Addr.h"\
+ ".\DEV_Addr.i"\
+ ".\DEV_Connector.h"\
+ ".\DEV_Connector.i"\
+ ".\DEV_IO.h"\
+ ".\DEV_IO.i"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\TTY_IO.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3743,6 +13525,42 @@ SOURCE=.\Typed_SV_Message.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TYPED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\Typed_SV_Message.h"\
+ ".\Typed_SV_Message.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3766,6 +13584,49 @@ SOURCE=.\Typed_SV_Message_Queue.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_TYPED_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Message.h"\
+ ".\SV_Message.i"\
+ ".\SV_Message_Queue.h"\
+ ".\SV_Message_Queue.i"\
+ ".\Trace.h"\
+ ".\Typed_SV_Message.cpp"\
+ ".\Typed_SV_Message.h"\
+ ".\Typed_SV_Message.i"\
+ ".\Typed_SV_Message_Queue.h"\
+ ".\Typed_SV_Message_Queue.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3789,6 +13650,44 @@ SOURCE=.\UNIX_Addr.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_UNIX_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Trace.h"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3812,6 +13711,156 @@ SOURCE=.\UPIPE_Acceptor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_UPIPE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Acceptor.h"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Acceptor.h"\
+ ".\UPIPE_Acceptor.i"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3835,6 +13884,155 @@ SOURCE=.\UPIPE_Connector.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_UPIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Connector.h"\
+ ".\UPIPE_Connector.i"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3858,6 +14056,151 @@ SOURCE=.\UPIPE_Stream.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_UPIPE_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3881,6 +14224,128 @@ SOURCE=.\WFMO_Reactor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_WFMO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -3950,6 +14415,128 @@ SOURCE=.\XtReactor.cpp !ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
+DEP_CPP_XTREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+ ".\XtReactor.h"\
+
+
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
@@ -5411,31 +15998,6 @@ SOURCE=.\Free_List.cpp # End Source File
# Begin Source File
-SOURCE=.\Functor_T.cpp
-
-!IF "$(CFG)" == "ACE static library - Win32 Debug"
-
-# PROP Exclude_From_Build 1
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Release"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
SOURCE=.\Hash_Map_Manager_T.cpp
!IF "$(CFG)" == "ACE static library - Win32 Debug"
@@ -5482,31 +16044,6 @@ SOURCE=.\Malloc_T.cpp # End Source File
# Begin Source File
-SOURCE=.\Managed_Object.cpp
-
-!IF "$(CFG)" == "ACE static library - Win32 Debug"
-
-# PROP Exclude_From_Build 1
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Unicode Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Release"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Debug"
-
-!ELSEIF "$(CFG)" == "ACE static library - Win32 Alpha Unicode Release"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
SOURCE=.\Map_Manager.cpp
# PROP BASE Exclude_From_Build 1
# PROP Exclude_From_Build 1
@@ -5572,11 +16109,6 @@ SOURCE=.\Pair_T.cpp # End Source File
# Begin Source File
-SOURCE=.\RB_Tree.cpp
-# PROP Exclude_From_Build 1
-# End Source File
-# Begin Source File
-
SOURCE=.\Select_Reactor_T.cpp
!IF "$(CFG)" == "ACE static library - Win32 Debug"
diff --git a/ace/config-aix-4.x.h b/ace/config-aix-4.x.h index dd18973d49b..77cf115a16a 100644 --- a/ace/config-aix-4.x.h +++ b/ace/config-aix-4.x.h @@ -91,7 +91,6 @@ #define ACE_HAS_H_ERRNO #define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT -#define ACE_HAS_NONCONST_SELECT_TIMEVAL #define ACE_HAS_IP_MULTICAST #define ACE_HAS_MSG #if (ACE_AIX_MINOR_VERS < 2) diff --git a/ace/config-chorus.h b/ace/config-chorus.h index ee92c196b12..85634eff1e5 100644 --- a/ace/config-chorus.h +++ b/ace/config-chorus.h @@ -21,13 +21,10 @@ #if defined (__GNUG__) # include "ace/config-g++-common.h" # undef ACE_HAS_ANSI_CASTS -# define ACE_LACKS_CHAR_STAR_RIGHT_SHIFTS #elif defined (ghs) -# define ACE_CONFIG_INCLUDE_GHS_COMMON -# include "ace/config-ghs-common.h" - # define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES # define ACE_HAS_TANDEM_SIGNALS +# define ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA # define ACE_HAS_TEMPLATE_SPECIALIZATION # define ACE_LACKS_ACE_IOSTREAM /* MVME lacks signed and unsigned char */ # define ACE_LACKS_FLOATING_POINT @@ -52,7 +49,6 @@ #define ACE_HAS_IP_MULTICAST #define ACE_HAS_LONG_MAP_FAILED #define ACE_HAS_MSG -#define ACE_HAS_NONCONST_SELECT_TIMEVAL #define ACE_HAS_POSIX_SEM #define ACE_HAS_POSIX_TIME #define ACE_HAS_SIGWAIT @@ -106,7 +102,6 @@ #define ACE_HAS_PTHREAD_PROCESS_ENUM #define ACE_LACKS_PTHREAD_CANCEL #define ACE_LACKS_PTHREAD_CLEANUP -#define ACE_LACKS_PTHREAD_SIGMASK #define ACE_LACKS_PTHREAD_THR_SIGSETMASK #if !defined (__ACE_INLINE__) diff --git a/ace/config-dgux-4.x-ghs.h b/ace/config-dgux-4.x-ghs.h index 740777122b3..2c40cd94033 100644 --- a/ace/config-dgux-4.x-ghs.h +++ b/ace/config-dgux-4.x-ghs.h @@ -9,9 +9,6 @@ #define ACE_DGUX -# define ACE_CONFIG_INCLUDE_GHS_COMMON -# include "ace/config-ghs-common.h" - // Static objects do not get initialized correctly, so this is needed. #define ACE_HAS_NONSTATIC_OBJECT_MANAGER @@ -57,6 +54,9 @@ // Platform supports IP multicast #define ACE_HAS_IP_MULTICAST +// Compiler/platform does not support the "long long" datatype. +#define ACE_LACKS_LONGLONG_T + // Green Hills doesn't give a preprocessor symbol for long double #define ACE_SIZEOF_LONG_DOUBLE 8 @@ -177,6 +177,13 @@ // Platform doesn't have timespec_t data type. #define ACE_LACKS_TIMESPEC_T +// Platform doesn't correctly support signed char +#define ACE_LACKS_SIGNED_CHAR + +// Platform doesn't have streambuf linebuffered() +#define ACE_LACKS_ACE_IOSTREAM +#define ACE_LACKS_LINEBUFFERED_STREAMBUF + // Use the poll() event demultiplexor rather than select(). //#define ACE_USE_POLL @@ -188,6 +195,7 @@ // Defines the page size of the system. #define ACE_PAGE_SIZE 4096 +#define ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA #define ACE_TEMPLATES_REQUIRE_SOURCE #define ACE_HAS_UCONTEXT_T diff --git a/ace/config-ghs-common.h b/ace/config-ghs-common.h deleted file mode 100644 index a9138e3fe97..00000000000 --- a/ace/config-ghs-common.h +++ /dev/null @@ -1,34 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// This configuration file is designed to be included by another, -// specific configuration file. It provides config information common -// to all Green Hills platforms. - -#ifndef ACE_GHS_COMMON_H -#define ACE_GHS_COMMON_H - -#if !defined (ACE_CONFIG_INCLUDE_GHS_COMMON) -# error ace/config-ghs-common.h: ACE configuration error! Do not #include this file directly! -#endif - -#if defined (ghs) - -# if defined (__STANDARD_CXX) - // Green Hills 1.8.9, but not 1.8.8. -# define ACE_HAS_STANDARD_CPP_LIBRARY 1 -# define ACE_LACKS_CHAR_RIGHT_SHIFTS -# define ACE_LACKS_UNBUFFERED_STREAMBUF -# endif /* __STANDARD_CXX */ - -# define ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA -# define ACE_HAS_WCHAR_TYPEDEFS_CHAR -# define ACE_LACKS_LINEBUFFERED_STREAMBUF -# define ACE_LACKS_LONGLONG_T -# define ACE_LACKS_SIGNED_CHAR - -#else /* ! ghs */ -# error ace/config-ghs-common.h can only be used with Green Hills compilers! -#endif /* ! ghs */ - -#endif /* ACE_GHS_COMMON_H */ diff --git a/ace/config-hpux-10.x-hpc++.h b/ace/config-hpux-10.x-hpc++.h index 11c525d72bd..8653b39c4d0 100644 --- a/ace/config-hpux-10.x-hpc++.h +++ b/ace/config-hpux-10.x-hpc++.h @@ -81,9 +81,6 @@ // Compiler supports template specialization. # define ACE_HAS_TEMPLATE_SPECIALIZATION -// Compiler's runtime new throws bad_alloc on out-of-memory condition. -# define ACE_NEW_THROWS_EXCEPTIONS - #endif /* __cplusplus < 199707L */ // Compiler supports the ssize_t typedef. diff --git a/ace/config-hpux-10.x.h b/ace/config-hpux-10.x.h index 27a575b60e9..9d1714a895f 100644 --- a/ace/config-hpux-10.x.h +++ b/ace/config-hpux-10.x.h @@ -185,10 +185,6 @@ extern int h_errno; /* This isn't declared in a header file on HP-UX */ # if !defined (ACE_MT_SAFE) #define ACE_MT_SAFE 1 # endif - -// The threads version of select loses const-ness of the timeval arg -# define ACE_HAS_NONCONST_SELECT_TIMEVAL - # define ACE_HAS_PTHREADS # define ACE_HAS_PTHREADS_DRAFT4 // POSIX real-time semaphore definitions are in the header files, and it diff --git a/ace/config-hpux11.h b/ace/config-hpux11.h index 8f21f48bb87..fe6edf24a52 100644 --- a/ace/config-hpux11.h +++ b/ace/config-hpux11.h @@ -88,9 +88,6 @@ // Platform supports recvmsg and sendmsg. #define ACE_HAS_MSG -// Platform's select() has non-const timeval argument -#define ACE_HAS_NONCONST_SELECT_TIMEVAL - // Compiler/platform supports poll(). #define ACE_HAS_POLL @@ -233,6 +230,7 @@ # define ACE_HAS_PTHREADS # define ACE_HAS_PTHREADS_STD +# define ACE_HAS_PTHREAD_SIGMASK # define ACE_HAS_THREAD_SPECIFIC_STORAGE #endif /* ACE_HAS_THREADS */ diff --git a/ace/config-irix6.x-common.h b/ace/config-irix6.x-common.h index 0fb6b80f4b0..4cf818151da 100644 --- a/ace/config-irix6.x-common.h +++ b/ace/config-irix6.x-common.h @@ -142,8 +142,6 @@ # define ACE_TIMER_SKEW 10 * 1000 #endif /* ACE_TIMER_SKEW */ -#define ACE_HAS_NONCONST_SELECT_TIMEVAL - // Turns off the tracing feature. #if !defined (ACE_NTRACE) # define ACE_NTRACE 1 diff --git a/ace/config-irix6.x-g++.h b/ace/config-irix6.x-g++.h index 52415880e25..1eb008fca6e 100644 --- a/ace/config-irix6.x-g++.h +++ b/ace/config-irix6.x-g++.h @@ -20,6 +20,7 @@ // IRIX 6.2 supports a variant of POSIX Pthreads, supposedly POSIX 1c #define ACE_HAS_PTHREADS #define ACE_HAS_PTHREADS_STD +#define ACE_HAS_PTHREAD_SIGMASK #include "ace/config-irix6.x-common.h" @@ -30,6 +31,9 @@ #define PTHREAD_MIN_PRIORITY PX_PRIO_MIN #define PTHREAD_MAX_PRIORITY PX_PRIO_MAX +// Platforms has pthread_thr_sigsetmask +#define ACE_HAS_PTHREAD_SIGMASK + // Compiler/platform has thread-specific storage #define ACE_HAS_THREAD_SPECIFIC_STORAGE diff --git a/ace/config-irix6.x-kcc.h b/ace/config-irix6.x-kcc.h index a622e6a2046..2dfbfcae753 100644 --- a/ace/config-irix6.x-kcc.h +++ b/ace/config-irix6.x-kcc.h @@ -20,6 +20,7 @@ // IRIX 6.2 supports a variant of POSIX Pthreads, supposedly POSIX 1c #define ACE_HAS_PTHREADS #define ACE_HAS_PTHREADS_STD +#define ACE_HAS_PTHREAD_SIGMASK #include "ace/config-irix6.x-common.h" @@ -30,6 +31,9 @@ #define PTHREAD_MIN_PRIORITY PX_PRIO_MIN #define PTHREAD_MAX_PRIORITY PX_PRIO_MAX +// Platforms has pthread_thr_sigsetmask +#define ACE_HAS_PTHREAD_SIGMASK + // Compiler/platform has thread-specific storage #define ACE_HAS_THREAD_SPECIFIC_STORAGE diff --git a/ace/config-irix6.x-sgic++.h b/ace/config-irix6.x-sgic++.h index 5b3306a657a..e214a68e775 100644 --- a/ace/config-irix6.x-sgic++.h +++ b/ace/config-irix6.x-sgic++.h @@ -13,6 +13,7 @@ // Add threading support #define ACE_HAS_IRIX62_THREADS +#define ACE_HAS_PTHREAD_SIGMASK #define ACE_HAS_UALARM // Needed for the threading stuff? @@ -32,6 +33,9 @@ #define ACE_HAS_PTHREADS #define ACE_HAS_PTHREADS_STD +// Platforms has pthread_thr_sigsetmask +#define ACE_HAS_PTHREAD_SIGMASK + // Compiler/platform has thread-specific storage #define ACE_HAS_THREAD_SPECIFIC_STORAGE diff --git a/ace/config-kcc-common.h b/ace/config-kcc-common.h index 0f864be27f5..7c4c41f1fcb 100644 --- a/ace/config-kcc-common.h +++ b/ace/config-kcc-common.h @@ -37,10 +37,6 @@ # define ACE_HAS_PENTIUM #endif /* i386 */ -// ****** Need to move this somewhere else -// #define TAO_YY_BREAK - -#define ACE_SIZEOF_LONG_LONG 8 #define ACE_TEMPLATES_REQUIRE_SOURCE #define ACE_HAS_TEMPLATE_SPECIALIZATION @@ -61,6 +57,6 @@ #define ACE_HAS_EXCEPTIONS 1 #define ACE_HAS_CPLUSPLUS_HEADERS -#define ACE_HAS_NONSTATIC_OBJECT_MANAGER 1 +//#define ACE_HAS_NONSTATIC_OBJECT_MANAGER 1 #endif /* ACE_KCC_COMMON_H */ diff --git a/ace/config-linux-lxpthreads.h b/ace/config-linux-lxpthreads.h index a3a491587c5..5995b9c8dd8 100644 --- a/ace/config-linux-lxpthreads.h +++ b/ace/config-linux-lxpthreads.h @@ -40,12 +40,14 @@ // ... and the final standard even! #define ACE_HAS_PTHREADS_STD +#define ACE_HAS_PTHREAD_SIGMASK // JCEJ 12/19/96 + #if !defined (ACE_MT_SAFE) #define ACE_MT_SAFE 1 // JCEJ 12/22/96 #1 #endif #define ACE_HAS_THREAD_SPECIFIC_STORAGE // jcej 12/22/96 #2 #define PTHREAD_MIN_PRIORITY 0 // JCEJ 12/22/96 #3 -#if !defined(ACE_LACKS_PTHREAD_SIGMASK) +#if defined(ACE_HAS_PTHREAD_SIGMASK) # define PTHREAD_MAX_PRIORITY 99 // CJC 02/11/97 #else # define PTHREAD_MAX_PRIORITY 32 // JCEJ 12/22/96 #3 diff --git a/ace/config-lynxos.h b/ace/config-lynxos.h index e4f49fae775..e60b2125bec 100644 --- a/ace/config-lynxos.h +++ b/ace/config-lynxos.h @@ -82,7 +82,6 @@ // Platform does not have const anything #define ACE_LACKS_CONST_TIMESPEC_PTR #define ACE_HAS_NONCONST_GETBY -#define ACE_HAS_NONCONST_SELECT_TIMEVAL #define ACE_HAS_BROKEN_WRITEV #define ACE_HAS_BROKEN_READV #define ACE_HAS_BROKEN_SETRLIMIT @@ -201,12 +200,6 @@ extern "C" // Aio works on lynx #define ACE_HAS_AIO_CALLS -// AIOCB Proactor works on Lynx. But it is not -// multi-threaded. -// Lynx OS 3.0.0 lacks POSIX call <pthread_sigmask>. So,we cannot use -// SIG Proactor also, with multiple threads. So, let us use the AIOCB -// Proactor. Once <pthreadd_sigmask> is available on Lynx, we can turn -// on SIG Proactor for this platform. -// #define ACE_POSIX_SIG_PROACTOR -#define ACE_POSIX_AIOCB_PROACTOR +// AIOCB Proactor doesnt work on lynx yet. +#define ACE_POSIX_SIG_PROACTOR #endif /* ACE_CONFIG_H */ diff --git a/ace/config-minimal.h b/ace/config-minimal.h index d3e262040fd..6d132b08f62 100644 --- a/ace/config-minimal.h +++ b/ace/config-minimal.h @@ -13,6 +13,10 @@ #define ACE_MAIN_OBJECT_MANAGER \ ACE_OS_Object_Manager ace_os_object_manager; +#if defined (ACE_HAS_TSS_EMULATION) +# undef ACE_HAS_TSS_EMULATION +#endif /* ACE_HAS_TSS_EMULATION */ + #if !defined(ACE_USE_THREAD_MANAGER_ADAPTER) // To prevent use of ACE_Thread_Exit functions in // ACE_Thread_Adapter::invoke (). diff --git a/ace/config-osf1-4.0.h b/ace/config-osf1-4.0.h index d22c688e02f..056309dc978 100644 --- a/ace/config-osf1-4.0.h +++ b/ace/config-osf1-4.0.h @@ -48,10 +48,7 @@ # define DEC_CXX # if (__DECCXX_VER >= 60090010) // DEC CXX 6.0 supports exceptions, etc., by default. Exceptions - // are enabled by platform_osf1_4.0.GNU/wrapper_macros.GNU. -# if defined (ACE_HAS_EXCEPTIONS) -# define ACE_NEW_THROWS_EXCEPTIONS -# endif /* ACE_HAS_EXCEPTIONS */ + // are enabled by platform_osf1_4.0.GNU. # define ACE_HAS_ANSI_CASTS # if !defined (__RTTI) # define ACE_LACKS_RTTI @@ -85,12 +82,11 @@ # define ACE_HAS_BROKEN_R_ROUTINES # define ACE_HAS_PTHREADS # define ACE_HAS_PTHREADS_STD +# define ACE_HAS_PTHREAD_SIGMASK # define ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS # define ACE_LACKS_T_ERRNO # define ACE_POLL_IS_BROKEN -# if !defined (DIGITAL_UNIX) -# define DIGITAL_UNIX -# endif /* ! DIGITAL_UNIX */ +# define DIGITAL_UNIX // DJT removed this due to some minor issues related to the // definitions of timestruc_t and tid_t in procfs.h not sure what // functionality is lost? Platform supports <sys/procfs.h> @@ -138,7 +134,6 @@ #define ACE_HAS_IP_MULTICAST #define ACE_HAS_LONG_MAP_FAILED #define ACE_HAS_MSG -#define ACE_HAS_NONCONST_SELECT_TIMEVAL #define ACE_HAS_OSF1_GETTIMEOFDAY #define ACE_HAS_OSF_TIMOD_H #define ACE_HAS_POLL diff --git a/ace/config-osf1.h b/ace/config-osf1.h deleted file mode 100644 index 1e6541392c7..00000000000 --- a/ace/config-osf1.h +++ /dev/null @@ -1,21 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// The following configuration file is designed to work for the -// Digital UNIX V4.0a and later platforms. It relies on -// config-osf1-4.0.h, and adds deltas for newer platforms. - -#ifndef ACE_CONFIG_OSF1_H -#define ACE_CONFIG_OSF1_H - -#if defined (DIGITAL_UNIX) -# include "ace/config-osf1-4.0.h" -# if DIGITAL_UNIX >= 5 -# define _LIBC_POLLUTION_H_ -# define ACE_LACKS_SYSTIME_H -# endif /* DIGITAL_UNIX >= 5 */ -#else /* ! DIGITAL_UNIX */ -# include "ace/config-osf1-3.2.h" -#endif /* ! DIGITAL_UNIX */ - -#endif /* ACE_CONFIG_OSF1_H */ diff --git a/ace/config-sco-5.0.0-mit-pthread.h b/ace/config-sco-5.0.0-mit-pthread.h index a658cec275f..9b5cbe62b10 100644 --- a/ace/config-sco-5.0.0-mit-pthread.h +++ b/ace/config-sco-5.0.0-mit-pthread.h @@ -143,6 +143,7 @@ #define ACE_HAS_PTHREADS #define ACE_HAS_PTHREADS_STD #define ACE_LACKS_PTHREAD_CANCEL +#define ACE_HAS_PTHREAD_SIGMASK #define ACE_HAS_SIGWAIT //#define ACE_HAS_PTHREAD_YIELD_VOID_PTR //#define ACE_HAS_PTHREAD_ATTR_INIT diff --git a/ace/config-sunos5.5.h b/ace/config-sunos5.5.h index 09ce6c9c72b..b25a5365bdc 100644 --- a/ace/config-sunos5.5.h +++ b/ace/config-sunos5.5.h @@ -30,10 +30,8 @@ # define ACE_HAS_STANDARD_CPP_LIBRARY 1 # define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 # define ACE_USES_OLD_IOSTREAMS 1 -# define ACE_HAS_THR_C_DEST # endif /* __SUNPRO_CC >= 0x500 */ # endif /* __SUNPRO_CC >= 0x420 */ - # define ACE_CAST_CONST const # define ACE_HAS_HI_RES_TIMER # define ACE_HAS_SIG_C_FUNC /* Sun CC 5.0 needs this, 4.2 doesn't mind. */ @@ -85,6 +83,15 @@ # endif /* !ACE_MT_SAFE */ #elif defined (ghs) +# if defined (__STANDARD_CXX) + // Green Hills 1.8.9, but not 1.8.8. +# define ACE_HAS_STANDARD_CPP_LIBRARY 1 +# endif /* __STANDARD_CXX */ + +# define ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA +# define ACE_LACKS_LINEBUFFERED_STREAMBUF +# define ACE_LACKS_LONGLONG_T /* It really doesn't have it. Boo. */ +# define ACE_LACKS_SIGNED_CHAR # if !defined (ACE_MT_SAFE) || ACE_MT_SAFE != 0 // ACE_MT_SAFE is #defined below, for all compilers. @@ -96,21 +103,10 @@ # endif /* _REENTRANT */ # endif /* !ACE_MT_SAFE */ -# define ACE_CONFIG_INCLUDE_GHS_COMMON -# include "ace/config-ghs-common.h" - // To avoid warning about inconsistent declaration between Sun's // stdlib.h and Green Hills' ctype.h. # include <stdlib.h> - // IOStream_Test never halts with Green Hills 1.8.9. -# define ACE_LACKS_ACE_IOSTREAM - -#elif defined (__KCC) /* KAI compiler */ - -# define ACE_HAS_ANSI_CASTS -# include "ace/config-kcc-common.h" - #else /* ! __SUNPRO_CC && ! __GNUG__ && ! ghs */ # error unsupported compiler in ace/config-sunos5.5.h #endif /* ! __SUNPRO_CC && ! __GNUG__ && ! ghs */ @@ -135,9 +131,6 @@ // Optimize ACE_Handle_Set for select(). #define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT -// select()'s timeval arg is not declared as const and may be modified -#define ACE_HAS_NONCONST_SELECT_TIMEVAL - // Platform supports pread() and pwrite() #define ACE_HAS_P_READ_WRITE #define ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS @@ -234,9 +227,7 @@ // Compiler/platform supports sys_siglist array. #define ACE_HAS_SYS_SIGLIST -#if defined (_REENTRANT) || \ - (defined (_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L)) || \ - defined (_POSIX_PTHREAD_SEMANTICS) +#if defined (_REENTRANT) // Compile using multi-thread libraries. # define ACE_HAS_THREADS @@ -249,9 +240,7 @@ // -D_POSIX_PTHREAD_SEMANTICS to your CFLAGS. Or, #define it right // here. See the Intro (3) man page for information on // -D_POSIX_PTHREAD_SEMANTICS. -# if defined (_POSIX_PTHREAD_SEMANTICS) -# define ACE_LACKS_RWLOCK_T -# else +# if !defined (_POSIX_PTHREAD_SEMANTICS) # define ACE_HAS_STHREADS # endif /* ! _POSIX_PTHREAD_SEMANTICS */ @@ -268,10 +257,10 @@ # define ACE_HAS_REENTRANT_FUNCTIONS # define ACE_NEEDS_LWP_PRIO_SET +# define ACE_HAS_PTHREAD_SIGMASK # define ACE_HAS_THR_YIELD # define ACE_LACKS_PTHREAD_YIELD -#endif /* _REENTRANT || _POSIX_C_SOURCE >= 199506L || \ - _POSIX_PTHREAD_SEMANTICS */ +#endif /* _REENTRANT */ # define ACE_HAS_PRIOCNTL @@ -300,7 +289,6 @@ #define ACE_HAS_GPERF #define ACE_HAS_DIRENT -#define ACE_HAS_MEMCHR #if defined (__SUNPRO_CC) # define ACE_CC_NAME "SunPro C++" diff --git a/ace/config-sunos5.6-sunc++-4.x.h b/ace/config-sunos5.6-sunc++-4.x.h deleted file mode 100644 index 7f63838fb78..00000000000 --- a/ace/config-sunos5.6-sunc++-4.x.h +++ /dev/null @@ -1,23 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// The following configuration file is designed to work for SunOS 5.6 -// platforms using the SunC++ 4.x compiler. - -#if !defined (ACE_CONFIG_H) - -// ACE_CONFIG_H is defined by the following #included header. - -// At this point, there's no difference between our SunOS 5.5 and 5.6 -// configurations. -#if defined (__SUNPRO_CC) -# include "ace/config-sunos5.5-sunc++-4.x.h" -#elif defined (__GNUG__) -# include "ace/config-sunos5.5-g++.h" -#else /* ! __SUNPRO_CC__ && ! __GNUG__ */ -# error unsupported compiler in ace/config-sunos5.6.h -#endif /* ! __SUNPRO_CC__ && ! __GNUG__ */ - -// Additional SunOS 5.6 capabilities . . . -#define ACE_HAS_AIO_CALLS -#endif /* ACE_CONFIG_H */ diff --git a/ace/config-sunos5.6.h b/ace/config-sunos5.6.h index aa9875f22bf..b0bf1c07223 100644 --- a/ace/config-sunos5.6.h +++ b/ace/config-sunos5.6.h @@ -24,10 +24,4 @@ // SunOS 5.6 has AIO calls. #define ACE_HAS_AIO_CALLS -// Sunos 5.6's aio_* with RT signals is broken. -#define ACE_POSIX_AIOCB_PROACTOR - -// SunOS 5.6 has a buggy select -#define ACE_HAS_LIMITED_SELECT - #endif /* ACE_CONFIG_H */ diff --git a/ace/config-sunos5.7.h b/ace/config-sunos5.7.h index a0061773c53..cfd3d70cc70 100644 --- a/ace/config-sunos5.7.h +++ b/ace/config-sunos5.7.h @@ -28,29 +28,7 @@ # endif /* __GNUC__ <= 2 && __GNUC_MINOR__ < 8 */ #endif /* __GNUG__ */ -#if defined (__KCC) -typedef unsigned long long uint64_t; -#endif - // Solaris 5.7 supports SCHED_FIFO and SCHED_RR, as well as SCHED_OTHER. #undef ACE_HAS_ONLY_SCHED_OTHER -// Solaris 2.7 can support Real-Time Signals and POSIX4 AIO operations -// are supported. - -#if !defined (ACE_HAS_AIO_CALLS) -#define ACE_HAS_AIO_CALLS -#endif /* !ACE_HAS_AIO_CALLS */ - -#if defined (ACE_POSIX_AIOCB_PROACTOR) -#undef ACE_POSIX_AIOCB_PROACTOR -#endif /* ACE_POSIX_AIOCB_PROACTOR */ - -// This is anyway default. -#define ACE_POSIX_SIG_PROACTOR - -#ifdef ACE_HAS_LIMITED_SELECT -#undef ACE_HAS_LIMITED_SELECT -#endif /* ACE_HAS_LIMITED_SELECT */ - #endif /* ACE_CONFIG_H */ diff --git a/ace/config-tru64.h b/ace/config-tru64.h deleted file mode 100644 index 1e6541392c7..00000000000 --- a/ace/config-tru64.h +++ /dev/null @@ -1,21 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// The following configuration file is designed to work for the -// Digital UNIX V4.0a and later platforms. It relies on -// config-osf1-4.0.h, and adds deltas for newer platforms. - -#ifndef ACE_CONFIG_OSF1_H -#define ACE_CONFIG_OSF1_H - -#if defined (DIGITAL_UNIX) -# include "ace/config-osf1-4.0.h" -# if DIGITAL_UNIX >= 5 -# define _LIBC_POLLUTION_H_ -# define ACE_LACKS_SYSTIME_H -# endif /* DIGITAL_UNIX >= 5 */ -#else /* ! DIGITAL_UNIX */ -# include "ace/config-osf1-3.2.h" -#endif /* ! DIGITAL_UNIX */ - -#endif /* ACE_CONFIG_OSF1_H */ diff --git a/ace/config-vxworks5.x.h b/ace/config-vxworks5.x.h index 641585f1470..e73247fdaa5 100644 --- a/ace/config-vxworks5.x.h +++ b/ace/config-vxworks5.x.h @@ -41,10 +41,6 @@ // compile, though, because of the period! So, let g++/VxWorks users // include iostream.h only where they need it. # define ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION - -# define ACE_LACKS_LINEBUFFERED_STREAMBUF -# define ACE_LACKS_SIGNED_CHAR - #elif defined (ghs) // Processor type, if necessary. Green Hills defines "ppc". # if defined (ppc) @@ -60,11 +56,15 @@ # define ACE_HAS_PENTIUM # endif /* i386 */ -# define ACE_CONFIG_INCLUDE_GHS_COMMON -# include "ace/config-ghs-common.h" +# if defined (__STANDARD_CXX) + // Green Hills 1.8.9, but not 1.8.8. +# define ACE_HAS_STANDARD_CPP_LIBRARY 1 +# endif /* __STANDARD_CXX */ +# define ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA +# define ACE_HAS_WCHAR_TYPEDEFS_CHAR +# define ACE_LACKS_LONGLONG_T # define ACE_LACKS_UNISTD_H - #else /* ! __GNUG__ && ! ghs */ # error unsupported compiler on VxWorks #endif /* ! __GNUG__ && ! ghs */ @@ -83,7 +83,6 @@ #define ACE_HAS_DLL 0 #define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT #define ACE_HAS_MSG -#define ACE_HAS_NONCONST_SELECT_TIMEVAL #define ACE_HAS_NONSTATIC_OBJECT_MANAGER #define ACE_HAS_POSIX_NONBLOCK #define ACE_HAS_POSIX_TIME @@ -104,6 +103,7 @@ #define ACE_LACKS_GETHOSTENT #define ACE_LACKS_GETSERVBYNAME #define ACE_LACKS_KEY_T +#define ACE_LACKS_LINEBUFFERED_STREAMBUF #define ACE_LACKS_LSTAT #define ACE_LACKS_MADVISE #define ACE_LACKS_MALLOC_H @@ -123,6 +123,7 @@ #define ACE_LACKS_SEEKDIR #define ACE_LACKS_SEMBUF_T #define ACE_LACKS_SIGINFO_H +#define ACE_LACKS_SIGNED_CHAR #define ACE_LACKS_SI_ADDR #define ACE_LACKS_SOCKETPAIR #define ACE_LACKS_STRCASECMP @@ -143,7 +144,6 @@ #define ACE_LACKS_SYSTIME_H #define ACE_PAGE_SIZE 4096 #define ACE_THR_PRI_FIFO_DEF 101 -#define ACE_THR_PRI_OTHER_DEF ACE_THR_PRI_FIFO_DEF #if !defined (ACE_NTRACE) # define ACE_NTRACE 1 diff --git a/ace/config-win32-common.h b/ace/config-win32-common.h index ddfc4a3b77b..1519f7f50ab 100644 --- a/ace/config-win32-common.h +++ b/ace/config-win32-common.h @@ -284,6 +284,11 @@ typedef unsigned __int64 ACE_UINT64; #endif /* _UNICODE */ #endif /* UNICODE */ +// If __ACE_INLINE__ is defined to be 0, we will undefine it +#if defined (__ACE_INLINE__) && (__ACE_INLINE__ == 0) + #undef __ACE_INLINE__ +#endif /* __ACE_INLINE__ */ + #ifdef _DEBUG #if !defined (ACE_HAS_WINCE) #include /**/ <crtdbg.h> @@ -292,15 +297,10 @@ typedef unsigned __int64 ACE_UINT64; // If we are making a release, and the user has not specified // inline directives, we will default to inline #if ! defined (__ACE_INLINE__) - #define __ACE_INLINE__ 1 + #define __ACE_INLINE__ #endif /* __ACE_INLINE__ */ #endif -// If __ACE_INLINE__ is defined to be 0, we will undefine it -#if defined (__ACE_INLINE__) && (__ACE_INLINE__ == 0) - #undef __ACE_INLINE__ -#endif /* __ACE_INLINE__ */ - // We are build ACE and want to use MFC (multithreaded) #if defined(ACE_HAS_MFC) && (ACE_HAS_MFC != 0) && defined (_MT) #if (ACE_HAS_DLL != 0) && defined(ACE_BUILD_DLL) && !defined (_WINDLL) @@ -333,8 +333,8 @@ typedef unsigned __int64 ACE_UINT64; // Windows.h will be included via afxwin.h->afx.h->afx_ver_.h->afxv_w32.h // #define _INC_WINDOWS // Prevent winsock.h from including windows.h #elif defined (ACE_HAS_WINCE) - #include /**/ <windows.h> - #include /**/ <wce.h> + #include <windows.h> + #include <wce.h> #endif #if !defined (_INC_WINDOWS) /* Already include windows.h ? */ diff --git a/ace/gethrtime.cpp b/ace/gethrtime.cpp index 518d5172992..8d290724a8f 100644 --- a/ace/gethrtime.cpp +++ b/ace/gethrtime.cpp @@ -29,11 +29,10 @@ ACE_gethrtime (void) // "now". The A constraint signifies a 64-bit int. #if defined (__GNUG__) asm volatile ("rdtsc" : "=A" (now) : : "memory"); -// #elif defined (ghs) -// The following doesn't work. For now, this file must be compile with g++. -// asm ("rdtsc"); -// asm ("movl %edx,-16(%ebp)"); -// asm ("movl %eax,-12(%ebp)"); +#elif defined (ghs) + asm ("rdtsc"); + asm ("movl -16(%ebp),%edx"); + asm ("movl -12(%ebp),%eax"); #else # error unsupported compiler #endif |