diff options
author | click <none@none> | 2010-11-04 05:30:29 +0100 |
---|---|---|
committer | click <none@none> | 2010-11-04 05:30:29 +0100 |
commit | 9b16ee203f3f8e6e21c4864bd3308bf58c7b6800 (patch) | |
tree | 14950af01860fc520bbbd320c7ad81ef0281cbf3 /dep/acelite/ace | |
parent | 2604250c3c4efd93e9977f2eb72d6398a7a7bcb2 (diff) |
Dep/ACE: Upgrade ACE -library to 5.8.3
--HG--
branch : trunk
Diffstat (limited to 'dep/acelite/ace')
574 files changed, 2851 insertions, 14302 deletions
diff --git a/dep/acelite/ace/ACE.cpp b/dep/acelite/ace/ACE.cpp index 3dd5e2e6f9b..433b5e3e788 100644 --- a/dep/acelite/ace/ACE.cpp +++ b/dep/acelite/ace/ACE.cpp @@ -1,4 +1,4 @@ -// $Id: ACE.cpp 91066 2010-07-12 11:05:04Z johnnyw $ +// $Id: ACE.cpp 92298 2010-10-21 11:15:17Z johnnyw $ #include "ace/ACE.h" @@ -33,18 +33,12 @@ extern "C" int maxFiles; #include "ace/ACE.inl" #endif /* __ACE_INLINE__ */ -#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) +#if defined (ACE_HAS_POLL) # include "ace/OS_NS_poll.h" -#endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ - - -ACE_RCSID (ace, - ACE, - "$Id: ACE.cpp 91066 2010-07-12 11:05:04Z johnnyw $") - +#endif /* ACE_HAS_POLL */ // Open versioned namespace, if enabled by the user. - ACE_BEGIN_VERSIONED_NAMESPACE_DECL +ACE_BEGIN_VERSIONED_NAMESPACE_DECL namespace ACE { @@ -94,10 +88,6 @@ ACE::out_of_handles (int error) #elif defined (__OpenBSD__) // OpenBSD appears to return EBADF. error == EBADF || -#elif defined (__sgi) // irix - error == ENOTSUP || -#elif defined (DIGITAL_UNIX) // osf1 - error == ENOTSUP || #endif /* ACE_WIN32 */ error == ENFILE) return 1; @@ -1768,7 +1758,7 @@ ACE::sendv_n_i (ACE_HANDLE handle, { // Try to transfer as much of the remaining data as possible. ssize_t n = ACE_OS::sendv (handle, iov + s, iovcnt - s); - + // Check EOF. if (n == 0) return 0; @@ -2175,28 +2165,29 @@ ACE::handle_ready (ACE_HANDLE handle, int write_ready, int exception_ready) { -#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) - ACE_UNUSED_ARG (write_ready); +#if defined (ACE_HAS_POLL) ACE_UNUSED_ARG (exception_ready); struct pollfd fds; fds.fd = handle; - fds.events = read_ready ? POLLIN : POLLOUT; + fds.events = read_ready ? POLLIN : 0; + + if( write_ready ) + { + fds.events |= POLLOUT; + } + fds.revents = 0; - int result = ACE_OS::poll (&fds, 1, timeout); + int const result = ACE_OS::poll (&fds, 1, timeout); #else ACE_Handle_Set handle_set; handle_set.set_bit (handle); // Wait for data or for the timeout to elapse. - int select_width; -# if defined (ACE_WIN32) - // This arg is ignored on Windows and causes pointer truncation - // warnings on 64-bit compiles. - select_width = 0; -# else + int select_width = 0; +#if !defined (ACE_WIN32) select_width = int (handle) + 1; # endif /* ACE_WIN64 */ int result = ACE_OS::select (select_width, @@ -2205,8 +2196,7 @@ ACE::handle_ready (ACE_HANDLE handle, exception_ready ? handle_set.fdset () : 0, // exception_fds. timeout); -#endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ - +#endif /* ACE_HAS_POLL */ switch (result) { case 0: // Timer expired. @@ -2227,14 +2217,12 @@ ACE::enter_recv_timedwait (ACE_HANDLE handle, const ACE_Time_Value *timeout, int &val) { - int result = ACE::handle_read_ready (handle, - timeout); + int const result = ACE::handle_read_ready (handle, timeout); if (result == -1) return -1; - ACE::record_and_set_non_blocking_mode (handle, - val); + ACE::record_and_set_non_blocking_mode (handle, val); return result; } @@ -2244,21 +2232,18 @@ ACE::enter_send_timedwait (ACE_HANDLE handle, const ACE_Time_Value *timeout, int &val) { - int result = ACE::handle_write_ready (handle, - timeout); + int const result = ACE::handle_write_ready (handle, timeout); if (result == -1) return -1; - ACE::record_and_set_non_blocking_mode (handle, - val); + ACE::record_and_set_non_blocking_mode (handle, val); return result; } void -ACE::record_and_set_non_blocking_mode (ACE_HANDLE handle, - int &val) +ACE::record_and_set_non_blocking_mode (ACE_HANDLE handle, int &val) { // We need to record whether we are already *in* nonblocking mode, // so that we can correctly reset the state when we're done. @@ -2271,11 +2256,9 @@ ACE::record_and_set_non_blocking_mode (ACE_HANDLE handle, } void -ACE::restore_non_blocking_mode (ACE_HANDLE handle, - int val) +ACE::restore_non_blocking_mode (ACE_HANDLE handle, int val) { - if (ACE_BIT_DISABLED (val, - ACE_NONBLOCK)) + if (ACE_BIT_DISABLED (val, ACE_NONBLOCK)) { // Save/restore errno. ACE_Errno_Guard error (errno); @@ -2285,11 +2268,9 @@ ACE::restore_non_blocking_mode (ACE_HANDLE handle, } } - -// Format buffer into printable format. This is useful for debugging. -// Portions taken from mdump by J.P. Knight (J.P.Knight@lut.ac.uk) -// Modifications by Todd Montgomery. - +/// Format buffer into printable format. This is useful for debugging. +/// Portions taken from mdump by J.P. Knight (J.P.Knight@lut.ac.uk) +/// Modifications by Todd Montgomery. size_t ACE::format_hexdump (const char *buffer, size_t size, @@ -2436,7 +2417,7 @@ ACE::timestamp (const ACE_Time_Value& time_value, ACE_TEXT ("Fri"), ACE_TEXT ("Sat") }; - + static const ACE_TCHAR *month_name[] = { ACE_TEXT ("Jan"), @@ -2452,10 +2433,10 @@ ACE::timestamp (const ACE_Time_Value& time_value, ACE_TEXT ("Nov"), ACE_TEXT ("Dec") }; - + SYSTEMTIME local; ::GetLocalTime (&local); - + ACE_OS::sprintf (date_and_time, ACE_TEXT ("%3s %3s %2d %04d %02d:%02d:%02d.%06d"), day_of_week_name[local.wDayOfWeek], @@ -2470,8 +2451,8 @@ ACE::timestamp (const ACE_Time_Value& time_value, } #endif /* WIN32 */ ACE_TCHAR timebuf[26]; // This magic number is based on the ctime(3c) man page. - ACE_Time_Value cur_time = - (time_value == ACE_Time_Value::zero) ? + ACE_Time_Value cur_time = + (time_value == ACE_Time_Value::zero) ? ACE_Time_Value (ACE_OS::gettimeofday ()) : time_value; time_t secs = cur_time.sec (); @@ -2534,7 +2515,7 @@ ACE::handle_timed_complete (ACE_HANDLE h, { ACE_TRACE ("ACE::handle_timed_complete"); -#if !defined (ACE_WIN32) && defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) +#if !defined (ACE_WIN32) && defined (ACE_HAS_POLL) struct pollfd fds; @@ -2547,7 +2528,7 @@ ACE::handle_timed_complete (ACE_HANDLE h, 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 */ +#endif /* !ACE_WIN32 && ACE_HAS_POLL */ #if defined (ACE_WIN32) // Winsock is different - it sets the exception bit for failed connect, @@ -2567,7 +2548,7 @@ ACE::handle_timed_complete (ACE_HANDLE h, ex_handles, timeout); #else -# if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) +# if defined (ACE_HAS_POLL) int n = ACE_OS::poll (&fds, 1, timeout); @@ -2585,7 +2566,7 @@ ACE::handle_timed_complete (ACE_HANDLE h, wr_handles, 0, timeout); -# endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ +# endif /* ACE_HAS_POLL */ #endif /* ACE_WIN32 */ // If we failed to connect within the time period allocated by the @@ -2619,18 +2600,18 @@ ACE::handle_timed_complete (ACE_HANDLE h, } #else if (is_tli) -# if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) +# if defined (ACE_HAS_POLL) 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 */ +# endif /* ACE_HAS_POLL */ else -# if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) +# if defined (ACE_HAS_POLL) need_to_check = (fds.revents & POLLIN); # else need_to_check = true; -# endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ +# endif /* ACE_HAS_POLL */ #endif /* ACE_WIN32 */ if (need_to_check) @@ -2692,7 +2673,7 @@ ACE::handle_timed_accept (ACE_HANDLE listener, if (listener == ACE_INVALID_HANDLE) return -1; -#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) +#if defined (ACE_HAS_POLL) struct pollfd fds; @@ -2704,29 +2685,25 @@ ACE::handle_timed_accept (ACE_HANDLE listener, // 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 */ +#endif /* ACE_HAS_POLL */ // We need a loop here if <restart> is enabled. for (;;) { -#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT) +#if defined (ACE_HAS_POLL) int n = ACE_OS::poll (&fds, 1, timeout); #else - int select_width; -# if defined (ACE_WIN32) - // This arg is ignored on Windows and causes pointer truncation - // warnings on 64-bit compiles. - select_width = 0; -# else + int select_width = 0; +# if !defined (ACE_WIN32) select_width = int (listener) + 1; # endif /* ACE_WIN32 */ int n = ACE_OS::select (select_width, rd_handle, 0, 0, timeout); -#endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */ +#endif /* ACE_HAS_POLL */ switch (n) { diff --git a/dep/acelite/ace/ACE.h b/dep/acelite/ace/ACE.h index 56ce13cfd75..04b39a85652 100644 --- a/dep/acelite/ace/ACE.h +++ b/dep/acelite/ace/ACE.h @@ -4,7 +4,7 @@ /** * @file ACE.h * - * $Id: ACE.h 88193 2009-12-16 09:14:06Z mcorino $ + * $Id: ACE.h 92060 2010-09-27 18:08:48Z johnnyw $ * * This file contains value added ACE functions that extend the * behavior of the UNIX and Win32 OS calls. @@ -90,7 +90,7 @@ namespace ACE /// Simple wildcard matching function supporting '*' and '?' /// return true if string s matches pattern. - /// If character_classes is true, '[' is treated as a wildcard character + /// If @a character_classes is true, '[' is treated as a wildcard character /// as described in the fnmatch() POSIX API. The following POSIX "bracket /// expression" features are not implemented: collating symbols, equivalence /// class expressions, and character class expressions. The POSIX locale is @@ -642,6 +642,14 @@ namespace ACE /// Computes the base 2 logarithm of {num}. ACE_NAMESPACE_INLINE_FUNCTION u_long log2 (u_long num); + /// Helper to avoid comparing floating point values with == + /// (uses < and > operators). + template <typename T> + bool is_equal (const T& a, const T& b) + { + return !((a < b) || (a > b)); + } + /// Hex conversion utility. extern ACE_Export ACE_TCHAR nibble2hex (u_int n); @@ -666,21 +674,33 @@ namespace ACE const ACE_Time_Value *timeout = 0); /// Timed wait for handle to get read ready. + /// @retval -1 for error + /// @retval 0 for timeout + /// @retval 1 the handle is ready ACE_NAMESPACE_INLINE_FUNCTION int handle_read_ready (ACE_HANDLE handle, const ACE_Time_Value *timeout); /// Timed wait for handle to get write ready. + /// @retval -1 for error + /// @retval 0 for timeout + /// @retval 1 the handle is ready ACE_NAMESPACE_INLINE_FUNCTION int handle_write_ready (ACE_HANDLE handle, const ACE_Time_Value *timeout); /// Timed wait for handle to get exception ready. + /// @retval -1 for error + /// @retval 0 for timeout + /// @retval 1 the handle is ready ACE_NAMESPACE_INLINE_FUNCTION int handle_exception_ready (ACE_HANDLE handle, const ACE_Time_Value *timeout); /// Timed wait for handle to get read, write, or exception ready. + /// @retval -1 for error + /// @retval 0 for timeout + /// @retval 1 the handle is ready extern ACE_Export int handle_ready (ACE_HANDLE handle, const ACE_Time_Value *timeout, int read_ready, diff --git a/dep/acelite/ace/ACE.inl b/dep/acelite/ace/ACE.inl index 4be80bfb64c..e36e4f01f7b 100644 --- a/dep/acelite/ace/ACE.inl +++ b/dep/acelite/ace/ACE.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: ACE.inl 87366 2009-11-05 20:16:30Z olli $ +// $Id: ACE.inl 91813 2010-09-17 07:52:52Z johnnyw $ #include "ace/OS_NS_unistd.h" #include "ace/OS_NS_Thread.h" @@ -238,36 +238,21 @@ ACE::recv_i (ACE_HANDLE handle, void *buf, size_t len) } ACE_INLINE int -ACE::handle_read_ready (ACE_HANDLE handle, - const ACE_Time_Value *timeout) +ACE::handle_read_ready (ACE_HANDLE handle, const ACE_Time_Value *timeout) { - return ACE::handle_ready (handle, - timeout, - 1, - 0, - 0); + return ACE::handle_ready (handle, timeout, 1, 0, 0); } ACE_INLINE int -ACE::handle_write_ready (ACE_HANDLE handle, - const ACE_Time_Value *timeout) +ACE::handle_write_ready (ACE_HANDLE handle, const ACE_Time_Value *timeout) { - return ACE::handle_ready (handle, - timeout, - 0, - 1, - 0); + return ACE::handle_ready (handle, timeout, 0, 1, 0); } ACE_INLINE int -ACE::handle_exception_ready (ACE_HANDLE handle, - const ACE_Time_Value *timeout) +ACE::handle_exception_ready (ACE_HANDLE handle, const ACE_Time_Value *timeout) { - return ACE::handle_ready (handle, - timeout, - 0, - 0, - 1); + return ACE::handle_ready (handle, timeout, 0, 0, 1); } ACE_INLINE void @@ -287,7 +272,7 @@ ACE::strdelete (wchar_t *s) ACE_INLINE bool ACE::isdotdir (const char *s) { - return (s[0] == '.' && + return (s[0] == '.' && ((s[1] == 0) || (s[1] == '.' && s[2] == 0))); } @@ -295,7 +280,7 @@ ACE::isdotdir (const char *s) ACE_INLINE bool ACE::isdotdir (const wchar_t *s) { - return (s[0] == ACE_TEXT ('.') && + return (s[0] == ACE_TEXT ('.') && ((s[1] == 0) || (s[1] == ACE_TEXT ('.') && s[2] == 0))); } #endif /* ACE_HAS_WCHAR */ diff --git a/dep/acelite/ace/ACE.pc.in b/dep/acelite/ace/ACE.pc.in deleted file mode 100644 index 90b2a9eebd7..00000000000 --- a/dep/acelite/ace/ACE.pc.in +++ /dev/null @@ -1,10 +0,0 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ - -Name: ACE -Description: ADAPTIVE Communication Environment -Version: @VERSION@ -Libs: -L${libdir} -lACE @LIBS@ -Cflags: -I${includedir} diff --git a/dep/acelite/ace/ACE_crc32.cpp b/dep/acelite/ace/ACE_crc32.cpp index 70d93e6b598..f9eb064f51b 100644 --- a/dep/acelite/ace/ACE_crc32.cpp +++ b/dep/acelite/ace/ACE_crc32.cpp @@ -1,12 +1,7 @@ -// $Id: ACE_crc32.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: ACE_crc32.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/ACE.h" -ACE_RCSID (ace, - ACE_crc32, - "$Id: ACE_crc32.cpp 80826 2008-03-04 14:51:23Z wotte $") - - namespace { /*****************************************************************/ diff --git a/dep/acelite/ace/ACE_crc_ccitt.cpp b/dep/acelite/ace/ACE_crc_ccitt.cpp index ef7f5d65bd1..7dfefa5c69d 100644 --- a/dep/acelite/ace/ACE_crc_ccitt.cpp +++ b/dep/acelite/ace/ACE_crc_ccitt.cpp @@ -1,11 +1,7 @@ -// $Id: ACE_crc_ccitt.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: ACE_crc_ccitt.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/ACE.h" -ACE_RCSID (ace, - ACE_crc_ccitt, - "$Id: ACE_crc_ccitt.cpp 80826 2008-03-04 14:51:23Z wotte $") - namespace { /*****************************************************************/ diff --git a/dep/acelite/ace/ACE_export.h b/dep/acelite/ace/ACE_export.h index 8ad2a33ebaf..74c62ec34df 100644 --- a/dep/acelite/ace/ACE_export.h +++ b/dep/acelite/ace/ACE_export.h @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: ACE_export.h 80826 2008-03-04 14:51:23Z wotte $ +// $Id: ACE_export.h 91683 2010-09-09 09:07:49Z johnnyw $ // Definition for Win32 Export directives. // This file is generated automatically by // generate_export_file.pl @@ -53,9 +53,7 @@ #if defined (__ACE_INLINE__) # if defined (_MSC_VER) || defined (__MINGW32__) || defined (CYGWIN32) || \ (defined (__SUNPRO_CC) && __SUNPRO_CC >= 0x560) || \ - (defined (__HP_aCC) && (__HP_aCC >= 60500)) || \ - (defined (__sgi) && \ - defined (_COMPILER_VERSION) && _COMPILER_VERSION <= 730) + (defined (__HP_aCC) && (__HP_aCC >= 60500)) # define ACE_NAMESPACE_INLINE_FUNCTION inline # else # define ACE_NAMESPACE_INLINE_FUNCTION ACE_NAMESPACE_STORAGE_CLASS inline diff --git a/dep/acelite/ace/ARGV.cpp b/dep/acelite/ace/ARGV.cpp index edfd4efa790..3b46459fe5b 100644 --- a/dep/acelite/ace/ARGV.cpp +++ b/dep/acelite/ace/ARGV.cpp @@ -1,4 +1,4 @@ -// $Id: ARGV.cpp 81374 2008-04-16 13:07:47Z iliyan $ +// $Id: ARGV.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #ifndef ACE_ARGV_CPP #define ACE_ARGV_CPP @@ -12,8 +12,6 @@ #include "ace/ARGV.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, ARGV, "$Id: ARGV.cpp 81374 2008-04-16 13:07:47Z iliyan $") - // Open versioned namespace, if enabled by the user. ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/ATM_Acceptor.cpp b/dep/acelite/ace/ATM_Acceptor.cpp index 7e835658f01..a225cbf176d 100644 --- a/dep/acelite/ace/ATM_Acceptor.cpp +++ b/dep/acelite/ace/ATM_Acceptor.cpp @@ -1,8 +1,8 @@ -// $Id: ATM_Acceptor.cpp 84262 2009-01-29 10:34:33Z johnnyw $ +// $Id: ATM_Acceptor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/ATM_Acceptor.h" -ACE_RCSID(ace, ATM_Acceptor, "$Id: ATM_Acceptor.cpp 84262 2009-01-29 10:34:33Z johnnyw $") + #if defined (ACE_HAS_ATM) diff --git a/dep/acelite/ace/ATM_Addr.cpp b/dep/acelite/ace/ATM_Addr.cpp index 991498d6668..47e47e8354a 100644 --- a/dep/acelite/ace/ATM_Addr.cpp +++ b/dep/acelite/ace/ATM_Addr.cpp @@ -1,4 +1,4 @@ -// $Id: ATM_Addr.cpp 84565 2009-02-23 08:20:39Z johnnyw $ +// $Id: ATM_Addr.cpp 91286 2010-08-05 09:04:31Z johnnyw $ // Defines the Internet domain address family address format. @@ -15,7 +15,7 @@ #include "ace/ATM_Addr.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, ATM_Addr, "$Id: ATM_Addr.cpp 84565 2009-02-23 08:20:39Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/ATM_Connector.cpp b/dep/acelite/ace/ATM_Connector.cpp index c1ce226adce..5328436f8f8 100644 --- a/dep/acelite/ace/ATM_Connector.cpp +++ b/dep/acelite/ace/ATM_Connector.cpp @@ -1,12 +1,12 @@ // ATM_Connector.cpp -// $Id: ATM_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: ATM_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/ATM_Connector.h" #if defined (ACE_HAS_ATM) #include "ace/Handle_Set.h" -ACE_RCSID(ace, ATM_Connector, "$Id: ATM_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (__ACE_INLINE__) #include "ace/ATM_Connector.inl" diff --git a/dep/acelite/ace/ATM_Params.cpp b/dep/acelite/ace/ATM_Params.cpp index 70a05f1d71b..b8d7600f11b 100644 --- a/dep/acelite/ace/ATM_Params.cpp +++ b/dep/acelite/ace/ATM_Params.cpp @@ -1,10 +1,10 @@ -// $Id: ATM_Params.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: ATM_Params.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/ATM_Params.h" #if defined (ACE_HAS_ATM) -ACE_RCSID(ace, ATM_Params, "$Id: ATM_Params.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (__ACE_INLINE__) #include "ace/ATM_Params.inl" diff --git a/dep/acelite/ace/ATM_QoS.cpp b/dep/acelite/ace/ATM_QoS.cpp index 5f83d3a14d2..841d57f2192 100644 --- a/dep/acelite/ace/ATM_QoS.cpp +++ b/dep/acelite/ace/ATM_QoS.cpp @@ -1,8 +1,8 @@ -// $Id: ATM_QoS.cpp 84262 2009-01-29 10:34:33Z johnnyw $ +// $Id: ATM_QoS.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/ATM_QoS.h" -ACE_RCSID(ace, ATM_QoS, "$Id: ATM_QoS.cpp 84262 2009-01-29 10:34:33Z johnnyw $") + #if defined (ACE_HAS_ATM) diff --git a/dep/acelite/ace/ATM_Stream.cpp b/dep/acelite/ace/ATM_Stream.cpp index a9dc0461fa2..270afab0505 100644 --- a/dep/acelite/ace/ATM_Stream.cpp +++ b/dep/acelite/ace/ATM_Stream.cpp @@ -1,9 +1,7 @@ -// $Id: ATM_Stream.cpp 84262 2009-01-29 10:34:33Z johnnyw $ +// $Id: ATM_Stream.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/ATM_Stream.h" -ACE_RCSID (ace, ATM_Stream, "$Id: ATM_Stream.cpp 84262 2009-01-29 10:34:33Z johnnyw $") - #if defined (ACE_HAS_ATM) #if !defined (__ACE_INLINE__) diff --git a/dep/acelite/ace/Acceptor.cpp b/dep/acelite/ace/Acceptor.cpp index e2e1ad7b8e7..236a35ba803 100644 --- a/dep/acelite/ace/Acceptor.cpp +++ b/dep/acelite/ace/Acceptor.cpp @@ -1,3 +1,5 @@ +// $Id: Acceptor.cpp 91623 2010-09-06 09:30:59Z sma $ + #ifndef ACE_ACCEPTOR_CPP #define ACE_ACCEPTOR_CPP @@ -8,16 +10,10 @@ #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "ace/Acceptor.h" -#include "ace/Handle_Set.h" #include "ace/Svc_Handler.h" #include "ace/WFMO_Reactor.h" #include "ace/OS_NS_stdio.h" #include "ace/OS_NS_string.h" -#include "ace/OS_NS_sys_select.h" - -ACE_RCSID (ace, - Acceptor, - "$Id: Acceptor.cpp 84935 2009-03-22 19:21:58Z schmidt $") ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -367,17 +363,9 @@ template <class SVC_HANDLER, ACE_PEER_ACCEPTOR_1> int ACE_Acceptor<SVC_HANDLER, ACE_PEER_ACCEPTOR_2>::handle_input (ACE_HANDLE listener) { ACE_TRACE ("ACE_Acceptor<SVC_HANDLER, ACE_PEER_ACCEPTOR_2>::handle_input"); - ACE_Handle_Set conn_handle; // Default is "timeout (0, 0)," which means "poll." ACE_Time_Value timeout; -# if defined (ACE_WIN32) - // This arg is ignored on Windows and causes pointer truncation - // warnings on 64-bit compiles - int select_width = 0; -# else - int select_width = int (listener) + 1; -# endif /* ACE_WIN32 */ // Accept connections from clients. Note that a loop is used for two // reasons: @@ -389,6 +377,11 @@ ACE_Acceptor<SVC_HANDLER, ACE_PEER_ACCEPTOR_2>::handle_input (ACE_HANDLE listene // 2. It allows the TLI_SAP::ACE_Acceptor class to work correctly (don't // ask -- TLI is *horrible*...). + // Ensure that errno is preserved in case the ACE::handle_read_ready() + // method resets it in the loop bellow. We are actually supposed to + // ignore any errors from this loop, hence the return 0 following it. + ACE_Errno_Guard error (errno); + // @@ What should we do if any of the substrategies fail? Right // now, we just print out a diagnostic message if <ACE::debug> // returns > 0 and return 0 (which means that the Acceptor remains @@ -403,9 +396,11 @@ ACE_Acceptor<SVC_HANDLER, ACE_PEER_ACCEPTOR_2>::handle_input (ACE_HANDLE listene if (this->make_svc_handler (svc_handler) == -1) { if (ACE::debug ()) - ACE_DEBUG ((LM_DEBUG, - ACE_TEXT ("%p\n"), - ACE_TEXT ("make_svc_handler"))); + { + ACE_DEBUG ((LM_DEBUG, + ACE_TEXT ("%p\n"), + ACE_TEXT ("make_svc_handler"))); + } return 0; } // Accept connection into the Svc_Handler. @@ -414,10 +409,18 @@ ACE_Acceptor<SVC_HANDLER, ACE_PEER_ACCEPTOR_2>::handle_input (ACE_HANDLE listene // Note that <accept_svc_handler> closes the <svc_handler> // on failure. if (ACE::debug ()) - ACE_DEBUG ((LM_DEBUG, - ACE_TEXT ("%p\n"), - ACE_TEXT ("accept_svc_handler"))); - return this->handle_accept_error (); + { + ACE_DEBUG ((LM_DEBUG, + ACE_TEXT ("%p\n"), + ACE_TEXT ("accept_svc_handler"))); + } + const int ret = this->handle_accept_error (); + if (ret == -1) + { + // Ensure that the errno from the above call propegates. + error = errno; + } + return ret; } // Activate the <svc_handler> using the designated concurrency // strategy (note that this method becomes responsible for @@ -429,23 +432,17 @@ ACE_Acceptor<SVC_HANDLER, ACE_PEER_ACCEPTOR_2>::handle_input (ACE_HANDLE listene // on failure. if (ACE::debug ()) - ACE_DEBUG ((LM_DEBUG, - ACE_TEXT ("%p\n"), - ACE_TEXT ("activate_svc_handler"))); + { + ACE_DEBUG ((LM_DEBUG, + ACE_TEXT ("%p\n"), + ACE_TEXT ("activate_svc_handler"))); + } return 0; } - - conn_handle.set_bit (listener); - } - - // Now, check to see if there is another connection pending and - // break out of the loop if there is none. - while (this->use_select_ - && ACE_OS::select (select_width, - conn_handle, - 0, - 0, - &timeout) == 1); + // Now, check to see if there is another connection pending and + // break out of the loop if there is none. + } while (this->use_select_ && + ACE::handle_read_ready (listener, &timeout) == 1); return 0; } diff --git a/dep/acelite/ace/Activation_Queue.cpp b/dep/acelite/ace/Activation_Queue.cpp index 37be7a46a7a..777dc3ad03c 100644 --- a/dep/acelite/ace/Activation_Queue.cpp +++ b/dep/acelite/ace/Activation_Queue.cpp @@ -1,3 +1,5 @@ +// $Id: Activation_Queue.cpp 91286 2010-08-05 09:04:31Z johnnyw $ + #include "ace/Activation_Queue.h" #if !defined (__ACE_INLINE__) @@ -9,10 +11,6 @@ #include "ace/Malloc_Base.h" #include "ace/Time_Value.h" -ACE_RCSID (ace, - Activation_Queue, - "$Id: Activation_Queue.cpp 84565 2009-02-23 08:20:39Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL void diff --git a/dep/acelite/ace/Active_Map_Manager.cpp b/dep/acelite/ace/Active_Map_Manager.cpp index 6ec891b5d10..574bcb85757 100644 --- a/dep/acelite/ace/Active_Map_Manager.cpp +++ b/dep/acelite/ace/Active_Map_Manager.cpp @@ -1,9 +1,7 @@ -// $Id: Active_Map_Manager.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Active_Map_Manager.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Active_Map_Manager.h" -ACE_RCSID(ace, Active_Map_Manager, "$Id: Active_Map_Manager.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (__ACE_INLINE__) #include "ace/Active_Map_Manager.inl" #endif /* __ACE_INLINE__ */ diff --git a/dep/acelite/ace/Addr.cpp b/dep/acelite/ace/Addr.cpp index af78d91b9ca..1caf3f6aee4 100644 --- a/dep/acelite/ace/Addr.cpp +++ b/dep/acelite/ace/Addr.cpp @@ -1,11 +1,7 @@ -// $Id: Addr.cpp 84619 2009-02-26 12:26:16Z johnnyw $ +// $Id: Addr.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Addr.h" -ACE_RCSID (ace, - Addr, - "$Id: Addr.cpp 84619 2009-02-26 12:26:16Z johnnyw $") - #if !defined (__ACE_INLINE__) #include "ace/Addr.inl" #endif /* __ACE_INLINE__ */ diff --git a/dep/acelite/ace/Arg_Shifter.cpp b/dep/acelite/ace/Arg_Shifter.cpp index 5a7182c3423..62678603561 100644 --- a/dep/acelite/ace/Arg_Shifter.cpp +++ b/dep/acelite/ace/Arg_Shifter.cpp @@ -1,3 +1,5 @@ +// $Id: Arg_Shifter.cpp 91286 2010-08-05 09:04:31Z johnnyw $ + #ifndef ACE_ARG_SHIFTER_T_CPP #define ACE_ARG_SHIFTER_T_CPP @@ -7,11 +9,6 @@ #include "ace/OS_Errno.h" #include "ace/OS_Memory.h" -ACE_RCSID (ace, - Arg_Shifter, - "$Id: Arg_Shifter.cpp 83749 2008-11-14 18:39:10Z johnnyw $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL template <typename CHAR_TYPE> diff --git a/dep/acelite/ace/Arg_Shifter.h b/dep/acelite/ace/Arg_Shifter.h index 2e5f0b0f5e7..57cd2b0f56c 100644 --- a/dep/acelite/ace/Arg_Shifter.h +++ b/dep/acelite/ace/Arg_Shifter.h @@ -4,7 +4,7 @@ /** * @file Arg_Shifter.h * - * $Id: Arg_Shifter.h 83891 2008-11-28 11:01:50Z johnnyw $ + * $Id: Arg_Shifter.h 91459 2010-08-25 09:51:01Z mcorino $ * * @author Seth Widoff */ @@ -33,13 +33,23 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * @a argv vector, so deeper levels of argument parsing can locate the yet * unprocessed arguments at the beginning of the vector. * + * Nomenclature: + * argument - a member of the argv array + * option - an argument starting with '-' + * flag - synonym for "option" + * parameter value - an argument not starting with '-' + * parameter - synonym for "parameter value" + * * The @c ACE_Arg_Shifter copies the pointers of the @a argv vector - * into a temporary array. As the @c ACE_Arg_Shifter iterates over - * the copied vector, it places known arguments in the rear of the - * vector, leaving the unknown ones in the beginning. So, after having - * visited all the arguments in the temporary vector, @c ACE_Arg_Shifter - * has placed all the unknown arguments in their original order at - * the front of original @a argv. + * into a temporary array, emptying the original. As the @c ACE_Arg_Shifter + * iterates over the temporary array, it places known arguments in the rear + * of the original array and places the unknown ones in the beginning of the + * original array. It modifies argc to be the number of unknown arguments, + * so it looks to the caller as if the original array contains only unknown + * arguments. So, after @c ACE_Arg_Shifter has visited all the arguments + * in the temporary array, the original @a argv array appears to contain + * only the unknown arguments in their original order (but it actually has + * all the known arguments, too, beyond argc). */ template <typename CHAR_TYPE> class ACE_Arg_Shifter_T @@ -202,6 +212,9 @@ private: /// The index of <argv_> in which we'll stick the next known /// argument. int front_; + /* This is not really the "front" at all. It's the point after + * which the unknown arguments end and at which the known arguments begin. + */ }; typedef ACE_Arg_Shifter_T<ACE_TCHAR> ACE_Arg_Shifter; diff --git a/dep/acelite/ace/Argv_Type_Converter.cpp b/dep/acelite/ace/Argv_Type_Converter.cpp index 1ebeeb4cc30..68b98d99d88 100644 --- a/dep/acelite/ace/Argv_Type_Converter.cpp +++ b/dep/acelite/ace/Argv_Type_Converter.cpp @@ -1,4 +1,4 @@ -// $Id: Argv_Type_Converter.cpp 85772 2009-06-23 20:14:18Z mitza $ +// $Id: Argv_Type_Converter.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Argv_Type_Converter.h" @@ -6,10 +6,6 @@ #include "ace/Argv_Type_Converter.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Argv_Type_Converter, - "$Id: Argv_Type_Converter.cpp 85772 2009-06-23 20:14:18Z mitza $") - #include "ace/OS_NS_string.h" #include "ace/OS_Errno.h" diff --git a/dep/acelite/ace/Array.h b/dep/acelite/ace/Array.h deleted file mode 100644 index 3caaa7b719b..00000000000 --- a/dep/acelite/ace/Array.h +++ /dev/null @@ -1,29 +0,0 @@ -/* -*- C++ -*- */ - -//============================================================================= -/** - * @file Array.h - * - * $Id: Array.h 80826 2008-03-04 14:51:23Z wotte $ - * - * @deprecated - * - * @note This file has been deprecated and will soon go away. You - * should directly include "Containers_T.h" instead. - * - * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> - */ -//============================================================================= - -#ifndef ACE_ARRAY_H -#define ACE_ARRAY_H -#include /**/ "ace/pre.h" - -#include "ace/Containers_T.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include /**/ "ace/post.h" -#endif /* ACE_ARRAY_H */ diff --git a/dep/acelite/ace/Assert.cpp b/dep/acelite/ace/Assert.cpp index 4a71c9e5a9d..5268996217f 100644 --- a/dep/acelite/ace/Assert.cpp +++ b/dep/acelite/ace/Assert.cpp @@ -1,10 +1,8 @@ -// $Id: Assert.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Assert.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Assert.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, Assert, "$Id: Assert.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // The following ASSERT macro is courtesy of Alexandre Karev diff --git a/dep/acelite/ace/Asynch_Acceptor.cpp b/dep/acelite/ace/Asynch_Acceptor.cpp index 3afb27c7b7d..56af2f14056 100644 --- a/dep/acelite/ace/Asynch_Acceptor.cpp +++ b/dep/acelite/ace/Asynch_Acceptor.cpp @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: Asynch_Acceptor.cpp 85213 2009-04-29 16:34:20Z shuston $ +// $Id: Asynch_Acceptor.cpp 91693 2010-09-09 12:57:54Z johnnyw $ #ifndef ACE_ASYNCH_ACCEPTOR_C #define ACE_ASYNCH_ACCEPTOR_C @@ -10,8 +10,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -ACE_RCSID(ace, Asynch_Acceptor, "$Id: Asynch_Acceptor.cpp 85213 2009-04-29 16:34:20Z shuston $") - #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) || defined (ACE_HAS_AIO_CALLS) // This only works on platforms that support async i/o. @@ -447,13 +445,6 @@ ACE_Asynch_Acceptor<HANDLER>::make_handler (void) return handler; } -/* static */ -template <class HANDLER> size_t -ACE_Asynch_Acceptor<HANDLER>::address_size (void) -{ - return sizeof (sockaddr) + sizeof (sockaddr_in); -} - template <class HANDLER> bool ACE_Asynch_Acceptor<HANDLER>::pass_addresses (void) const { diff --git a/dep/acelite/ace/Asynch_Acceptor.h b/dep/acelite/ace/Asynch_Acceptor.h index 29872d59482..b806d6e4596 100644 --- a/dep/acelite/ace/Asynch_Acceptor.h +++ b/dep/acelite/ace/Asynch_Acceptor.h @@ -4,7 +4,7 @@ /** * @file Asynch_Acceptor.h * - * $Id: Asynch_Acceptor.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Asynch_Acceptor.h 91693 2010-09-09 12:57:54Z johnnyw $ * * @author Irfan Pyarali (irfan@cs.wustl.edu) */ @@ -211,11 +211,6 @@ public: /// Set bytes to be read with the <accept> call. virtual void bytes_to_read (size_t new_value); - /// @deprecated address_size() assumes IPv4 use, so is not always valid. - /// This method will be removed after ACE 5.5. Internal uses have been - /// changes to base needed sizes on the addr_family_ member. - static size_t address_size (void); - protected: /// This is called when an outstanding accept completes. diff --git a/dep/acelite/ace/Asynch_Connector.cpp b/dep/acelite/ace/Asynch_Connector.cpp index 3d493069f00..466d48646fc 100644 --- a/dep/acelite/ace/Asynch_Connector.cpp +++ b/dep/acelite/ace/Asynch_Connector.cpp @@ -1,4 +1,4 @@ -// $Id: Asynch_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Asynch_Connector.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #ifndef ACE_ASYNCH_CONNECTOR_CPP #define ACE_ASYNCH_CONNECTOR_CPP @@ -221,32 +221,6 @@ ACE_Asynch_Connector<HANDLER>::parse_address (const ACE_Asynch_Connect::Result & remote_address.set (reinterpret_cast<sockaddr_in *> (&remote_addr), remote_size); -#if 0 - // @@ Just debugging. - char local_address_buf [BUFSIZ]; - char remote_address_buf [BUFSIZ]; - - if (local_address.addr_to_string (local_address_buf, - sizeof local_address_buf) == -1) - ACE_ERROR ((LM_ERROR, - "Error:%m:can't obtain local_address's address string")); - - ACE_DEBUG ((LM_DEBUG, - "ACE_Asynch_Connector<HANDLER>::parse_address : " - "Local address %s\n", - local_address_buf)); - - if (remote_address.addr_to_string (remote_address_buf, - sizeof remote_address_buf) == -1) - ACE_ERROR ((LM_ERROR, - "Error:%m:can't obtain remote_address's address string")); - - ACE_DEBUG ((LM_DEBUG, - "ACE_Asynch_Connector<HANDLER>::parse_address : " - "Remote address %s\n", - remote_address_buf)); -#endif /* 0 */ - return; } diff --git a/dep/acelite/ace/Asynch_IO.cpp b/dep/acelite/ace/Asynch_IO.cpp index 26bba31a3a9..1913ae10bc9 100644 --- a/dep/acelite/ace/Asynch_IO.cpp +++ b/dep/acelite/ace/Asynch_IO.cpp @@ -1,9 +1,7 @@ -// $Id: Asynch_IO.cpp 82559 2008-08-07 20:23:07Z parsons $ +// $Id: Asynch_IO.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Asynch_IO.h" -ACE_RCSID(ace, Asynch_IO, "$Id: Asynch_IO.cpp 82559 2008-08-07 20:23:07Z parsons $") - #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) || defined (ACE_HAS_AIO_CALLS) // This only works on platforms with Asynchronous IO diff --git a/dep/acelite/ace/Asynch_Pseudo_Task.cpp b/dep/acelite/ace/Asynch_Pseudo_Task.cpp index 94f0d6980ed..e5d4b3b4e3c 100644 --- a/dep/acelite/ace/Asynch_Pseudo_Task.cpp +++ b/dep/acelite/ace/Asynch_Pseudo_Task.cpp @@ -1,12 +1,10 @@ -// $Id: Asynch_Pseudo_Task.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Asynch_Pseudo_Task.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Asynch_Pseudo_Task.h" #include "ace/OS_NS_errno.h" #include "ace/OS_NS_signal.h" -ACE_RCSID(ace, Asynch_Pseudo_Task, "$Id: Asynch_Pseudo_Task.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Asynch_Pseudo_Task::ACE_Asynch_Pseudo_Task () diff --git a/dep/acelite/ace/Atomic_Op.cpp b/dep/acelite/ace/Atomic_Op.cpp index 10731e3c396..32e5c11364d 100644 --- a/dep/acelite/ace/Atomic_Op.cpp +++ b/dep/acelite/ace/Atomic_Op.cpp @@ -1,12 +1,8 @@ -// $Id: Atomic_Op.cpp 89905 2010-04-16 13:04:47Z johnnyw $ +// $Id: Atomic_Op.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Atomic_Op.h" #include "ace/OS_NS_unistd.h" -ACE_RCSID (ace, - Atomic_Op, - "$Id: Atomic_Op.cpp 89905 2010-04-16 13:04:47Z johnnyw $") - #if !defined (__ACE_INLINE__) #include "ace/Atomic_Op.inl" #endif /* __ACE_INLINE__ */ diff --git a/dep/acelite/ace/Atomic_Op.h b/dep/acelite/ace/Atomic_Op.h index 8ebc6c6d8b9..4dee35e6efb 100644 --- a/dep/acelite/ace/Atomic_Op.h +++ b/dep/acelite/ace/Atomic_Op.h @@ -4,7 +4,7 @@ /** * @file Atomic_Op.h * - * $Id: Atomic_Op.h 89936 2010-04-20 13:04:53Z johnnyw $ + * $Id: Atomic_Op.h 91523 2010-08-27 14:18:02Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@uci.edu> */ @@ -142,9 +142,9 @@ public: private: - // This function cannot be supported by this template specialization. - // If you need access to an underlying lock, use the ACE_Atomic_Op_Ex - // template instead. + /// This function cannot be supported by this template specialization. + /// If you need access to an underlying lock, use the ACE_Atomic_Op_Ex + /// template instead. ACE_Thread_Mutex &mutex (void); private: @@ -152,7 +152,7 @@ private: /// Current object decorated by the atomic op. volatile long value_; - // Pointers to selected atomic op implementations. + /// Pointers to selected atomic op implementations. static long (*increment_fn_) (volatile long *); static long (*decrement_fn_) (volatile long *); static long (*exchange_fn_) (volatile long *, long); diff --git a/dep/acelite/ace/Atomic_Op.inl b/dep/acelite/ace/Atomic_Op.inl index 6dcade6c04d..564017aec62 100644 --- a/dep/acelite/ace/Atomic_Op.inl +++ b/dep/acelite/ace/Atomic_Op.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Atomic_Op.inl 89905 2010-04-16 13:04:47Z johnnyw $ +// $Id: Atomic_Op.inl 91813 2010-09-17 07:52:52Z johnnyw $ #if defined (ACE_HAS_INTRINSIC_INTERLOCKED) # include "ace/os_include/os_intrin.h" @@ -13,7 +13,7 @@ #if defined (ACE_HAS_SOLARIS_ATOMIC_LIB) # include <atomic.h> -#endif +#endif ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Atomic_Op_GCC_T.cpp b/dep/acelite/ace/Atomic_Op_GCC_T.cpp index bbe6ec676ec..6b1eb60a2b3 100644 --- a/dep/acelite/ace/Atomic_Op_GCC_T.cpp +++ b/dep/acelite/ace/Atomic_Op_GCC_T.cpp @@ -1,11 +1,7 @@ -// $Id: Atomic_Op_GCC_T.cpp 89345 2010-03-05 13:04:51Z johnnyw $ +// $Id: Atomic_Op_GCC_T.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_unistd.h" -ACE_RCSID (ace, - Atomic_Op_GCC, - "$Id: Atomic_Op_GCC_T.cpp 89345 2010-03-05 13:04:51Z johnnyw $") - #if defined (ACE_HAS_GCC_ATOMIC_BUILTINS) && (ACE_HAS_GCC_ATOMIC_BUILTINS == 1) #if !defined (__ACE_INLINE__) diff --git a/dep/acelite/ace/Atomic_Op_T.cpp b/dep/acelite/ace/Atomic_Op_T.cpp index fcaa529b8e6..de1fd7dd021 100644 --- a/dep/acelite/ace/Atomic_Op_T.cpp +++ b/dep/acelite/ace/Atomic_Op_T.cpp @@ -1,3 +1,5 @@ +// $Id: Atomic_Op_T.cpp 92052 2010-09-27 14:20:22Z vzykov $ + #ifndef ACE_ATOMIC_OP_T_CPP #define ACE_ATOMIC_OP_T_CPP @@ -20,8 +22,6 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Atomic_Op_Ex) ACE_ALLOC_HOOK_DEFINE(ACE_Atomic_Op) -ACE_RCSID(ace, Atomic_Op_T, "$Id: Atomic_Op_T.cpp 85141 2009-04-22 08:48:30Z johnnyw $") - // ************************************************* template <class ACE_LOCK, class TYPE> ACE_LOCK & ACE_Atomic_Op_Ex<ACE_LOCK, TYPE>::mutex (void) @@ -38,7 +38,7 @@ ACE_Atomic_Op_Ex<ACE_LOCK, TYPE>::dump (void) const // ACE_TRACE ("ACE_Atomic_Op_Ex<ACE_LOCK, TYPE>::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); this->mutex_.dump (); - ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP, this)); + ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); #endif /* ACE_HAS_DUMP */ } diff --git a/dep/acelite/ace/Atomic_Op_T.h b/dep/acelite/ace/Atomic_Op_T.h index 13bd7dbbf88..7a20049ced8 100644 --- a/dep/acelite/ace/Atomic_Op_T.h +++ b/dep/acelite/ace/Atomic_Op_T.h @@ -4,7 +4,7 @@ /** * @file Atomic_Op_T.h * - * $Id: Atomic_Op_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Atomic_Op_T.h 92353 2010-10-25 06:34:35Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@uci.edu> */ @@ -220,11 +220,12 @@ public: ACE_Atomic_Op_Ex (ACE_Atomic_Op_Ex<ACE_LOCK, TYPE> const &); /** - * Returns a reference to the underlying <ACE_LOCK>. This makes it + * 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_Ex> with an - * ACE_Recursive_Mutex or ACE_Process_Mutex. @note the right - * name would be lock_, but HP/C++ will choke on that! + * some cases if you instantiate the ACE_Atomic_Op_Ex with an + * ACE_Recursive_Mutex or ACE_Process_Mutex. + * + * @note The right name would be lock_, but HP/C++ will choke on that! */ ACE_LOCK & mutex (void); @@ -274,10 +275,10 @@ public: /// Manage copying... ACE_Atomic_Op (ACE_Atomic_Op<ACE_LOCK, TYPE> const & c); - /// Atomically assign rhs to @c value_. + /// Atomically assign @a rhs to @c value_. ACE_Atomic_Op<ACE_LOCK, TYPE> & operator= (arg_type rhs); - /// Atomically assign <rhs> to @c value_. + /// Atomically assign @a rhs to @c value_. ACE_Atomic_Op<ACE_LOCK, TYPE> & operator= ( ACE_Atomic_Op<ACE_LOCK, TYPE> const & rhs); @@ -296,25 +297,25 @@ public: /// Atomically post-decrement @c value_. TYPE operator-- (int); - /// Atomically decrement @c value_ by rhs. + /// Atomically decrement @c value_ by @a rhs. TYPE operator-= (arg_type rhs); - /// Atomically compare @c value_ with rhs. + /// Atomically compare @c value_ with @a rhs. bool operator== (arg_type rhs) const; - /// Atomically compare @c value_ with rhs. + /// Atomically compare @c value_ with @a rhs. bool operator!= (arg_type rhs) const; - /// Atomically check if @c value_ greater than or equal to rhs. + /// Atomically check if @c value_ greater than or equal to @a rhs. bool operator>= (arg_type rhs) const; - /// Atomically check if @c value_ greater than rhs. + /// Atomically check if @c value_ greater than @a rhs. bool operator> (arg_type rhs) const; - /// Atomically check if @c value_ less than or equal to rhs. + /// Atomically check if @c value_ less than or equal to @a rhs. bool operator<= (arg_type rhs) const; - /// Atomically check if @c value_ less than rhs. + /// Atomically check if @c value_ less than @a rhs. bool operator< (arg_type rhs) const; /// Explicitly return @c value_. @@ -324,18 +325,6 @@ public: void dump (void) const; /** - * 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. - * - * @deprecated This member function is deprecated and so may go away in - * the future. If you need access to the underlying mutex, consider - * using the ACE_Atomic_Op_Ex template instead. - */ - ACE_LOCK & mutex (void); - - /** * Explicitly return @c value_ (by reference). This gives the user * full, unrestricted access to the underlying value. This method * will usually be used in conjunction with explicit access to the diff --git a/dep/acelite/ace/Atomic_Op_T.inl b/dep/acelite/ace/Atomic_Op_T.inl index ff051b0cbce..71ce1c1e267 100644 --- a/dep/acelite/ace/Atomic_Op_T.inl +++ b/dep/acelite/ace/Atomic_Op_T.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Atomic_Op_T.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Atomic_Op_T.inl 91688 2010-09-09 11:21:50Z johnnyw $ #include "ace/Guard_T.h" @@ -322,14 +322,6 @@ ACE_Atomic_Op<ACE_LOCK, TYPE>::dump (void) const #endif /* ACE_HAS_DUMP */ return; } - -template <class ACE_LOCK, class TYPE> -ACE_INLINE ACE_LOCK & -ACE_Atomic_Op<ACE_LOCK, TYPE>::mutex (void) -{ - return this->own_mutex_; -} - template <class ACE_LOCK, class TYPE> ACE_INLINE TYPE & ACE_Atomic_Op<ACE_LOCK, TYPE>::value_i (void) diff --git a/dep/acelite/ace/Auto_Event.cpp b/dep/acelite/ace/Auto_Event.cpp index 51efcf7605b..331edb4bf79 100644 --- a/dep/acelite/ace/Auto_Event.cpp +++ b/dep/acelite/ace/Auto_Event.cpp @@ -1,4 +1,4 @@ -// $Id: Auto_Event.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Auto_Event.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Auto_Event.h" @@ -6,10 +6,6 @@ #include "ace/Auto_Event.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Auto_Event, - "$Id: Auto_Event.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Auto_Event::ACE_Auto_Event (int initial_state, diff --git a/dep/acelite/ace/Auto_Event.h b/dep/acelite/ace/Auto_Event.h index 042f82ed2ff..9699759ad3c 100644 --- a/dep/acelite/ace/Auto_Event.h +++ b/dep/acelite/ace/Auto_Event.h @@ -4,7 +4,7 @@ /** * @file Auto_Event.h * - * $Id: Auto_Event.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Auto_Event.h 91781 2010-09-15 12:49:15Z johnnyw $ * * Moved from Synch.h. * @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * @brief Auto Events. * * Specialization of Event mechanism which wakes up one waiting - * thread on <signal>. All platforms support process-scope locking + * thread on @c signal. All platforms support process-scope locking * support. However, only Win32 platforms support global naming and * system-scope locking support. */ diff --git a/dep/acelite/ace/Auto_IncDec_T.h b/dep/acelite/ace/Auto_IncDec_T.h index 8fcdb0bcd76..86fa6552370 100644 --- a/dep/acelite/ace/Auto_IncDec_T.h +++ b/dep/acelite/ace/Auto_IncDec_T.h @@ -4,7 +4,7 @@ /** * @file Auto_IncDec_T.h * - * $Id: Auto_IncDec_T.h 84675 2009-03-02 11:44:35Z johnnyw $ + * $Id: Auto_IncDec_T.h 92353 2010-10-25 06:34:35Z johnnyw $ * * @author Edan Ayal <EdanA@cti2.com> */ @@ -34,14 +34,13 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * * This data structure is meant to be used within a method, * function, or scope. The actual parameter given for the - * <ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> template parameter + * @c ACE_SAFELY_INCREMENTABLE_DECREMENTABLE template parameter * must provide at least operators ++ and --. */ template <class ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> -class ACE_Auto_IncDec +class ACE_Auto_IncDec : private ACE_Copy_Disabled { public: - /// Implicitly increment the counter. ACE_Auto_IncDec (ACE_SAFELY_INCREMENTABLE_DECREMENTABLE &counter); @@ -52,16 +51,9 @@ public: void dump (void) const; protected: - /// Reference to the <ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> counter + /// Reference to the @c ACE_SAFELY_INCREMENTABLE_DECREMENTABLE counter /// we're incrementing/decrementing. ACE_SAFELY_INCREMENTABLE_DECREMENTABLE &counter_; - -private: - // = Prevent assignment and initialization. - ACE_UNIMPLEMENTED_FUNC (void operator= (const - ACE_Auto_IncDec<ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Auto_IncDec (const - ACE_Auto_IncDec<ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> &)) }; ACE_END_VERSIONED_NAMESPACE_DECL @@ -72,14 +64,6 @@ ACE_END_VERSIONED_NAMESPACE_DECL #if defined (ACE_TEMPLATES_REQUIRE_SOURCE) #include "ace/Auto_IncDec_T.cpp" -// On Win32 platforms, this code will be included as template source -// code and will not be inlined. Therefore, we first turn off -// ACE_INLINE, set it to be nothing, include the code, and then turn -// ACE_INLINE back to its original setting. All this nonsense is -// necessary, since the generic template code that needs to be -// specialized cannot be inlined, else the compiler will ignore the -// specialization code. Also, the specialization code *must* be -// inlined or the compiler will ignore the specializations. #endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ #if defined (ACE_TEMPLATES_REQUIRE_PRAGMA) diff --git a/dep/acelite/ace/Auto_Ptr.cpp b/dep/acelite/ace/Auto_Ptr.cpp index 791bd482a23..81f458d34a9 100644 --- a/dep/acelite/ace/Auto_Ptr.cpp +++ b/dep/acelite/ace/Auto_Ptr.cpp @@ -1,4 +1,4 @@ -// $Id: Auto_Ptr.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Auto_Ptr.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #ifndef ACE_AUTO_PTR_CPP #define ACE_AUTO_PTR_CPP @@ -9,7 +9,7 @@ #include "ace/Auto_Ptr.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Auto_Ptr, "$Id: Auto_Ptr.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Barrier.cpp b/dep/acelite/ace/Barrier.cpp index 29e7422600c..b55ee1c411a 100644 --- a/dep/acelite/ace/Barrier.cpp +++ b/dep/acelite/ace/Barrier.cpp @@ -1,4 +1,4 @@ -// $Id: Barrier.cpp 84282 2009-01-30 15:04:29Z msmit $ +// $Id: Barrier.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/Barrier.h" @@ -15,10 +15,6 @@ # include "ace/Log_Msg.h" #endif /* ACE_HAS_DUMP */ -ACE_RCSID (ace, - Barrier, - "$Id: Barrier.cpp 84282 2009-01-30 15:04:29Z msmit $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Sub_Barrier) @@ -171,26 +167,6 @@ ACE_Thread_Barrier::dump (void) const #endif /* ACE_HAS_DUMP */ } -#if 0 -ACE_ALLOC_HOOK_DEFINE(ACE_Process_Barrier) - -ACE_Process_Barrier::ACE_Process_Barrier (u_int count, - const ACE_TCHAR *name) - : ACE_Barrier (count, USYNC_PROCESS, name) -{ -// ACE_TRACE ("ACE_Process_Barrier::ACE_Process_Barrier"); -} - -void -ACE_Process_Barrier::dump (void) const -{ -#if defined (ACE_HAS_DUMP) -// ACE_TRACE ("ACE_Process_Barrier::dump"); - ACE_Barrier::dump (); -#endif /* ACE_HAS_DUMP */ -} -#endif /* 0 */ - ACE_END_VERSIONED_NAMESPACE_DECL #endif /* ACE_HAS_THREADS */ diff --git a/dep/acelite/ace/Barrier.h b/dep/acelite/ace/Barrier.h index 189ff07e4cc..84d7b6492ff 100644 --- a/dep/acelite/ace/Barrier.h +++ b/dep/acelite/ace/Barrier.h @@ -4,7 +4,7 @@ /** * @file Barrier.h * - * $Id: Barrier.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Barrier.h 92069 2010-09-28 11:38:59Z johnnyw $ * * Moved from Synch.h. * @@ -156,29 +156,6 @@ private: ACE_Barrier (const ACE_Barrier &); }; -#if 0 -/** - * @class ACE_Process_Barrier - * - * @brief Implements "barrier synchronization" using ACE_Process_Mutexes! - * - * This class is just a simple wrapper for ACE_Barrier that - * selects the USYNC_PROCESS variant for the locks. - */ -class ACE_Export ACE_Process_Barrier : public ACE_Barrier -{ -public: - /// Create a Process_Barrier, passing in the optional @a name. - ACE_Process_Barrier (unsigned int count, const ACE_TCHAR *name = 0); - - /// Dump the state of an object. - void dump (void) const; - - /// Declare the dynamic allocation hooks. - ACE_ALLOC_HOOK_DECLARE; -}; -#endif /* 0 */ - /** * @class ACE_Thread_Barrier * diff --git a/dep/acelite/ace/Base_Thread_Adapter.cpp b/dep/acelite/ace/Base_Thread_Adapter.cpp index eac2c14903c..fd2629f1608 100644 --- a/dep/acelite/ace/Base_Thread_Adapter.cpp +++ b/dep/acelite/ace/Base_Thread_Adapter.cpp @@ -1,11 +1,7 @@ -// $Id: Base_Thread_Adapter.cpp 84340 2009-02-05 22:28:08Z stallions $ +// $Id: Base_Thread_Adapter.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Base_Thread_Adapter.h" -ACE_RCSID (ace, - Base_Thread_Adapter, - "$Id: Base_Thread_Adapter.cpp 84340 2009-02-05 22:28:08Z stallions $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/Base_Thread_Adapter.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/Basic_Stats.cpp b/dep/acelite/ace/Basic_Stats.cpp index fe678333d89..ae663abe221 100644 --- a/dep/acelite/ace/Basic_Stats.cpp +++ b/dep/acelite/ace/Basic_Stats.cpp @@ -1,4 +1,4 @@ -// $Id: Basic_Stats.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Basic_Stats.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Basic_Stats.h" #include "ace/Log_Msg.h" @@ -7,10 +7,6 @@ #include "ace/Basic_Stats.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, - Basic_Stats, - "$Id: Basic_Stats.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL void diff --git a/dep/acelite/ace/Basic_Types.cpp b/dep/acelite/ace/Basic_Types.cpp index 42ae83c0b2a..6c161098f8d 100644 --- a/dep/acelite/ace/Basic_Types.cpp +++ b/dep/acelite/ace/Basic_Types.cpp @@ -1,3 +1,5 @@ +// $Id: Basic_Types.cpp 91366 2010-08-16 12:42:35Z mhengstmengel $ + #include "ace/Basic_Types.h" #if !defined (__ACE_INLINE__) @@ -5,11 +7,6 @@ #endif /* ! __ACE_INLINE__ */ -ACE_RCSID (ace, - Basic_Types, - "$Id: Basic_Types.cpp 80826 2008-03-04 14:51:23Z wotte $") - - #if defined (ACE_LACKS_LONGLONG_T) && !defined (ACE_LACKS_UNSIGNEDLONGLONG_T) # include "ace/Log_Msg.h" # include "ace/OS_NS_stdio.h" diff --git a/dep/acelite/ace/Bound_Ptr.inl b/dep/acelite/ace/Bound_Ptr.inl index 399a7bc9b23..06f03abd8dd 100644 --- a/dep/acelite/ace/Bound_Ptr.inl +++ b/dep/acelite/ace/Bound_Ptr.inl @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: Bound_Ptr.inl 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: Bound_Ptr.inl 91626 2010-09-07 10:59:20Z johnnyw $ // Bound_Ptr.i @@ -67,7 +67,7 @@ ACE_Bound_Ptr_Counter<ACE_LOCK>::detach_strong (ACE_Bound_Ptr_Counter<ACE_LOCK>* counter->obj_ref_count_ = -1; if (--counter->self_ref_count_ == 0) - // Since counter contains the lock held by the ACE_Guard, the + // Since counter contains the lock held by the guard, the // guard needs to be released before freeing the memory holding // the lock. So save the pointer to free, then release, then // free. @@ -112,7 +112,7 @@ ACE_Bound_Ptr_Counter<ACE_LOCK>::detach_weak (ACE_Bound_Ptr_Counter<ACE_LOCK>* c ACE_GUARD (ACE_LOCK, guard, counter->lock_); if (--counter->self_ref_count_ == 0) - // Since counter contains the lock held by the ACE_Guard, the + // Since counter contains the lock held by the guard, the // guard needs to be released before freeing the memory holding // the lock. So save the pointer to free, then release, then // free. diff --git a/dep/acelite/ace/CDR_Base.cpp b/dep/acelite/ace/CDR_Base.cpp index 35393c3f577..0acf651d4d1 100644 --- a/dep/acelite/ace/CDR_Base.cpp +++ b/dep/acelite/ace/CDR_Base.cpp @@ -1,3 +1,5 @@ +// $Id: CDR_Base.cpp 91685 2010-09-09 09:35:14Z johnnyw $ + #include "ace/CDR_Base.h" #if !defined (__ACE_INLINE__) @@ -8,10 +10,6 @@ #include "ace/OS_Memory.h" #include "ace/OS_NS_string.h" -ACE_RCSID (ace, - CDR_Base, - "$Id: CDR_Base.cpp 86825 2009-09-28 17:45:23Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL #if defined (NONNATIVE_LONGDOUBLE) @@ -776,27 +774,4 @@ ACE_CDR::LongDouble::operator ACE_CDR::LongDouble::NativeImpl () const } #endif /* NONNATIVE_LONGDOUBLE */ -#if defined(_UNICOS) && !defined(_CRAYMPP) -// placeholders to get things compiling -ACE_CDR::Float::Float (void) -{ -} - -ACE_CDR::Float::Float (const float & /* init */) -{ -} - -ACE_CDR::Float & -ACE_CDR::Float::operator= (const float & /* rhs */) -{ - return *this; -} - -bool -ACE_CDR::Float::operator!= (const ACE_CDR::Float & /* rhs */) const -{ - return false; -} -#endif /* _UNICOS */ - ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/CDR_Base.h b/dep/acelite/ace/CDR_Base.h index 12b4a4953fd..66a6d885710 100644 --- a/dep/acelite/ace/CDR_Base.h +++ b/dep/acelite/ace/CDR_Base.h @@ -4,7 +4,7 @@ /** * @file CDR_Base.h * - * $Id: CDR_Base.h 88488 2010-01-12 14:20:13Z olli $ + * $Id: CDR_Base.h 91685 2010-09-09 09:35:14Z johnnyw $ * * ACE Common Data Representation (CDR) basic types. * @@ -209,7 +209,7 @@ public: # if (defined (_MSC_VER)) || (defined (__BORLANDC__)) typedef __int64 LongLong; -# elif ACE_SIZEOF_LONG == 8 && !defined(_CRAYMPP) +# elif ACE_SIZEOF_LONG == 8 typedef long LongLong; # elif defined(__TANDEM) typedef long long LongLong; @@ -263,12 +263,6 @@ public: # else /* ACE_SIZEOF_INT != 4 */ // Applications will probably have trouble with this. char f[4]; -# if defined(_UNICOS) && !defined(_CRAYMPP) - Float (void); - Float (const float &init); - Float & operator= (const float &rhs); - bool operator!= (const Float &rhs) const; -# endif /* _UNICOS */ # endif /* ACE_SIZEOF_INT != 4 */ }; # endif /* ACE_SIZEOF_FLOAT != 4 */ diff --git a/dep/acelite/ace/CDR_Size.cpp b/dep/acelite/ace/CDR_Size.cpp index 96970927037..40ea9d35b73 100644 --- a/dep/acelite/ace/CDR_Size.cpp +++ b/dep/acelite/ace/CDR_Size.cpp @@ -1,3 +1,5 @@ +// $Id: CDR_Size.cpp 91813 2010-09-17 07:52:52Z johnnyw $ + #include "ace/CDR_Size.h" #include "ace/SString.h" #include "ace/OS_Memory.h" @@ -7,10 +9,6 @@ # include "ace/CDR_Size.inl" #endif /* ! __ACE_INLINE__ */ -ACE_RCSID (ace, - CDR_Size, - "$Id: CDR_Size.cpp 82559 2008-08-07 20:23:07Z parsons $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_CDR::Boolean @@ -23,13 +21,13 @@ ACE_SizeCDR::write_wchar (ACE_CDR::WChar x) errno = EACCES; return (this->good_bit_ = false); } - + if (static_cast<ACE_CDR::Short> (major_version_) == 1 && static_cast<ACE_CDR::Short> (minor_version_) == 2) { ACE_CDR::Octet len = static_cast<ACE_CDR::Octet> (ACE_OutputCDR::wchar_maxbytes ()); - + if (this->write_1 (&len)) { if (ACE_OutputCDR::wchar_maxbytes () == sizeof(ACE_CDR::WChar)) @@ -65,7 +63,7 @@ ACE_SizeCDR::write_wchar (ACE_CDR::WChar x) errno = EINVAL; return (this->good_bit_ = false); } - + if (ACE_OutputCDR::wchar_maxbytes () == sizeof (ACE_CDR::WChar)) { const void *temp = &x; @@ -76,7 +74,7 @@ ACE_SizeCDR::write_wchar (ACE_CDR::WChar x) ACE_CDR::Short sx = static_cast<ACE_CDR::Short> (x); return this->write_2 (reinterpret_cast<const ACE_CDR::UShort *> (&sx)); } - + ACE_CDR::Octet ox = static_cast<ACE_CDR::Octet> (x); return this->write_1 (reinterpret_cast<const ACE_CDR::Octet *> (&ox)); } @@ -138,9 +136,9 @@ ACE_SizeCDR::write_wstring (ACE_CDR::ULong len, this->write_ulong ( ACE_Utils::truncate_cast<ACE_CDR::ULong> ( ACE_OutputCDR::wchar_maxbytes () * len)); - + if (good_ulong) - { + { return this->write_wchar_array (x, len); } } diff --git a/dep/acelite/ace/CDR_Stream.cpp b/dep/acelite/ace/CDR_Stream.cpp index 74d33be5876..cc58132ca82 100644 --- a/dep/acelite/ace/CDR_Stream.cpp +++ b/dep/acelite/ace/CDR_Stream.cpp @@ -1,3 +1,5 @@ +// $Id: CDR_Stream.cpp 91373 2010-08-17 07:35:27Z mhengstmengel $ + #include "ace/CDR_Stream.h" #include "ace/SString.h" #include "ace/Auto_Ptr.h" @@ -7,10 +9,6 @@ # include "ace/CDR_Stream.inl" #endif /* ! __ACE_INLINE__ */ -ACE_RCSID (ace, - CDR_Stream, - "$Id: CDR_Stream.cpp 88653 2010-01-21 23:19:50Z sowayaa $") - // **************************************************************** ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/CORBA_macros.h b/dep/acelite/ace/CORBA_macros.h index beab26b7f04..8233b63cda9 100644 --- a/dep/acelite/ace/CORBA_macros.h +++ b/dep/acelite/ace/CORBA_macros.h @@ -4,7 +4,7 @@ /** * @file CORBA_macros.h * - * $Id: CORBA_macros.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: CORBA_macros.h 91626 2010-09-07 10:59:20Z johnnyw $ * * Writing code that is portable between platforms with or without * native C++ exceptions is hard. The following macros offer some @@ -30,10 +30,6 @@ # pragma once # endif /* ACE_LACKS_PRAGMA_ONCE */ -#define ACE_ENV_POLLUTE_NAMES - -#include "ace/Exception_Macros.h" - // The Windows MFC exception mechanism requires that a caught CException // (including the CMemoryException in use here) be freed using its Delete() // method. Thus, when MFC is in use and we're catching exceptions as a result @@ -47,369 +43,6 @@ # define ACE_del_bad_alloc #endif -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - -// If you wish to you use these macros for emulating exceptions on -// platforms which lack native exception support, you need to do the -// following: -// 1. Define a class Exception. You can name it as you please. This class -// should be at the root of the inheritance hierarchy of all the -// exceptions used in your application. It should define at a minimum -// the following pure virtual methods: -// a) _downcast () - Which allows narrowing of the base exception type to a -// derived type. -// b) _raise() - Which throws an exception of type Exception. -// -// Classes which derive from these should implement these operations. -// -// 2. Define a class Environment. You can name it as you please. This class -// is an exception holder. This class is always on the stack. It should -// support at a minimum the following methods: -// a) exception() - Which returns the Exception held in the current -// Environment. -// b) exception (Exception* foo) - Which replaces/sets the Exception -// held in the current Environment with foo. -// b) clear() - Which resets a particular instance of Environment. -// c) A copy constructor and an assignment operator. -// -// Note that the above description assumes that you use the following -// macros only within a particular domain. For example, if your -// application has to interoperate across domains, then you need to define -// an exception adapter to translate exceptions from one domain to -// exceptions in the other. Please refer to Stroustrup's book on how to do -// this. If your use case is this complex, you would be better off with -// going with native exceptions rather than emulated exceptions, though -// the macros should still work if you defined your adapter class as -// ACE_EXCEPTION_TYPE. - - -// The following macros assume that an environment variable is passed -// in/out of each function that can throw an exception. The type of the -// environment variable is defined by ACE_ENV_TYPE. - -#if !defined (ACE_ENV_TYPE) -# define ACE_ENV_TYPE CORBA::Environment -#endif /* ACE_ENV_TYPE */ - -// The name of the variable is defined by ACE_TRY_ENV. Below is the name -// that we use by default. If you wish to change it you can redefine -// ACE_TRY_ENV to change the default name. Also ACE_ADOPT_ENV allows the -// use of non-standard name within a scope. - -#if !defined (ACE_TRY_ENV) -# define ACE_TRY_ENV _ACE_CORBA_Environment_variable -#endif /* ACE_TRY_ENV */ - -// The base type of Exception from which all the other exception types are -// derived. You can set this to any type as you please. By default, it is -// set to CORBA::Exception. - -#if !defined (ACE_EXCEPTION_TYPE) -# define ACE_EXCEPTION_TYPE CORBA::Exception -#endif /* ACE_EXCEPTION_TYPE */ - -// This method is used to get the default value of the Environment -// variable. In the case of TAO, this variable is part of the TSS ORB -// resources and the method TAO_default_environment() returns the -// Environment variable. - -#if !defined (ACE_DEFAULT_GET_ENV_METHOD) -# define ACE_DEFAULT_GET_ENV_METHOD TAO_default_environment -#endif /* ACE_DEFAULT_GET_ENV_METHOD */ - -// This is the exception caught by ACE_CATCHANY. -#if !defined (ACE_ANY_EXCEPTION) -# define ACE_ANY_EXCEPTION ex -#endif /* ACE_ANY_EXCEPTION */ - -// Declare a new environment variable on the stack. The type of the -// environment variable is determined by ACE_ENV_TYPE. -#if defined (ACE_USES_NATIVE_EXCEPTIONS) -// Don't instantiate an emulated exception environment at all when -// using native C++ exception support. It won't be used. -# define ACE_DECLARE_NEW_ENV -#else -# define ACE_DECLARE_NEW_ENV \ - ACE_ENV_TYPE ACE_TRY_ENV -#endif /* ACE_USES_NATIVE_EXCEPTIONS */ - -// Provided for backward compatibility purposes. Don't use it in new code. -// Use the definition above along with defining ACE_ENV_TYPE. - -#if defined (ACE_ENV_POLLUTE_NAMES) -# define ACE_DECLARE_NEW_CORBA_ENV ACE_DECLARE_NEW_ENV -#endif /* ACE_ENV_POLLUTE_NAMES */ - -#if defined (ACE_USES_NATIVE_EXCEPTIONS) -// ----------------------------------------------------------------- - -// Provided for backward compatibility purposes. Don't use it in new code. -#if defined (ACE_ENV_POLLUTE_NAMES) -# define ACE_ADOPT_CORBA_ENV(ENV) -#endif /* ACE_ENV_POLLUTE_NAMES */ - -#define ACE_ADOPT_ENV (ENV) - -// No need to check. Native exceptions handle the control flow -// automatically when an exception occurs. -# define ACE_CHECK - -// Used when the function requires a return value. -# define ACE_CHECK_RETURN(RETV) - -// ACE_THROW_INT should not be used by the user. -# define ACE_THROW_INT(EXCEPTION) \ - throw EXCEPTION - -// Throwing an exception is easy. These two macros should _NOT_ be -// used within try blocks. -# define ACE_THROW(EXCEPTION) \ - throw EXCEPTION - -// Throwing an exception when the function requires a return value. -# define ACE_THROW_RETURN(EXCEPTION,RETV) \ - throw EXCEPTION - -// For compilers with native exceptions, we can simply use try to try. ;-) -// do {} while (0) is required to avoid compilation warnings. -# define ACE_TRY \ - do \ - { \ - try \ - { -# define ACE_TRY_NEW_ENV \ - do \ - { \ - try \ - { -# define ACE_TRY_EX(LABEL) \ - do \ - { \ - try \ - { - -// No need to check for exceptions within try block for compilers with -// native exceptions. -# define ACE_TRY_CHECK -# define ACE_TRY_CHECK_EX(LABEL) - -// Likewise, throwing exceptions within try blocks is easy. -# define ACE_TRY_THROW(EXCEPTION) throw EXCEPTION -# define ACE_TRY_THROW_EX(EXCEPTION,LABEL) throw EXCEPTION - -// Same thing for catch. -# define ACE_CATCH(EXCEPTION,VAR) \ - } \ - catch (EXCEPTION & VAR) \ - { \ - ACE_UNUSED_ARG (VAR); - -# define ACE_CATCHANY \ - ACE_CATCH(ACE_EXCEPTION_TYPE, ACE_ANY_EXCEPTION) - -# define ACE_CATCHALL \ - } \ - catch (...) \ - { - -# if defined (ACE_HAS_DEPRECATED_ACE_RETHROW) -# define ACE_RETHROW throw -# endif /* ACE_HAS_DEPRECATED_ACE_RETHROW */ - -// Rethrowing the exception from catch blocks. -# define ACE_RE_THROW throw -# define ACE_RE_THROW_EX(LABEL) throw - -// Close the catch block. -# define ACE_ENDTRY \ - } \ - } while (0) - -#else /* ! ACE_USES_NATIVE_EXCEPTIONS */ -// ----------------------------------------------------------------- - -// When handling compilers without native exceptions, things get a bit -// hairy. Exceptions are simulated using ACE_ENV_TYPE. The trick here is to -// make sure the flow-of-control can simulate the case when native -// exceptions occur... - -#if defined (ACE_ENV_POLLUTE_NAMES) -# define ACE_ADOPT_CORBA_ENV(ENV) ACE_ENV_TYPE &ACE_TRY_ENV = ENV -#endif /* ACE_ENV_POLLUTE_NAMES */ - -# define ACE_ADOPT_ENV(ENV) ACE_ENV_TYPE &ACE_TRY_ENV = ENV - -// Follow every statement that could throw exceptions with ACE_CHECK or -// ACE_CHECK_RETURN. These two macros should _NOT_ be used within try -// blocks. Use ACE_TRY_CHECK or ACE_TRY_CHECK_EX instead. -# define ACE_CHECK \ - if (ACE_TRY_ENV . exception () != 0) \ - return -// When function requires a return value -# define ACE_CHECK_RETURN(RETV) \ - if (ACE_TRY_ENV . exception () != 0) \ - return RETV - -// ACE_THROW_INT should not be used by the user. -# define ACE_THROW_INT(EXCEPTION) ACE_TRY_ENV.exception (new EXCEPTION) - -// Throwing exceptions will inevitably cause a return from the current -// function. These two macros should _NOT_ be used within try blocks. Use -// ACE_TRY_THROW or ACE_TRY_THROW_EX instead. -# define ACE_THROW(EXCEPTION) \ - do \ - { \ - ACE_TRY_ENV.exception (new EXCEPTION); \ - return; \ - } while (0) - -# define ACE_THROW_RETURN(EXCEPTION,RETV) \ - do \ - { \ - ACE_TRY_ENV.exception (new EXCEPTION); \ - return RETV; \ - } while (0) - -// ACE_TRY sets up flags to control program flow. ACE_TRY_FLAG acts like a -// one-shot flip-flop. When an exception occurs (detected using -// ACE_TRY_CHECK,) ACE_TRY_FLAG will be reset and the control goes back -// into ACE_TRY_LABEL. Since ACE_TRY_FLAG is reset, the try block won't get -// executed again and the control proceeds to the following catch blocks. -// ACE_EXCEPTION_NOT_CAUGHT flag is used to prevent catching an exception -// twice. This macro assumes there's already an ACE_ENV_TYPE variable -// ACE_TRY_ENV defined (which should be the case normally) -# define ACE_TRY \ - do { \ - int ACE_TRY_FLAG = 1; \ - int ACE_EXCEPTION_NOT_CAUGHT = 1; \ - ACE_TRY_LABEL: \ - if (ACE_TRY_FLAG) \ - do { - -// ACE_TRY_NEW_ENV functions like the macro ACE_TRY but defines a new -// ACE_ENV_TYPE variable ACE_TRY_ENV. It is most often used in the outer -// most function where no ACE_TRY_ENV is available. -# define ACE_TRY_NEW_ENV \ - do { \ - ACE_DECLARE_NEW_ENV;\ - int ACE_TRY_FLAG = 1; \ - int ACE_EXCEPTION_NOT_CAUGHT = 1; \ - ACE_TRY_LABEL: \ - if (ACE_TRY_FLAG) \ - do { - -// ACE_TRY_EX works exactly like ACE_TRY macro except the label used in the -// try block is customizable to avoid name clashing. It should be used when -// nested try blocks or multiple try blocks are required, in the same -// function. -# define ACE_TRY_EX(LABEL) \ - do { \ - int ACE_TRY_FLAG = 1; \ - int ACE_EXCEPTION_NOT_CAUGHT = 1; \ - ACE_TRY_LABEL ## LABEL: \ - if (ACE_TRY_FLAG) \ - do { - -// Check for exceptions within try blocks. -# define ACE_TRY_CHECK \ - { \ - if (ACE_TRY_ENV.exception () != 0) \ - { \ - ACE_TRY_FLAG = 0; \ - goto ACE_TRY_LABEL; \ - } \ - } - -// Checking exception within EX try blocks. -# define ACE_TRY_CHECK_EX(LABEL) \ - { \ - if (ACE_TRY_ENV.exception () != 0) \ - { \ - ACE_TRY_FLAG = 0; \ - goto ACE_TRY_LABEL ## LABEL; \ - } \ - } - -// Throwing exception within TRY blocks. -# define ACE_TRY_THROW(EXCEPTION) \ - { \ - ACE_TRY_ENV.exception (new EXCEPTION); \ - ACE_TRY_FLAG = 0; \ - goto ACE_TRY_LABEL; \ - } - -# define ACE_TRY_THROW_EX(EXCEPTION,LABEL) \ - { \ - ACE_TRY_ENV.exception (new EXCEPTION); \ - ACE_TRY_FLAG = 0; \ - goto ACE_TRY_LABEL ## LABEL; \ - } - -// When exceptions occur or try block finishes execution without exception, -// control will continue in the catch block. This macro first checks if -// there's any uncaught exception left. If all the conditions are met, we -// have caught an exception. It then resets ACE_EXCEPTION_NOT_CAUGHT to -// prevent subsequent catch blocks from catching the same exception again, -// and extracts out the underlying exception in ACE_TRY_ENV. We also make a -// copy of ACE_TRY_ENV in ACE_CAUGHT_ENV, in case we want to rethrow the -// exception. ACE_TRY_ENV is cleared out after the exception is caught so -// you should not use ACE_TRY_ENV within the catch block(You should use the -// exception directly). -# define ACE_CATCH(TYPE,VAR) \ - } while (0); \ - do \ - if (ACE_TRY_ENV.exception () != 0 && ACE_EXCEPTION_NOT_CAUGHT && \ - TYPE::_downcast(ACE_TRY_ENV.exception ()) != 0) \ - { \ - ACE_ENV_TYPE ACE_CAUGHT_ENV = ACE_TRY_ENV;\ - ACE_EXCEPTION_NOT_CAUGHT = 0; \ - TYPE &VAR = *TYPE::_downcast (ACE_CAUGHT_ENV.exception ()); \ - ACE_UNUSED_ARG (VAR); \ - ACE_TRY_ENV.clear (); - -// ACE_CATCHANY uses ACE_CATCH to catch all exceptions derived from -// ACE_EXCEPTION_TYPE -# define ACE_CATCHANY ACE_CATCH (ACE_EXCEPTION_TYPE, ACE_ANY_EXCEPTION) - -// Since there's no other exception for compilers without exception -// support, we simply catch all ACE_EXCEPTION_TYPE exceptions for -// ACE_CATCHALL. -# define ACE_CATCHALL ACE_CATCHANY - -# if defined (ACE_HAS_DEPRECATED_ACE_RETHROW) -# define ACE_RETHROW \ - do \ - ACE_TRY_ENV = ACE_CAUGHT_ENV; \ - while (0) -# endif /* ACE_HAS_DEPRECATED_ACE_RETHROW */ - -// Rethrowing exception within catch blocks. Notice that we depend on the -// ACE_CHECK/ACE_CHECK_RETURN following the ACE_ENDTRY, or ACE_TRY_CHECK/ -// ACE_TRY_CHECK_EX following the ACE_ENDTRY when the catch block is within -// another try block, to do the "Right Thing[TM]." -# define ACE_RE_THROW \ - do {\ - ACE_TRY_ENV = ACE_CAUGHT_ENV; \ - goto ACE_TRY_LABEL; \ - } while (0) -# define ACE_RE_THROW_EX(LABEL) \ - do {\ - ACE_TRY_ENV = ACE_CAUGHT_ENV; \ - goto ACE_TRY_LABEL ## LABEL; \ - } while (0) - -// Close the try block. Since exceptions may not get caught, and exceptions -// can also be rethrown from the catch block, it's always a good idea to -// follow ACE_ENDTRY with ACE_CHECK or ACE_TRY_CHECK (depending on the -// context.) -# define ACE_ENDTRY \ - } while (0); \ - } while (0) - -#endif /* ! ACE_USES_NATIVE_EXCEPTIONS */ - -#endif /* !ACE_LACKS_DEPRECATED_MACROS */ - // ACE_HAS_EXCEPTIONS is not the same as ACE_NEW_THROWS_EXCEPTIONS. #if defined(ACE_NEW_THROWS_EXCEPTIONS) @@ -438,6 +71,7 @@ #endif /* ACE_NEW_THROWS_EXCEPTIONS */ +// FUZZ: disable check_for_ACE_Guard # define ACE_GUARD_THROW_EX(MUTEX,OBJ,LOCK,EXCEPTION) \ ACE_Guard< MUTEX > OBJ (LOCK); \ if (OBJ.locked () == 0) throw EXCEPTION; @@ -449,126 +83,7 @@ # define ACE_WRITE_GUARD_THROW_EX(MUTEX,OBJ,LOCK,EXCEPTION) \ ACE_Write_Guard< MUTEX > OBJ (LOCK); \ if (OBJ.locked () == 0) throw EXCEPTION; - -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - -//@{ -/** - * @name Native C++ exceptions portability macros. - * - * The following macros are used to write code portable between platforms - * with and without native C++ exception support. Their main goal is to - * hide the presence of the ACE_ENV_TYPE argument, but they collaborate - * with the ACE_TRY_* macros to emulate the try/catch blocks. - */ - -/// Define a macro to emit code only when ACE_ENV_TYPE is used -#if !defined (ACE_USES_NATIVE_EXCEPTIONS) || defined (ACE_ENV_BKWD_COMPAT) -# define ACE_ENV_EMIT_CODE(X) X -#else -# define ACE_ENV_EMIT_CODE(X) -#endif /* ACE_USES_NATIVE_EXCEPTIONS && ! ACE_ENV_BKWD_COMPAT */ - -/// Another macro to emit code only when ACE_ENV_TYPE is used -#if !defined (ACE_USES_NATIVE_EXCEPTIONS) || defined (ACE_ENV_BKWD_COMPAT) -# define ACE_ENV_EMIT_CODE2(X,Y) X,Y -#else -# define ACE_ENV_EMIT_CODE2(X,Y) -#endif /* ACE_USES_NATIVE_EXCEPTIONS && ! ACE_ENV_BKWD_COMPAT */ - -/// Helper macro -#define ACE_ENV_EMIT_DUMMY - -/// Declare a ACE_ENV_TYPE argument as the last argument of a -/// function -/** - * Normally this macro is used as follows: - * - * <CODE>void my_funct (int x, int y ACE_ENV_ARG_DECL);</CODE> - * - * Its purpose is to provide developers (and users) with a mechanism to - * write code that is portable to platforms with and without native C++ - * exceptions. - */ -#define ACE_ENV_ARG_DECL \ - ACE_ENV_EMIT_CODE2(ACE_ENV_EMIT_DUMMY, \ - ACE_ENV_TYPE &ACE_TRY_ENV) - -/// Declare a ACE_ENV_TYPE argument with the default value obtained from -/// the ORB/application. -/** - * It is similar to ACE_ENV_ARG_DECL. The name of the default environment - * getter method needs to be changed when switching ORBs or when used with - * another application. - */ -#define ACE_ENV_ARG_DECL_WITH_DEFAULTS \ - ACE_ENV_EMIT_CODE2(ACE_ENV_EMIT_DUMMY, \ - ACE_ENV_TYPE &ACE_TRY_ENV = \ - ACE_DEFAULT_GET_ENV_METHOD ()) - -/// Declare a ACE_ENV_TYPE argument that is not used by the -/// function definition. -/** - * Similar to ACE_ENV_ARG_DECL, but the formal parameter name is dropped to - * avoid warnings about unused parameters - */ -#define ACE_ENV_ARG_DECL_NOT_USED \ - ACE_ENV_EMIT_CODE2(ACE_ENV_EMIT_DUMMY, \ - ACE_ENV_TYPE &) - -/// Declare a ACE_ENV_TYPE argument for methods that do not take any other -/// parameters -#define ACE_ENV_SINGLE_ARG_DECL \ - ACE_ENV_EMIT_CODE(ACE_ENV_TYPE &ACE_TRY_ENV) - -/// Declare a ACE_ENV_TYPE argument with a default value for methods that -/// do not take any other parameters. The name of the default environment -/// getter method needs to be changed when switching ORBs or when used in -/// another application. -#define ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS \ - ACE_ENV_EMIT_CODE(ACE_ENV_TYPE &ACE_TRY_ENV = \ - ACE_DEFAULT_GET_ENV_METHOD ()) - -/// Declare a ACE_ENV_TYPE argument for methods which don't use it. -#define ACE_ENV_SINGLE_ARG_DECL_NOT_USED \ - ACE_ENV_EMIT_CODE(ACE_ENV_TYPE &) - -/// Use the ACE_ENV_TYPE argument in a nested call -#define ACE_ENV_ARG_PARAMETER \ - ACE_ENV_EMIT_CODE2(ACE_ENV_EMIT_DUMMY, \ - ACE_TRY_ENV) - -/// Use the ACE_ENV_TYPE argument in a nested call, assuming that the -/// called function takes only the ACE_TRY_ENV argument. -#define ACE_ENV_SINGLE_ARG_PARAMETER \ - ACE_ENV_EMIT_CODE(ACE_TRY_ENV) - -/// Eliminate unused argument warnings about ACE_TRY_ENV -#define ACE_ENV_ARG_NOT_USED \ - ACE_ENV_EMIT_CODE(ACE_UNUSED_ARG(ACE_TRY_ENV)) -//@} - -#if !defined (ACE_USES_NATIVE_EXCEPTIONS) -// This thing can be moved above when we drop ACE_ENV_BKWD_COMPAT. -# define ACE_ENV_RAISE(ex) ACE_TRY_ENV.exception (ex) -#else -# define ACE_ENV_RAISE(ex) (ex)->_raise () -#endif /* ACE_USES_NATIVE_EXCEPTIONS */ - -// ============================================================ - -// Print out a TAO exception. This is not CORBA compliant. -# define ACE_PRINT_TAO_EXCEPTION(EX,INFO) \ - EX._tao_print_exception (INFO) - -// Print out a CORBA exception. There is not portable way to -// dump a CORBA exception. If you are using other ORB implementation, -// redefine the macro to get what you want. -# if !defined ACE_PRINT_EXCEPTION -# define ACE_PRINT_EXCEPTION(EX,INFO) ACE_PRINT_TAO_EXCEPTION(EX,INFO) -# endif /* ACE_PRINT_EXCEPTION */ - -#endif /* !ACE_LACKS_DEPRECATED_MACROS */ +// FUZZ: enable check_for_ACE_Guard #include /**/ "ace/post.h" diff --git a/dep/acelite/ace/Cache_Map_Manager_T.cpp b/dep/acelite/ace/Cache_Map_Manager_T.cpp index f87031eb0d7..4fb5b93cac8 100644 --- a/dep/acelite/ace/Cache_Map_Manager_T.cpp +++ b/dep/acelite/ace/Cache_Map_Manager_T.cpp @@ -1,4 +1,4 @@ -// $Id: Cache_Map_Manager_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Cache_Map_Manager_T.cpp 92097 2010-09-30 05:41:49Z msmit $ #ifndef ACE_CACHE_MAP_MANAGER_T_CPP #define ACE_CACHE_MAP_MANAGER_T_CPP @@ -77,7 +77,7 @@ ACE_Cache_Map_Manager<ACE_T2>::bind (const KEY &key, { int result = this->caching_strategy_.notify_bind (bind_result, - cache_value.second ()); + cache_value.second); if (result == -1) { @@ -285,7 +285,7 @@ ACE_Cache_Map_Manager<ACE_T2>::find (const KEY &key, { int result = this->caching_strategy_.notify_find (find_result, - cache_value.second ()); + cache_value.second); // Unless the find and notification operations go thru, this // method is not successful. @@ -301,7 +301,7 @@ ACE_Cache_Map_Manager<ACE_T2>::find (const KEY &key, if (rebind_result == -1) find_result = -1; else - value = cache_value.first (); + value = cache_value.first; } @@ -361,7 +361,7 @@ ACE_Cache_Map_Manager<ACE_T2>::unbind (const KEY &key) { int result = this->caching_strategy_.notify_unbind (unbind_result, - cache_value.second ()); + cache_value.second); if (result == -1) unbind_result = -1; diff --git a/dep/acelite/ace/Cache_Map_Manager_T.h b/dep/acelite/ace/Cache_Map_Manager_T.h index 060a8b38aac..3f11d92fdc1 100644 --- a/dep/acelite/ace/Cache_Map_Manager_T.h +++ b/dep/acelite/ace/Cache_Map_Manager_T.h @@ -4,7 +4,7 @@ /** * @file Cache_Map_Manager_T.h * - * $Id: Cache_Map_Manager_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Cache_Map_Manager_T.h 92097 2010-09-30 05:41:49Z msmit $ * * @author Kirthika Parameswaran <kirthika@cs.wustl.edu> */ @@ -91,7 +91,7 @@ public: * are used by the strategy and is transparent to the user of this * class. */ - typedef ACE_Pair<VALUE, ATTRIBUTES> CACHE_VALUE; + typedef std::pair<VALUE, ATTRIBUTES> CACHE_VALUE; // = Initialization and termination methods. @@ -251,10 +251,10 @@ public: // = Traits. /// The actual value mapped to the key in the cache. The <attributes> - /// are used by the strategy and is transperant to the cache user. + /// are used by the strategy and is transparent to the cache user. typedef ACE_Reference_Pair<KEY, VALUE> value_type; - typedef ACE_Pair <VALUE, ATTRIBUTES> + typedef std::pair <VALUE, ATTRIBUTES> CACHE_VALUE; // = Initialisation and termination methods. @@ -274,7 +274,7 @@ public: (const ACE_Cache_Map_Iterator<KEY, VALUE, IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> &rhs); - /// Comparision operators. + /// Comparison operators. bool operator== (const ACE_Cache_Map_Iterator<KEY, VALUE, IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> &rhs) const; bool operator!= (const ACE_Cache_Map_Iterator<KEY, VALUE, IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> &rhs) const; @@ -327,9 +327,9 @@ public: // = Traits. /// The actual value mapped to the key in the cache. The <attributes> - /// are used by the strategy and is transperant to the cache user. + /// are used by the strategy and is transparent to the cache user. typedef ACE_Reference_Pair<KEY, VALUE> value_type; - typedef ACE_Pair <VALUE, ATTRIBUTES> CACHE_VALUE; + typedef std::pair <VALUE, ATTRIBUTES> CACHE_VALUE; // = Initialisation and termination methods. @@ -348,7 +348,7 @@ public: (const ACE_Cache_Map_Reverse_Iterator<KEY, VALUE, REVERSE_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> &rhs); - /// Comparision operators. + /// Comparison operators. bool operator== (const ACE_Cache_Map_Reverse_Iterator<KEY, VALUE, REVERSE_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> &rhs) const; bool operator!= (const ACE_Cache_Map_Reverse_Iterator<KEY, VALUE, REVERSE_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> &rhs) const; diff --git a/dep/acelite/ace/Cache_Map_Manager_T.inl b/dep/acelite/ace/Cache_Map_Manager_T.inl index bcd48bd33e9..06378de046c 100644 --- a/dep/acelite/ace/Cache_Map_Manager_T.inl +++ b/dep/acelite/ace/Cache_Map_Manager_T.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -//$Id: Cache_Map_Manager_T.inl 80826 2008-03-04 14:51:23Z wotte $ +//$Id: Cache_Map_Manager_T.inl 92097 2010-09-30 05:41:49Z msmit $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -89,7 +89,7 @@ template <class KEY, class VALUE, class IMPLEMENTATION, class CACHING_STRATEGY, ACE_Cache_Map_Iterator<KEY, VALUE, IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES>::operator* (void) const { value_type retn ((*this->iterator_implementation_).ext_id_, - (*this->iterator_implementation_).int_id_.first ()); + (*this->iterator_implementation_).int_id_.first); return retn; } @@ -183,7 +183,7 @@ template <class KEY, class VALUE, class REVERSE_IMPLEMENTATION, class CACHING_ST ACE_Cache_Map_Reverse_Iterator<KEY, VALUE, REVERSE_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES>::operator* (void) const { value_type retv ((*this->reverse_iterator_implementation_).ext_id_, - (*this->reverse_iterator_implementation_).int_id_.first ()); + (*this->reverse_iterator_implementation_).int_id_.first); return retv; } diff --git a/dep/acelite/ace/Cached_Connect_Strategy_T.cpp b/dep/acelite/ace/Cached_Connect_Strategy_T.cpp index 077c6d6a9ae..738155a5784 100644 --- a/dep/acelite/ace/Cached_Connect_Strategy_T.cpp +++ b/dep/acelite/ace/Cached_Connect_Strategy_T.cpp @@ -1,4 +1,4 @@ -//$Id: Cached_Connect_Strategy_T.cpp 82771 2008-09-17 18:47:48Z johnnyw $ +//$Id: Cached_Connect_Strategy_T.cpp 92097 2010-09-30 05:41:49Z msmit $ #ifndef ACE_CACHED_CONNECT_STRATEGY_T_CPP #define ACE_CACHED_CONNECT_STRATEGY_T_CPP @@ -14,7 +14,6 @@ #include "ace/Service_Types.h" #include "ace/Thread_Manager.h" #include "ace/WFMO_Reactor.h" -#include "ace/Pair_T.h" #define ACE_T1 class SVC_HANDLER, ACE_PEER_CONNECTOR_1, class CACHING_STRATEGY, class ATTRIBUTES, class MUTEX #define ACE_T2 SVC_HANDLER, ACE_PEER_CONNECTOR_2, CACHING_STRATEGY, ATTRIBUTES, MUTEX @@ -54,7 +53,7 @@ ACE_Cached_Connect_Strategy_Ex<ACE_T2>::check_hint_i bool reuse_addr, int flags, int perms, - ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, ACE_Pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, + ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, std::pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, int &found) { ACE_UNUSED_ARG (remote_addr); @@ -77,8 +76,8 @@ ACE_Cached_Connect_Strategy_Ex<ACE_T2>::check_hint_i if (possible_entry->ext_id_.decrement () == 0) { // If refcount goes to zero, close down the svc_handler - possible_entry->int_id_.first ()->recycler (0, 0); - possible_entry->int_id_.first ()->close (); + possible_entry->int_id_.first->recycler (0, 0); + possible_entry->int_id_.first->close (); this->purge_i (possible_entry); } @@ -111,7 +110,7 @@ ACE_Cached_Connect_Strategy_Ex<ACE_T2>::check_hint_i int find_result = 0; int result = this->caching_strategy ().notify_find (find_result, - possible_entry->int_id_.second ()); + possible_entry->int_id_.second); if (result == -1) return result; @@ -144,7 +143,7 @@ ACE_Cached_Connect_Strategy_Ex<ACE_T2>::find_or_create_svc_handler_i bool reuse_addr, int flags, int perms, - ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, ACE_Pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, + ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, std::pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, int &found) { REFCOUNTED_HASH_RECYCLABLE_ADDRESS search_addr (remote_addr); @@ -155,7 +154,7 @@ ACE_Cached_Connect_Strategy_Ex<ACE_T2>::find_or_create_svc_handler_i { // We found a cached svc_handler. // Get the cached <svc_handler> - sh = entry->int_id_.first (); + sh = entry->int_id_.first; // Is the connection clean? int state_result = @@ -450,8 +449,8 @@ ACE_Cached_Connect_Strategy_Ex<ACE_T2>::cleanup_hint_i (const void *recycling_ac if (entry->ext_id_.recycle_state () == ACE_RECYCLABLE_CLOSED && refcount == 0) { - entry->int_id_.first ()->recycler (0, 0); - entry->int_id_.first ()->close (); + entry->int_id_.first->recycler (0, 0); + entry->int_id_.first->close (); this->purge_i (entry); } @@ -472,10 +471,10 @@ ACE_Cached_Connect_Strategy_Ex<ACE_T2>::caching_strategy (void) template <ACE_T1> int ACE_Cached_Connect_Strategy_Ex<ACE_T2>::find (ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR> &search_addr, - ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, ACE_Pair<SVC_HANDLER *, ATTRIBUTES> > *&entry) + ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, std::pair<SVC_HANDLER *, ATTRIBUTES> > *&entry) { typedef ACE_Hash_Map_Bucket_Iterator<REFCOUNTED_HASH_RECYCLABLE_ADDRESS, - ACE_Pair<SVC_HANDLER *, ATTRIBUTES>, + std::pair<SVC_HANDLER *, ATTRIBUTES>, ACE_Hash<REFCOUNTED_HASH_RECYCLABLE_ADDRESS>, ACE_Equal_To<REFCOUNTED_HASH_RECYCLABLE_ADDRESS>, ACE_Null_Mutex> @@ -512,7 +511,7 @@ ACE_Cached_Connect_Strategy_Ex<ACE_T2>::find (ACE_Refcounted_Hash_Recyclable<ACE int find_result = 0; int result = this->caching_strategy ().notify_find (find_result, - entry->int_id_.second ()); + entry->int_id_.second); if (result == -1) return result; @@ -591,7 +590,7 @@ ACE_Bounded_Cached_Connect_Strategy<ACE_T2>::find_or_create_svc_handler_i int flags, int perms, ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, - ACE_Pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, + std::pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, int &found) { diff --git a/dep/acelite/ace/Cached_Connect_Strategy_T.h b/dep/acelite/ace/Cached_Connect_Strategy_T.h index e95218f60fc..12c5485cebe 100644 --- a/dep/acelite/ace/Cached_Connect_Strategy_T.h +++ b/dep/acelite/ace/Cached_Connect_Strategy_T.h @@ -4,7 +4,7 @@ /** * @file Cached_Connect_Strategy_T.h * - * $Id: Cached_Connect_Strategy_T.h 91077 2010-07-13 14:33:08Z johnnyw $ + * $Id: Cached_Connect_Strategy_T.h 92097 2010-09-30 05:41:49Z msmit $ * * @author Kirthika Parameswaran <kirthika@cs.wustl.edu> */ @@ -90,9 +90,9 @@ public: typedef typename CONNECTION_CACHE::mapped_type VALUE; typedef ACE_Recyclable_Handler_Cleanup_Strategy<REFCOUNTED_HASH_RECYCLABLE_ADDRESS, - ACE_Pair<SVC_HANDLER *, ATTRIBUTES>, + std::pair<SVC_HANDLER *, ATTRIBUTES>, ACE_Hash_Map_Manager_Ex<REFCOUNTED_HASH_RECYCLABLE_ADDRESS, - ACE_Pair<SVC_HANDLER *, ATTRIBUTES>, + std::pair<SVC_HANDLER *, ATTRIBUTES>, ACE_Hash<REFCOUNTED_HASH_RECYCLABLE_ADDRESS>, ACE_Equal_To<REFCOUNTED_HASH_RECYCLABLE_ADDRESS>, MUTEX> > @@ -108,7 +108,7 @@ protected: /// Find an idle handle. int find (ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR> &search_addr, - ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, ACE_Pair<SVC_HANDLER *, ATTRIBUTES> > *&entry); + ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, std::pair<SVC_HANDLER *, ATTRIBUTES> > *&entry); /// Remove from cache (non-locking version). virtual int purge_i (const void *recycling_act); @@ -133,7 +133,7 @@ protected: bool reuse_addr, int flags, int perms, - ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, ACE_Pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, + ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, std::pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, int &found); virtual int find_or_create_svc_handler_i (SVC_HANDLER *&sh, @@ -143,7 +143,7 @@ protected: bool reuse_addr, int flags, int perms, - ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, ACE_Pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, + ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, std::pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, int &found); virtual int connect_svc_handler_i (SVC_HANDLER *&sh, @@ -240,7 +240,7 @@ protected: int flags, int perms, ACE_Hash_Map_Entry<ACE_Refcounted_Hash_Recyclable<ACE_PEER_CONNECTOR_ADDR>, - ACE_Pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, + std::pair<SVC_HANDLER *, ATTRIBUTES> > *&entry, int &found); protected: diff --git a/dep/acelite/ace/Caching_Strategies_T.h b/dep/acelite/ace/Caching_Strategies_T.h index e4b0817aa26..48f5e898e71 100644 --- a/dep/acelite/ace/Caching_Strategies_T.h +++ b/dep/acelite/ace/Caching_Strategies_T.h @@ -4,7 +4,7 @@ /** * @file Caching_Strategies_T.h * - * $Id: Caching_Strategies_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Caching_Strategies_T.h 92097 2010-09-30 05:41:49Z msmit $ * * @author Kirthika Parameswaran <kirthika@cs.wustl.edu> */ @@ -191,7 +191,7 @@ private: * The ATTRIBUTES are the deciding factor for purging of entries * and should logically be included with the VALUE. Some ways of * doing this are: As being a member of the VALUE or VALUE being - * ACE_Pair<x, ATTRIBUTES>. The CACHING_UTILITY is the + * std::pair<x, ATTRIBUTES>. The CACHING_UTILITY is the * class which can be plugged in and which decides the entries * to purge. */ @@ -291,7 +291,7 @@ private: * The ATTRIBUTES are the deciding factor for purging of entries * and should logically be included with the VALUE. Some ways of * doing this are: As being a member of the VALUE or VALUE being - * ACE_Pair<x, ATTRIBUTES>. The CACHING_UTILITY is the + * std::pair<x, ATTRIBUTES>. The CACHING_UTILITY is the * class which can be plugged in and which decides the entries * to purge. */ @@ -384,7 +384,7 @@ private: * The ATTRIBUTES are the deciding factor for purging of entries * and should logically be included with the VALUE. Some ways of * doing this are: As being a member of the VALUE or VALUE being - * ACE_Pair<x, ATTRIBUTES>. The CACHING_UTILITY is the + * std::pair<x, ATTRIBUTES>. The CACHING_UTILITY is the * class which can be plugged in and which decides the entries * to purge. */ diff --git a/dep/acelite/ace/Caching_Utility_T.cpp b/dep/acelite/ace/Caching_Utility_T.cpp index a03a4575891..4713c974bc7 100644 --- a/dep/acelite/ace/Caching_Utility_T.cpp +++ b/dep/acelite/ace/Caching_Utility_T.cpp @@ -1,4 +1,4 @@ -// $Id: Caching_Utility_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Caching_Utility_T.cpp 92264 2010-10-19 18:12:46Z olli $ #ifndef ACE_CACHING_UTILITY_T_CPP #define ACE_CACHING_UTILITY_T_CPP @@ -9,6 +9,7 @@ #pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ +#include "ace/ACE.h" #include "ace/Min_Max.h" #include "ace/OS_Memory.h" #include "ace/Recyclable.h" @@ -19,7 +20,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> ACE_Pair_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::ACE_Pair_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy, - int delete_cleanup_strategy) + bool delete_cleanup_strategy) : cleanup_strategy_ (cleanup_strategy), delete_cleanup_strategy_ (delete_cleanup_strategy) { @@ -27,7 +28,7 @@ ACE_Pair_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::ACE_Pair_ { ACE_NEW (this->cleanup_strategy_, CLEANUP_STRATEGY); - this->delete_cleanup_strategy_ = 1; + this->delete_cleanup_strategy_ = true; } } @@ -43,7 +44,7 @@ ACE_Pair_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::clear_cac double purge_percent) { // Check that the purge_percent is non-zero. - if (purge_percent == 0) + if (ACE::is_equal (purge_percent, 0.0)) return 0; // Get the number of entries in the container. @@ -94,7 +95,7 @@ ACE_Pair_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::minimum ( // Starting values. ITERATOR iter = container.begin (); ITERATOR end = container.end (); - ATTRIBUTES min = (*iter).int_id_.second (); + ATTRIBUTES min = (*iter).int_id_.second; key_to_remove = &(*iter).ext_id_; value_to_remove = &(*iter).int_id_; @@ -104,10 +105,10 @@ ACE_Pair_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::minimum ( iter != end; ++iter) { - if (min > (*iter).int_id_.second ()) + if (min > (*iter).int_id_.second) { // Ah! an item with lower ATTTRIBUTES... - min = (*iter).int_id_.second (); + min = (*iter).int_id_.second; key_to_remove = &(*iter).ext_id_; value_to_remove = &(*iter).int_id_; } @@ -118,7 +119,7 @@ ACE_Pair_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::minimum ( template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> ACE_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::ACE_Recyclable_Handler_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy, - int delete_cleanup_strategy) + bool delete_cleanup_strategy) : cleanup_strategy_ (cleanup_strategy), delete_cleanup_strategy_ (delete_cleanup_strategy) { @@ -126,7 +127,7 @@ ACE_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUT { ACE_NEW (this->cleanup_strategy_, CLEANUP_STRATEGY); - this->delete_cleanup_strategy_ = 1; + this->delete_cleanup_strategy_ = true; } } @@ -142,7 +143,7 @@ ACE_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUT double purge_percent) { // Check that the purge_percent is non-zero. - if (purge_percent == 0) + if (ACE::is_equal (purge_percent, 0.0)) return 0; // Get the number of entries in the container. @@ -194,7 +195,7 @@ ACE_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUT // Starting values. ITERATOR end = container.end (); ITERATOR iter = container.begin (); - ATTRIBUTES min = (*iter).int_id_.second (); + ATTRIBUTES min = (*iter).int_id_.second; key_to_remove = 0; value_to_remove = 0; // Found the minimum entry to be purged? @@ -214,7 +215,7 @@ ACE_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUT { if (found == 0) { - min = (*iter).int_id_.second (); + min = (*iter).int_id_.second; key_to_remove = &(*iter).ext_id_; value_to_remove = &(*iter).int_id_; found = 1; @@ -222,9 +223,9 @@ ACE_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUT else { // Ah! an entry with lower ATTTRIBUTES... - if (min > (*iter).int_id_.second ()) + if (min > (*iter).int_id_.second) { - min = (*iter).int_id_.second (); + min = (*iter).int_id_.second; key_to_remove = &(*iter).ext_id_; value_to_remove = &(*iter).int_id_; } @@ -237,7 +238,7 @@ ACE_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUT template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> ACE_Refcounted_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::ACE_Refcounted_Recyclable_Handler_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy, - int delete_cleanup_strategy) + bool delete_cleanup_strategy) : cleanup_strategy_ (cleanup_strategy), delete_cleanup_strategy_ (delete_cleanup_strategy), marked_as_closed_entries_ (0) @@ -246,7 +247,7 @@ ACE_Refcounted_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATO { ACE_NEW (this->cleanup_strategy_, CLEANUP_STRATEGY); - this->delete_cleanup_strategy_ = 1; + this->delete_cleanup_strategy_ = true; } } @@ -262,7 +263,7 @@ ACE_Refcounted_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATO double purge_percent) { // Check that the purge_percent is non-zero. - if (purge_percent == 0) + if (ACE::is_equal (purge_percent, 0.0)) return 0; // Get the number of entries in the container which can be considered for purging. @@ -362,7 +363,7 @@ ACE_Refcounted_Recyclable_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATO template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> ACE_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::ACE_Handler_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy, - int delete_cleanup_strategy) + bool delete_cleanup_strategy) : cleanup_strategy_ (cleanup_strategy), delete_cleanup_strategy_ (delete_cleanup_strategy) { @@ -370,7 +371,7 @@ ACE_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::ACE_Ha { ACE_NEW (this->cleanup_strategy_, CLEANUP_STRATEGY); - this->delete_cleanup_strategy_ = 1; + this->delete_cleanup_strategy_ = true; } } @@ -386,7 +387,7 @@ ACE_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::clear_ double purge_percent) { // Check that the purge_percent is non-zero. - if (purge_percent == 0) + if (ACE::is_equal (purge_percent, 0.0)) return 0; // Get the number of entries in the container. @@ -455,7 +456,7 @@ ACE_Handler_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::minimu template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> ACE_Null_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::ACE_Null_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy, - int delete_cleanup_strategy) + bool delete_cleanup_strategy) : cleanup_strategy_ (cleanup_strategy), delete_cleanup_strategy_ (delete_cleanup_strategy) { @@ -463,7 +464,7 @@ ACE_Null_Caching_Utility<KEY, VALUE, CONTAINER, ITERATOR, ATTRIBUTES>::ACE_Null_ { ACE_NEW (this->cleanup_strategy_, CLEANUP_STRATEGY); - this->delete_cleanup_strategy_ = 1; + this->delete_cleanup_strategy_ = true; } } diff --git a/dep/acelite/ace/Caching_Utility_T.h b/dep/acelite/ace/Caching_Utility_T.h index 5428682d099..9340d73ac64 100644 --- a/dep/acelite/ace/Caching_Utility_T.h +++ b/dep/acelite/ace/Caching_Utility_T.h @@ -4,7 +4,7 @@ /** * @file Caching_Utility_T.h * - * $Id: Caching_Utility_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Caching_Utility_T.h 92085 2010-09-29 12:23:13Z johnnyw $ * * @author Kirthika Parameswaran <kirthika@cs.wustl.edu> */ @@ -23,9 +23,7 @@ #include "ace/Global_Macros.h" #include "ace/Cleanup_Strategies_T.h" - -// For linkers that cant grok long names. -#define ACE_Pair_Caching_Utility APUTIL +#include "ace/Copy_Disabled.h" ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -44,7 +42,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * entries to be cleaned up will be delegated. */ template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> -class ACE_Pair_Caching_Utility +class ACE_Pair_Caching_Utility : private ACE_Copy_Disabled { public: @@ -52,7 +50,7 @@ public: /// Constructor. ACE_Pair_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy = 0, - int delete_cleanup_strategy = 0); + bool delete_cleanup_strategy = false); /// Destructor. ~ACE_Pair_Caching_Utility (void); @@ -61,8 +59,7 @@ public: * Purge entries from the @a container. The Cleanup_Strategy will do the * actual job of cleanup once the entries to be cleaned up are decided. */ - int clear_cache (CONTAINER &container, - double purge_percent); + int clear_cache (CONTAINER &container, double purge_percent); protected: @@ -76,15 +73,9 @@ protected: CLEANUP_STRATEGY *cleanup_strategy_; /// Whether the cleanup_strategy should be destroyed or not. - int delete_cleanup_strategy_; - - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Pair_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Pair_Caching_Utility (const ACE_Pair_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) + bool delete_cleanup_strategy_; }; -//////////////////////////////////////////////////////////////////////////////// -#define ACE_Recyclable_Handler_Caching_Utility ARHUTIL - /** * @class ACE_Recyclable_Handler_Caching_Utility * @@ -100,7 +91,7 @@ protected: * be cleaned up will be delegated. */ template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> -class ACE_Recyclable_Handler_Caching_Utility +class ACE_Recyclable_Handler_Caching_Utility : private ACE_Copy_Disabled { public: @@ -110,7 +101,7 @@ public: /// Constructor. ACE_Recyclable_Handler_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy = 0, - int delete_cleanup_strategy = 0); + bool delete_cleanup_strategy = false); /// Destructor. ~ACE_Recyclable_Handler_Caching_Utility (void); @@ -134,16 +125,9 @@ protected: CLEANUP_STRATEGY_BASE *cleanup_strategy_; /// Whether the cleanup_strategy should be destroyed or not. - int delete_cleanup_strategy_; - -private: - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Recyclable_Handler_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Recyclable_Handler_Caching_Utility (const ACE_Recyclable_Handler_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) + bool delete_cleanup_strategy_; }; -/////////////////////////////////////////////////////////////////////////// -#define ACE_Refcounted_Recyclable_Handler_Caching_Utility ARRHUTIL - /** * @class ACE_Refcounted_Recyclable_Handler_Caching_Utility * @@ -160,17 +144,15 @@ private: * delegated. */ template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> -class ACE_Refcounted_Recyclable_Handler_Caching_Utility +class ACE_Refcounted_Recyclable_Handler_Caching_Utility : private ACE_Copy_Disabled { - public: - typedef ACE_Refcounted_Recyclable_Handler_Cleanup_Strategy<KEY, VALUE, CONTAINER> CLEANUP_STRATEGY; typedef ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> CLEANUP_STRATEGY_BASE; /// Constructor. ACE_Refcounted_Recyclable_Handler_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy = 0, - int delete_cleanup_strategy = 0); + bool delete_cleanup_strategy = false); /// Destructor. ~ACE_Refcounted_Recyclable_Handler_Caching_Utility (void); @@ -194,7 +176,7 @@ protected: CLEANUP_STRATEGY_BASE *cleanup_strategy_; /// Whether the cleanup_strategy should be destroyed or not. - int delete_cleanup_strategy_; + bool delete_cleanup_strategy_; /** * This figure denotes the number of entries are there in the @@ -202,14 +184,8 @@ protected: * not have been unbound from the container. */ size_t marked_as_closed_entries_; - -private: - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Refcounted_Recyclable_Handler_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Refcounted_Recyclable_Handler_Caching_Utility (const ACE_Refcounted_Recyclable_Handler_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) }; -//////////////////////////////////////////////////////////////////////////////////////// - /** * @class ACE_Handler_Caching_Utility * @@ -225,7 +201,7 @@ private: * class to which the entries to be cleaned up will be delegated. */ template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> -class ACE_Handler_Caching_Utility +class ACE_Handler_Caching_Utility : private ACE_Copy_Disabled { public: @@ -234,7 +210,7 @@ public: /// Constructor. ACE_Handler_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy = 0, - int delete_cleanup_strategy = 0); + bool delete_cleanup_strategy = false); /// Destructor. ~ACE_Handler_Caching_Utility (void); @@ -264,15 +240,9 @@ protected: CLEANUP_STRATEGY_BASE *cleanup_strategy_; /// Whether the cleanup_strategy should be destroyed or not. - int delete_cleanup_strategy_; - -private: - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Handler_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Handler_Caching_Utility (const ACE_Handler_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) + bool delete_cleanup_strategy_; }; -/////////////////////////////////////////////////////////////////////////// -#define ACE_Null_Caching_Utility ANUTIL /** * @class ACE_Null_Caching_Utility * @@ -286,7 +256,7 @@ private: * be cleaned up will be delegated. */ template <class KEY, class VALUE, class CONTAINER, class ITERATOR, class ATTRIBUTES> -class ACE_Null_Caching_Utility +class ACE_Null_Caching_Utility : private ACE_Copy_Disabled { public: @@ -295,7 +265,7 @@ public: /// Constructor. ACE_Null_Caching_Utility (ACE_Cleanup_Strategy<KEY, VALUE, CONTAINER> *cleanup_strategy = 0, - int delete_cleanup_strategy = 0); + bool delete_cleanup_strategy = false); /// Destructor. ~ACE_Null_Caching_Utility (void); @@ -325,11 +295,7 @@ protected: CLEANUP_STRATEGY_BASE *cleanup_strategy_; /// Whether the cleanup_strategy should be destroyed or not. - int delete_cleanup_strategy_; - -private: - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Null_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Null_Caching_Utility (const ACE_Null_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &)) + bool delete_cleanup_strategy_; }; ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Capabilities.cpp b/dep/acelite/ace/Capabilities.cpp index 5d46e75472a..7533f15f0d2 100644 --- a/dep/acelite/ace/Capabilities.cpp +++ b/dep/acelite/ace/Capabilities.cpp @@ -1,3 +1,5 @@ +// $Id: Capabilities.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Capabilities.h" #include "ace/OS_NS_ctype.h" #include "ace/OS_Memory.h" @@ -9,11 +11,6 @@ #include "ace/OS_NS_stdio.h" -ACE_RCSID (ace, - Capabilities, - "$Id: Capabilities.cpp 80826 2008-03-04 14:51:23Z wotte $") - - #define ACE_ESC ((ACE_TCHAR)0x1b) ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Cleanup.cpp b/dep/acelite/ace/Cleanup.cpp index 5c7317ed4da..1d5fe99f0c1 100644 --- a/dep/acelite/ace/Cleanup.cpp +++ b/dep/acelite/ace/Cleanup.cpp @@ -1,11 +1,7 @@ -// $Id: Cleanup.cpp 84201 2009-01-20 06:26:02Z johnnyw $ +// $Id: Cleanup.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Cleanup.h" -ACE_RCSID (ace, - Cleanup, - "$Id: Cleanup.cpp 84201 2009-01-20 06:26:02Z johnnyw $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/Cleanup.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/Cleanup_Strategies_T.cpp b/dep/acelite/ace/Cleanup_Strategies_T.cpp index 32965993774..7ce542e2843 100644 --- a/dep/acelite/ace/Cleanup_Strategies_T.cpp +++ b/dep/acelite/ace/Cleanup_Strategies_T.cpp @@ -1,4 +1,4 @@ -//$Id: Cleanup_Strategies_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +//$Id: Cleanup_Strategies_T.cpp 92097 2010-09-30 05:41:49Z msmit $ #ifndef ACE_CLEANUP_STRATEGIES_T_CPP #define ACE_CLEANUP_STRATEGIES_T_CPP @@ -39,9 +39,9 @@ ACE_Recyclable_Handler_Cleanup_Strategy<KEY, VALUE, CONTAINER>::cleanup ( if (container.unbind (*key, value) == -1) return -1; - value.first ()->recycler (0, 0); + value.first->recycler (0, 0); - value.first ()->close (); + value.first->close (); return 0; } diff --git a/dep/acelite/ace/Codecs.cpp b/dep/acelite/ace/Codecs.cpp index 71491fe1c44..f7107114aed 100644 --- a/dep/acelite/ace/Codecs.cpp +++ b/dep/acelite/ace/Codecs.cpp @@ -1,12 +1,10 @@ +// $Id: Codecs.cpp 91813 2010-09-17 07:52:52Z johnnyw $ + #include "ace/Codecs.h" #include "ace/Log_Msg.h" #include "ace/OS_Memory.h" #include "ace/OS_NS_ctype.h" -ACE_RCSID (ace, - Codecs, - "$Id: Codecs.cpp 80826 2008-03-04 14:51:23Z wotte $") - namespace { // Just in case ... @@ -71,7 +69,7 @@ ACE_Base64::encode (const ACE_Byte* input, result[pos++] = alphabet[bits & 0x3f]; cols += 4; if (cols == max_columns) { - if (is_chunked) + if (is_chunked) result[pos++] = '\n'; cols = 0; } diff --git a/dep/acelite/ace/Codeset_IBM1047.cpp b/dep/acelite/ace/Codeset_IBM1047.cpp index 91582cf4ef3..3f5bad0b7c5 100644 --- a/dep/acelite/ace/Codeset_IBM1047.cpp +++ b/dep/acelite/ace/Codeset_IBM1047.cpp @@ -3,7 +3,7 @@ /** * @file Codeset_IBM1047.cpp * - * $Id: Codeset_IBM1047.cpp 81661 2008-05-09 12:05:34Z johnnyw $ + * $Id: Codeset_IBM1047.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * Defines the arrays required to convert between ISO8859 (aka * Latin/1) and IBM1047 (aka EBCDIC). @@ -18,10 +18,6 @@ #if defined (ACE_HAS_EBCDIC) -ACE_RCSID (ace, - Codeset_IBM1047, - "$Id: Codeset_IBM1047.cpp 81661 2008-05-09 12:05:34Z johnnyw $") - #include "ace/OS_Memory.h" #include "ace/OS_NS_string.h" diff --git a/dep/acelite/ace/Codeset_Registry.cpp b/dep/acelite/ace/Codeset_Registry.cpp index c23ef37231a..6c132a88081 100644 --- a/dep/acelite/ace/Codeset_Registry.cpp +++ b/dep/acelite/ace/Codeset_Registry.cpp @@ -2,7 +2,7 @@ /** * @file Codeset_Registry.cpp * - * $Id: Codeset_Registry.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Codeset_Registry.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * emulated codset regstry functions * @@ -15,16 +15,12 @@ #include "ace/OS_Memory.h" #include "ace/OS_NS_string.h" -// $Id: Codeset_Registry.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Codeset_Registry.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #if !defined (__ACE_INLINE__) #include "ace/Codeset_Registry.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Codeset_Registry, - "$Id: Codeset_Registry.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL int diff --git a/dep/acelite/ace/Condition_Thread_Mutex.cpp b/dep/acelite/ace/Condition_Thread_Mutex.cpp index c9f2620e432..88e99702d0f 100644 --- a/dep/acelite/ace/Condition_Thread_Mutex.cpp +++ b/dep/acelite/ace/Condition_Thread_Mutex.cpp @@ -2,7 +2,7 @@ /** * @file Condition_Thread_Mutex.cpp * - * $Id: Condition_Thread_Mutex.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Condition_Thread_Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * Originally in Synch.cpp * @@ -19,7 +19,7 @@ #include "ace/Log_Msg.h" -ACE_RCSID(ace, Condition_Thread_Mutex, "$Id: Condition_Thread_Mutex.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Condition_Thread_Mutex.h b/dep/acelite/ace/Condition_Thread_Mutex.h index 693ff0820aa..1ba866d2eb0 100644 --- a/dep/acelite/ace/Condition_Thread_Mutex.h +++ b/dep/acelite/ace/Condition_Thread_Mutex.h @@ -4,7 +4,7 @@ /** * @file Condition_Thread_Mutex.h * - * $Id: Condition_Thread_Mutex.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Condition_Thread_Mutex.h 92069 2010-09-28 11:38:59Z johnnyw $ * * Moved from Synch.h. * @@ -154,30 +154,6 @@ private: ACE_Condition_Thread_Mutex (const ACE_Condition_Thread_Mutex &); }; -#if 0 -// The following class is commented out since there doesn't -// appear to be a portable and robust means of implementing this -// functionality across platforms. If you know of a portable and -// robust way to implement this functionality please let us know. - -/** - * @class ACE_Process_Condition - * - * @brief ACE_Condition variable wrapper that works across processes. - */ -class ACE_Export ACE_Process_Condition -{ -public: - ACE_Process_Condition (MUTEX &m, const ACE_TCHAR *name = 0, void *arg = 0); - - /// Dump the state of an object. - void dump (void) const; - - // ACE_ALLOC_HOOK_DECLARE; - // Declare the dynamic allocation hooks. -}; -#endif /* 0 */ - ACE_END_VERSIONED_NAMESPACE_DECL #if defined (__ACE_INLINE__) diff --git a/dep/acelite/ace/Condition_Thread_Mutex.inl b/dep/acelite/ace/Condition_Thread_Mutex.inl index 851269e4af6..712a8be0251 100644 --- a/dep/acelite/ace/Condition_Thread_Mutex.inl +++ b/dep/acelite/ace/Condition_Thread_Mutex.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Condition_Thread_Mutex.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Condition_Thread_Mutex.inl 92069 2010-09-28 11:38:59Z johnnyw $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -50,25 +50,4 @@ ACE_Condition_Thread_Mutex::mutex (void) return this->mutex_; } -#if 0 -template <class MUTEX> void -ACE_Process_Condition<MUTEX>::dump (void) const -{ -#if defined (ACE_HAS_DUMP) -// ACE_TRACE ("ACE_Process_Condition<MUTEX>::dump"); - - ACE_Condition<MUTEX>::dump (); -#endif /* ACE_HAS_DUMP */ -} - -template <class MUTEX> -ACE_Process_Condition<MUTEX>::ACE_Process_Condition (MUTEX &m, - const ACE_TCHAR *name, - void *arg) - : ACE_Condition<MUTEX> (m, USYNC_PROCESS, name, arg) -{ -// ACE_TRACE ("ACE_Process_Condition<MUTEX>::ACE_Process_Condition"); -} -#endif /* 0 */ - ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Configuration.cpp b/dep/acelite/ace/Configuration.cpp index 1914f2dc651..4e0a1749e92 100644 --- a/dep/acelite/ace/Configuration.cpp +++ b/dep/acelite/ace/Configuration.cpp @@ -1,4 +1,4 @@ -// $Id: Configuration.cpp 86348 2009-08-04 14:45:29Z shuston $ +// $Id: Configuration.cpp 91688 2010-09-09 11:21:50Z johnnyw $ #include "ace/Configuration.h" #include "ace/Auto_Ptr.h" #include "ace/SString.h" @@ -6,10 +6,6 @@ #include "ace/OS_NS_strings.h" #include "ace/Tokenizer_T.h" -// Can remove this when import_config and export_config are removed from -// ACE_Configuration. They're deprecated at ACE 5.2. -#include "ace/Configuration_Import_Export.h" - #if !defined (ACE_LACKS_ACCESS) # include "ace/OS_NS_unistd.h" #endif /* ACE_LACKS_ACCESS */ @@ -135,22 +131,6 @@ ACE_Configuration::expand_path (const ACE_Configuration_Section_Key& key, } -// import_config and export_config are here for backward compatibility, -// and have been deprecated. -int -ACE_Configuration::export_config (const ACE_TCHAR* filename) -{ - ACE_Registry_ImpExp exporter (*this); - return exporter.export_config (filename); -} - -int -ACE_Configuration::import_config (const ACE_TCHAR* filename) -{ - ACE_Registry_ImpExp importer (*this); - return importer.import_config (filename); -} - int ACE_Configuration::validate_name (const ACE_TCHAR* name, int allow_path) { diff --git a/dep/acelite/ace/Configuration.h b/dep/acelite/ace/Configuration.h index 3543619017e..4c931e6abed 100644 --- a/dep/acelite/ace/Configuration.h +++ b/dep/acelite/ace/Configuration.h @@ -4,7 +4,7 @@ /** * @file Configuration.h * - * $Id: Configuration.h 86348 2009-08-04 14:45:29Z shuston $ + * $Id: Configuration.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Chris Hafey <chafey@stentor.com> * @@ -360,22 +360,6 @@ public: int create = 1); /** - * @deprecated Exports the configuration database to filename. - * If @a filename is already present, it is overwritten. This function is - * deprecated and will be removed in a future version of ACE. Please use - * either ACE_Registry_ImpExp or ACE_Ini_ImpExp instead. - */ - int export_config (const ACE_TCHAR* filename); - - /** - * @deprecated Imports the configuration database from filename. Any - * existing data is not removed. This function is deprecated and will be - * removed in a future version of ACE. Please use ACE_Registry_ImpExp - * or ACE_Ini_ImpExp instead. - */ - int import_config (const ACE_TCHAR* filename); - - /** * Determine if the contents of this object is the same as the * contents of the object on the right hand side. * Returns true if they are equal and false if they are not equal @@ -619,9 +603,6 @@ typedef ACE_Hash_Map_Manager_Ex<ACE_Configuration_ExtId, ACE_Null_Mutex> SUBSECTION_HASH; -/// @deprecated Deprecated typedef. Use the SUBSECTION_HASH::ENTRY trait instead. -typedef SUBSECTION_HASH::ENTRY SUBSECTION_ENTRY; - /** * @class ACE_Configuration_Value_IntId * diff --git a/dep/acelite/ace/Connection_Recycling_Strategy.cpp b/dep/acelite/ace/Connection_Recycling_Strategy.cpp index 78b08884340..cab307de8a3 100644 --- a/dep/acelite/ace/Connection_Recycling_Strategy.cpp +++ b/dep/acelite/ace/Connection_Recycling_Strategy.cpp @@ -1,8 +1,6 @@ -#include "ace/Connection_Recycling_Strategy.h" - - -ACE_RCSID(ace, Connection_Recycling_Strategy, "$Id: Connection_Recycling_Strategy.cpp 80826 2008-03-04 14:51:23Z wotte $") +// $Id: Connection_Recycling_Strategy.cpp 91287 2010-08-05 10:30:49Z johnnyw $ +#include "ace/Connection_Recycling_Strategy.h" ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Connector.cpp b/dep/acelite/ace/Connector.cpp index 820ca875c16..3a1edfc881a 100644 --- a/dep/acelite/ace/Connector.cpp +++ b/dep/acelite/ace/Connector.cpp @@ -1,4 +1,4 @@ -// $Id: Connector.cpp 89510 2010-03-17 12:21:14Z vzykov $ +// $Id: Connector.cpp 91527 2010-08-27 15:03:31Z shuston $ #ifndef ACE_CONNECTOR_CPP #define ACE_CONNECTOR_CPP @@ -121,9 +121,9 @@ ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::close (SVC_HANDLER *&sh) return false; // Remove from Reactor. - if (this->reactor ()->remove_handler ( + if (-1 == this->reactor ()->remove_handler ( h, - ACE_Event_Handler::ALL_EVENTS_MASK) == -1) + ACE_Event_Handler::ALL_EVENTS_MASK | ACE_Event_Handler::DONT_CALL)) return false; } @@ -174,6 +174,20 @@ ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_input (ACE_HANDLE) } template <class SVC_HANDLER> int +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_close (ACE_HANDLE handle, + ACE_Reactor_Mask m) +{ + // epoll on Linux will, at least sometimes, return EPOLLERR when a connect + // fails, triggering a total removal from the reactor. This is different from + // select()-based systems which select the fd for read on a connect failure. + // So just call handle_input() to rejoin common handling for a failed + // connect. + if (m == ACE_Event_Handler::ALL_EVENTS_MASK) + return this->handle_input (handle); + return -1; +} + +template <class SVC_HANDLER> int ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_output (ACE_HANDLE handle) { // Called when a connection is establishment asynchronous. diff --git a/dep/acelite/ace/Connector.h b/dep/acelite/ace/Connector.h index d0b98cfa923..320867852ae 100644 --- a/dep/acelite/ace/Connector.h +++ b/dep/acelite/ace/Connector.h @@ -4,7 +4,7 @@ /** * @file Connector.h * - * $Id: Connector.h 91058 2010-07-12 08:20:09Z johnnyw $ + * $Id: Connector.h 91527 2010-08-27 15:03:31Z shuston $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -102,6 +102,9 @@ public: /// Called by ACE_Reactor when asynchronous connections fail. virtual int handle_input (ACE_HANDLE); + /// Called by ACE_Dev_Poll_Reactor when asynchronous connections fail. + virtual int handle_close (ACE_HANDLE, ACE_Reactor_Mask); + /// Called by ACE_Reactor when asynchronous connections succeed. virtual int handle_output (ACE_HANDLE); diff --git a/dep/acelite/ace/Containers.cpp b/dep/acelite/ace/Containers.cpp index 244a9ad4b1b..5a8ef29f948 100644 --- a/dep/acelite/ace/Containers.cpp +++ b/dep/acelite/ace/Containers.cpp @@ -1,11 +1,7 @@ -// $Id: Containers.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Containers.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Containers.h" -ACE_RCSID (ace, - Containers, - "$Id: Containers.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (__ACE_INLINE__) #include "ace/Containers.inl" #endif /* __ACE_INLINE__ */ diff --git a/dep/acelite/ace/Containers_T.cpp b/dep/acelite/ace/Containers_T.cpp index f4b6bd8a7f0..411b26dc834 100644 --- a/dep/acelite/ace/Containers_T.cpp +++ b/dep/acelite/ace/Containers_T.cpp @@ -1,4 +1,4 @@ -// $Id: Containers_T.cpp 82588 2008-08-11 13:37:41Z johnnyw $ +// $Id: Containers_T.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #ifndef ACE_CONTAINERS_T_CPP #define ACE_CONTAINERS_T_CPP @@ -796,35 +796,6 @@ ACE_Double_Linked_List<T>::dump (void) const #endif /* ACE_HAS_DUMP */ } -#if 0 -template <class T> T * -ACE_Double_Linked_List<T>::find (const T &item) -{ - for (ACE_Double_Linked_List_Iterator<T> iter (*this); - !iter.done (); - iter.advance ()) - { - T *temp = iter.next (); - - if (*temp == item) - return temp; - } - - return 0; -} - -template <class T> int -ACE_Double_Linked_List<T>::remove (const T &item) -{ - T *temp = this->find (item); - - if (temp != 0) - return this->remove (temp); - else - return -1; -} -#endif /* 0 */ - template <class T> int ACE_Double_Linked_List<T>::remove (T *n) { @@ -1621,7 +1592,7 @@ template <class T> int ACE_Ordered_MultiSet<T>::find (const T &item, ITERATOR &iter) const { - // search an occurance of item, using iterator's current position as a hint + // search an occurrence of item, using iterator's current position as a hint ACE_DNode<T> *node = iter.current_; int const result = locate (item, node, node); @@ -1779,7 +1750,7 @@ ACE_Ordered_MultiSet<T>::locate (const T &item, ACE_DNode<T> *start_position, return 0; } -// Looks for first occurance of <item> in the ordered set, using the +// Looks for first occurrence of <item> in the ordered set, using the // passed starting position as a hint: if there is such an instance, // it updates the new_position pointer to point to one such node and // returns 0; if there is no such node, then if there is a node before diff --git a/dep/acelite/ace/Containers_T.h b/dep/acelite/ace/Containers_T.h index 3f5463fe3d6..6e6c5bd34a0 100644 --- a/dep/acelite/ace/Containers_T.h +++ b/dep/acelite/ace/Containers_T.h @@ -4,7 +4,7 @@ /** * @file Containers_T.h * - * $Id: Containers_T.h 88975 2010-02-12 19:19:38Z johnnyw $ + * $Id: Containers_T.h 91995 2010-09-24 12:45:24Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -1920,7 +1920,7 @@ private: ACE_DNode<T> **new_position); /** - * Looks for first occurance of @a item in the ordered set, using the + * Looks for first occurrence of @a item in the ordered set, using the * passed starting position as a hint: if there is such an instance, it * updates the new_position pointer to point to this node and returns 0; * if there is no such node, then if there is a node before where the @@ -1994,7 +1994,7 @@ public: // Define a "trait" typedef T TYPE; typedef ACE_Array_Iterator<T> ITERATOR; - + /// Dynamically create an uninitialized array. /** * Initialize an empty array of the specified size using the provided diff --git a/dep/acelite/ace/Copy_Disabled.cpp b/dep/acelite/ace/Copy_Disabled.cpp index 6878311197d..f3fdfb71b93 100644 --- a/dep/acelite/ace/Copy_Disabled.cpp +++ b/dep/acelite/ace/Copy_Disabled.cpp @@ -1,19 +1,13 @@ /** * @file Copy_Disabled.cpp * - * $Id: Copy_Disabled.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Copy_Disabled.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * @author Carlos O'Ryan <coryan@uci.edu> */ #include "ace/Copy_Disabled.h" - -ACE_RCSID (ace, - Copy_Disabled, - "$Id: Copy_Disabled.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Copy_Disabled::ACE_Copy_Disabled (void) diff --git a/dep/acelite/ace/Countdown_Time.cpp b/dep/acelite/ace/Countdown_Time.cpp index d76a0fa4cf5..c964ab1138a 100644 --- a/dep/acelite/ace/Countdown_Time.cpp +++ b/dep/acelite/ace/Countdown_Time.cpp @@ -1,10 +1,8 @@ +// $Id: Countdown_Time.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Countdown_Time.h" #include "ace/OS_NS_sys_time.h" -ACE_RCSID (ace, - Countdown_Time, - "$Id: Countdown_Time.cpp 85382 2009-05-19 06:52:56Z johnnyw $") - #if !defined (__ACE_INLINE__) #include "ace/Countdown_Time.inl" #endif /* __ACE_INLINE__ */ diff --git a/dep/acelite/ace/DEV.cpp b/dep/acelite/ace/DEV.cpp index 42178a68e6b..c95bb7f90a2 100644 --- a/dep/acelite/ace/DEV.cpp +++ b/dep/acelite/ace/DEV.cpp @@ -1,4 +1,4 @@ -// $Id: DEV.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: DEV.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/DEV.h" @@ -8,7 +8,7 @@ #include "ace/DEV.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, DEV, "$Id: DEV.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/DEV.h b/dep/acelite/ace/DEV.h index 86f8d5dc863..d8ce8628ecf 100644 --- a/dep/acelite/ace/DEV.h +++ b/dep/acelite/ace/DEV.h @@ -4,7 +4,7 @@ /** * @file DEV.h * - * $Id: DEV.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: DEV.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @author Gerhard Lenzer */ @@ -23,19 +23,6 @@ #include "ace/DEV_Addr.h" -// The following is necessary since many C++ compilers don't support -// typedef'd types inside of classes used as formal template -// arguments... ;-(. Luckily, using the C++ preprocessor I can hide -// most of this nastiness! - -#if defined (ACE_HAS_TEMPLATE_TYPEDEFS) -#define ACE_DEV_CONNECTOR ACE_DEV_Connector -#define ACE_DEV_STREAM ACE_DEV_IO -#else /* TEMPLATES are broken (must be a cfront-based compiler...) */ -#define ACE_DEV_CONNECTOR ACE_DEV_Connector, ACE_DEV_Addr -#define ACE_DEV_STREAM ACE_DEV_IO, ACE_DEV_Addr -#endif /* ACE_TEMPLATE_TYPEDEFS */ - ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** diff --git a/dep/acelite/ace/DEV_Addr.cpp b/dep/acelite/ace/DEV_Addr.cpp index 64bbb50873c..90bfe0a5752 100644 --- a/dep/acelite/ace/DEV_Addr.cpp +++ b/dep/acelite/ace/DEV_Addr.cpp @@ -1,4 +1,4 @@ -// $Id: DEV_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: DEV_Addr.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/DEV_Addr.h" #if !defined (__ACE_INLINE__) @@ -8,10 +8,6 @@ #include "ace/Log_Msg.h" #include "ace/OS_NS_string.h" -ACE_RCSID (ace, - DEV_Addr, - "$Id: DEV_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_DEV_Addr) diff --git a/dep/acelite/ace/DEV_Connector.cpp b/dep/acelite/ace/DEV_Connector.cpp index bdc2530acd8..6251dc670aa 100644 --- a/dep/acelite/ace/DEV_Connector.cpp +++ b/dep/acelite/ace/DEV_Connector.cpp @@ -1,4 +1,4 @@ -// $Id: DEV_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: DEV_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/DEV_Connector.h" @@ -8,12 +8,6 @@ #include "ace/DEV_Connector.inl" #endif /* __ACE_INLINE__ */ - -ACE_RCSID (ace, - DEV_Connector, - "$Id: DEV_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_DEV_Connector) diff --git a/dep/acelite/ace/DEV_IO.cpp b/dep/acelite/ace/DEV_IO.cpp index b9a8e1f46b9..a16aca006ab 100644 --- a/dep/acelite/ace/DEV_IO.cpp +++ b/dep/acelite/ace/DEV_IO.cpp @@ -1,4 +1,4 @@ -// $Id: DEV_IO.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: DEV_IO.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/DEV_IO.h" #include "ace/Log_Msg.h" @@ -7,7 +7,7 @@ #include "ace/DEV_IO.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, DEV_IO, "$Id: DEV_IO.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/DLL.cpp b/dep/acelite/ace/DLL.cpp index cad25110032..1f9604678d9 100644 --- a/dep/acelite/ace/DLL.cpp +++ b/dep/acelite/ace/DLL.cpp @@ -1,4 +1,4 @@ -// $Id: DLL.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: DLL.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/DLL.h" @@ -11,7 +11,7 @@ #include <algorithm> -ACE_RCSID(ace, DLL, "$Id: DLL.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/DLL_Manager.cpp b/dep/acelite/ace/DLL_Manager.cpp index be73f455800..23e6f85520a 100644 --- a/dep/acelite/ace/DLL_Manager.cpp +++ b/dep/acelite/ace/DLL_Manager.cpp @@ -1,4 +1,4 @@ -// $Id: DLL_Manager.cpp 90712 2010-06-18 20:01:29Z shuston $ +// $Id: DLL_Manager.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/DLL_Manager.h" @@ -14,13 +14,7 @@ #include "ace/OS_NS_dlfcn.h" #include "ace/OS_NS_string.h" -ACE_RCSID (ace, - DLL_Manager, - "DLL_Manager.cpp,v 4.23 2003/11/05 23:30:46 shuston Exp") - -/******************************************************************/ - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL +ACE_BEGIN_VERSIONED_NAMESPACE_DECL sig_atomic_t ACE_DLL_Handle::open_called_ = 0; diff --git a/dep/acelite/ace/Date_Time.cpp b/dep/acelite/ace/Date_Time.cpp index eff0f273fe7..2cc6b69f3f8 100644 --- a/dep/acelite/ace/Date_Time.cpp +++ b/dep/acelite/ace/Date_Time.cpp @@ -1,5 +1,5 @@ // Date_Time.cpp -// $Id: Date_Time.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Date_Time.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Date_Time.h" @@ -7,4 +7,4 @@ #include "ace/Date_Time.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Date_Time, "$Id: Date_Time.cpp 80826 2008-03-04 14:51:23Z wotte $") + diff --git a/dep/acelite/ace/Default_Constants.h b/dep/acelite/ace/Default_Constants.h index 1c0743b523c..c21c776eaa4 100644 --- a/dep/acelite/ace/Default_Constants.h +++ b/dep/acelite/ace/Default_Constants.h @@ -4,7 +4,7 @@ /** * @file Default_Constants.h * - * $Id: Default_Constants.h 87487 2009-11-12 07:54:39Z johnnyw $ + * $Id: Default_Constants.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> * @author Jesper S. M|ller<stophph@diku.dk> @@ -556,21 +556,6 @@ # define ACE_DEFAULT_GLOBALNAME_A "globalnames" #endif /* ACE_DEFAULT_GLOBALNAME_A */ -// ACE_DEFAULT_NAMESPACE_DIR is for legacy mode apps. A better -// way of doing this is something like ACE_Lib_Find::get_temp_dir, since -// this directory may not exist -#if defined (ACE_LEGACY_MODE) -# if defined (ACE_WIN32) -# define ACE_DEFAULT_NAMESPACE_DIR_A "C:\\temp" -# else /* ACE_WIN32 */ -# define ACE_DEFAULT_NAMESPACE_DIR_A "/tmp" -# endif /* ACE_WIN32 */ -# if defined (ACE_HAS_WCHAR) -# define ACE_DEFAULT_NAMESPACE_DIR_W ACE_TEXT_WIDE(ACE_DEFAULT_NAMESPACE_DIR_A) -# endif /* ACE_HAS_WCHAR */ -# define ACE_DEFAULT_NAMESPACE_DIR ACE_TEXT(ACE_DEFAULT_NAMESPACE_DIR_A) -#endif /* ACE_LEGACY_MODE */ - #if defined (ACE_HAS_WCHAR) # define ACE_DEFAULT_LOCALNAME_W ACE_TEXT_WIDE(ACE_DEFAULT_LOCALNAME_A) # define ACE_DEFAULT_GLOBALNAME_W ACE_TEXT_WIDE(ACE_DEFAULT_GLOBALNAME_A) diff --git a/dep/acelite/ace/Dev_Poll_Reactor.cpp b/dep/acelite/ace/Dev_Poll_Reactor.cpp index e0adc19a418..5f18064ecbe 100644 --- a/dep/acelite/ace/Dev_Poll_Reactor.cpp +++ b/dep/acelite/ace/Dev_Poll_Reactor.cpp @@ -1,14 +1,10 @@ -// $Id: Dev_Poll_Reactor.cpp 90177 2010-05-19 11:44:22Z vzykov $ +// $Id: Dev_Poll_Reactor.cpp 92199 2010-10-11 11:58:35Z johnnyw $ #include "ace/OS_NS_errno.h" #include "ace/Dev_Poll_Reactor.h" #include "ace/Signal.h" #include "ace/Sig_Handler.h" -ACE_RCSID (ace, - Dev_Poll_Reactor, - "$Id: Dev_Poll_Reactor.cpp 90177 2010-05-19 11:44:22Z vzykov $") - #if defined (ACE_HAS_EVENT_POLL) || defined (ACE_HAS_DEV_POLL) # include "ace/OS_NS_unistd.h" @@ -53,7 +49,6 @@ ACE_Dev_Poll_Reactor_Notify::ACE_Dev_Poll_Reactor_Notify (void) #if defined (ACE_HAS_REACTOR_NOTIFICATION_QUEUE) , notification_queue_ () #endif /* ACE_HAS_REACTOR_NOTIFICATION_QUEUE */ - , dispatching_ (false) { } @@ -135,11 +130,11 @@ ACE_Dev_Poll_Reactor_Notify::notify (ACE_Event_Handler *eh, ACE_UNUSED_ARG (timeout); ACE_Dev_Poll_Handler_Guard eh_guard (eh); - // When using the queue, the push call indicates whether or not a pipe - // write is needed. If it's not, don't waste pipe space. - int push_result = this->notification_queue_.push_new_notification (buffer); - if (-1 == push_result || 1 == push_result) - return -1 == push_result ? -1 : 0; // Also decrement eh's reference count + // When using the queue, always try to write to the notify pipe. If it + // fills up, ignore it safely because the already-written bytes will + // eventually cause the notify handler to be dispatched. + if (-1 == this->notification_queue_.push_new_notification (buffer)) + return -1; // Also decrement eh's reference count // The notification has been queued, so it will be delivered at some // point (and may have been already); release the refcnt guard. @@ -223,12 +218,20 @@ ACE_Dev_Poll_Reactor_Notify::read_notify_pipe (ACE_HANDLE handle, bool more_messages_queued = false; ACE_Notification_Buffer next; - int result = notification_queue_.pop_next_notification (buffer, + int result = 1; + while (result == 1) + { + result = notification_queue_.pop_next_notification (buffer, more_messages_queued, next); - if (result <= 0) // Nothing dequeued or error - return result; + if (result <= 0) // Nothing dequeued or error + return result; + + // If it's just a wake-up, toss it and see if there's anything else. + if (buffer.eh_ != 0) + break; + } // If there are more messages, ensure there's a byte in the pipe // in case the notification limit stops dequeuing notifies before @@ -272,45 +275,10 @@ ACE_Dev_Poll_Reactor_Notify::read_notify_pipe (ACE_HANDLE handle, int -ACE_Dev_Poll_Reactor_Notify::handle_input (ACE_HANDLE handle) +ACE_Dev_Poll_Reactor_Notify::handle_input (ACE_HANDLE /*handle*/) { ACE_TRACE ("ACE_Dev_Poll_Reactor_Notify::handle_input"); - - { - ACE_MT (ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, mon, this->dispatching_lock_, -1)); - if (this->dispatching_) - return 0; - this->dispatching_ = true; - } - - int number_dispatched = 0; - int result = 0; - ACE_Notification_Buffer buffer; - - while ((result = this->read_notify_pipe (handle, buffer)) > 0) - { - // Dispatch the buffer - // NOTE: We count only if we made any dispatches ie. upcalls. - if (this->dispatch_notify (buffer) > 0) - ++number_dispatched; - - // Bail out if we've reached the <notify_threshold_>. Note that - // by default <notify_threshold_> is -1, so we'll loop until all - // the available notifications have been dispatched. - if (number_dispatched == this->max_notify_iterations_) - break; - } - - if (result == -1) - { - // Reassign number_dispatched to -1 if things have gone - // seriously wrong. - number_dispatched = -1; - } - - this->dispatching_ = false; - - return number_dispatched; + ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("SHOULD NOT BE HERE.\n")), -1); } ACE_HANDLE @@ -426,6 +394,15 @@ ACE_Dev_Poll_Reactor_Notify::dump (void) const #endif /* ACE_HAS_DUMP */ } +int +ACE_Dev_Poll_Reactor_Notify::dequeue_one (ACE_Notification_Buffer &nb) +{ + nb.eh_ = 0; + nb.mask_ = 0; + return this->read_notify_pipe (this->notify_handle (), nb); +} + + // ----------------------------------------------------------------- ACE_Dev_Poll_Reactor::Handler_Repository::Handler_Repository (void) @@ -1020,7 +997,7 @@ ACE_Dev_Poll_Reactor::handle_events (ACE_Time_Value *max_wait_time) // // The destructor of this object will automatically compute how much // time elapsed since this method was called. - ACE_MT (ACE_Countdown_Time countdown (max_wait_time)); + ACE_Countdown_Time countdown (max_wait_time); Token_Guard guard (this->token_); int const result = guard.acquire_quietly (max_wait_time); @@ -1309,6 +1286,22 @@ ACE_Dev_Poll_Reactor::dispatch_io_event (Token_Guard &guard) #endif /* ACE_HAS_DEV_POLL */ int status = 0; // gets callback status, below. + + // Dispatch notifies directly. The notify dispatcher locates a + // notification then releases the token prior to dispatching it. + // NOTE: If notify_handler_->dispatch_one() returns a fail condition + // it has not releases the guard. Else, it has. + if (eh == this->notify_handler_) + { + ACE_Notification_Buffer b; + status = + dynamic_cast<ACE_Dev_Poll_Reactor_Notify *>(notify_handler_)->dequeue_one (b); + if (status == -1) + return status; + guard.release_token (); + return notify_handler_->dispatch_notify (b); + } + { // Modify the reference count in an exception-safe way. // Note that eh could be the notify handler. It's not strictly @@ -1327,9 +1320,6 @@ ACE_Dev_Poll_Reactor::dispatch_io_event (Token_Guard &guard) // back with either 0 or < 0. status = this->upcall (eh, callback, handle); - if (eh == this->notify_handler_) - return status; - // If the callback returned 0, epoll-based needs to resume the // suspended handler but dev/poll doesn't. // The epoll case is optimized to not acquire the token in order diff --git a/dep/acelite/ace/Dev_Poll_Reactor.h b/dep/acelite/ace/Dev_Poll_Reactor.h index 68724bf8f9c..00ae4c21801 100644 --- a/dep/acelite/ace/Dev_Poll_Reactor.h +++ b/dep/acelite/ace/Dev_Poll_Reactor.h @@ -4,7 +4,7 @@ /** * @file Dev_Poll_Reactor.h * - * $Id: Dev_Poll_Reactor.h 91066 2010-07-12 11:05:04Z johnnyw $ + * $Id: Dev_Poll_Reactor.h 91462 2010-08-25 20:29:17Z shuston $ * * @c /dev/poll (or Linux @c sys_epoll) based Reactor implementation. * @@ -160,6 +160,14 @@ public: /// Dump the state of an object. virtual void dump (void) const; + /// Method called by ACE_Dev_Poll_Reactor to obtain one notification. + /// THIS METHOD MUST BE CALLED WITH THE REACTOR TOKEN HELD! + /// + /// @return -1 on error, else 0 and @arg nb has the notify to + /// dispatch. Note that the contained event handler may be + /// 0 if there were only wake-ups (no handlers to dispatch). + int dequeue_one (ACE_Notification_Buffer &nb); + protected: /** @@ -199,11 +207,6 @@ protected: */ ACE_Notification_Queue notification_queue_; #endif /* ACE_HAS_REACTOR_NOTIFICATION_QUEUE */ - - /// Lock and flag to say whether we're already dispatching notifies. - /// Purpose is to only dispatch notifies from one thread at a time. - ACE_SYNCH_MUTEX dispatching_lock_; - volatile bool dispatching_; }; // --------------------------------------------------------------------- diff --git a/dep/acelite/ace/Dirent_Selector.cpp b/dep/acelite/ace/Dirent_Selector.cpp index 8fcb5775b29..c1f480061d7 100644 --- a/dep/acelite/ace/Dirent_Selector.cpp +++ b/dep/acelite/ace/Dirent_Selector.cpp @@ -1,4 +1,4 @@ -// $Id: Dirent_Selector.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Dirent_Selector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Dirent_Selector.h" @@ -9,10 +9,6 @@ #include "ace/OS_NS_dirent.h" #include "ace/OS_NS_stdlib.h" -ACE_RCSID (ace, - Dirent_Selector, - "$Id: Dirent_Selector.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Construction/Destruction diff --git a/dep/acelite/ace/Dump.cpp b/dep/acelite/ace/Dump.cpp index 6e5c2d0c3ea..09ae92600b7 100644 --- a/dep/acelite/ace/Dump.cpp +++ b/dep/acelite/ace/Dump.cpp @@ -1,4 +1,4 @@ -// $Id: Dump.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Dump.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Dump.h" #include "ace/Guard_T.h" @@ -6,7 +6,7 @@ #include "ace/Object_Manager.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, Dump, "$Id: Dump.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Dump_T.h b/dep/acelite/ace/Dump_T.h index 4186cabf937..69d86718b56 100644 --- a/dep/acelite/ace/Dump_T.h +++ b/dep/acelite/ace/Dump_T.h @@ -4,7 +4,7 @@ /** * @file Dump_T.h * - * $Id: Dump_T.h 91064 2010-07-12 10:11:24Z johnnyw $ + * $Id: Dump_T.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Doug Schmidt */ @@ -44,7 +44,7 @@ public: ACE_Dumpable_Adapter (const Concrete *t); ~ACE_Dumpable_Adapter (void); - /// Concrete dump method (simply delegates to the <dump> method of + /// Concrete dump method (simply delegates to the dump() method of /// <class Concrete>). virtual void dump (void) const; diff --git a/dep/acelite/ace/Dynamic.cpp b/dep/acelite/ace/Dynamic.cpp index 4eaedad0cfe..40c1eeec581 100644 --- a/dep/acelite/ace/Dynamic.cpp +++ b/dep/acelite/ace/Dynamic.cpp @@ -1,4 +1,4 @@ -// $Id: Dynamic.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Dynamic.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Dynamic.h" #include "ace/Singleton.h" @@ -10,7 +10,7 @@ #include "ace/Dynamic.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Dynamic, "$Id: Dynamic.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Dynamic_Message_Strategy.cpp b/dep/acelite/ace/Dynamic_Message_Strategy.cpp index bce5865a1e6..b661ca1a718 100644 --- a/dep/acelite/ace/Dynamic_Message_Strategy.cpp +++ b/dep/acelite/ace/Dynamic_Message_Strategy.cpp @@ -1,3 +1,5 @@ +// $Id: Dynamic_Message_Strategy.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Dynamic_Message_Strategy.h" #if !defined (__ACE_INLINE__) @@ -9,10 +11,6 @@ #include "ace/Malloc_Base.h" #include "ace/OS_NS_string.h" -ACE_RCSID (ace, - Dynamic_Message_Strategy, - "$Id: Dynamic_Message_Strategy.cpp 84565 2009-02-23 08:20:39Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // ctor diff --git a/dep/acelite/ace/Dynamic_Service_Base.cpp b/dep/acelite/ace/Dynamic_Service_Base.cpp index ecefcf17207..b13e686125c 100644 --- a/dep/acelite/ace/Dynamic_Service_Base.cpp +++ b/dep/acelite/ace/Dynamic_Service_Base.cpp @@ -1,3 +1,5 @@ +// $Id: Dynamic_Service_Base.cpp 91813 2010-09-17 07:52:52Z johnnyw $ + #include "ace/Dynamic_Service_Base.h" #include "ace/ACE.h" #include "ace/Service_Config.h" @@ -6,11 +8,7 @@ #include "ace/Log_Msg.h" -ACE_RCSID (ace, - Dynamic_Service_Base, - "$Id: Dynamic_Service_Base.cpp 84282 2009-01-30 15:04:29Z msmit $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL +ACE_BEGIN_VERSIONED_NAMESPACE_DECL void @@ -80,7 +78,7 @@ ACE_Dynamic_Service_Base::instance (const ACE_Service_Gestalt* repo, if (ACE::debug ()) { - ACE_Guard <ACE_Log_Msg> log_guard (*ACE_Log_Msg::instance ()); + ACE_GUARD_RETURN (ACE_Log_Msg, log_guard, *ACE_Log_Msg::instance (), 0); if (repo->repo_ != repo_found->repo_) { @@ -88,7 +86,7 @@ ACE_Dynamic_Service_Base::instance (const ACE_Service_Gestalt* repo, ACE_TEXT ("ACE (%P|%t) DSB::instance, repo=%@, name=%s") ACE_TEXT (" type=%@ => %@") ACE_TEXT (" [in repo=%@]\n"), - repo->repo_, name, type, obj, + repo->repo_, name, type, obj, repo_found->repo_)); } else diff --git a/dep/acelite/ace/Dynamic_Service_Dependency.cpp b/dep/acelite/ace/Dynamic_Service_Dependency.cpp index df7cd0f5d48..32b1a275ff5 100644 --- a/dep/acelite/ace/Dynamic_Service_Dependency.cpp +++ b/dep/acelite/ace/Dynamic_Service_Dependency.cpp @@ -1,16 +1,12 @@ +// $Id: Dynamic_Service_Dependency.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/ACE.h" #include "ace/DLL_Manager.h" #include "ace/Dynamic_Service_Dependency.h" #include "ace/Service_Config.h" #include "ace/Log_Msg.h" -ACE_RCSID (ace, - Dynamic_Service_Dependency, - "$Id: Dynamic_Service_Dependency.cpp 80826 2008-03-04 14:51:23Z wotte $") - - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL - +ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Dynamic_Service_Dependency::ACE_Dynamic_Service_Dependency (const ACE_TCHAR *principal) { diff --git a/dep/acelite/ace/Env_Value_T.h b/dep/acelite/ace/Env_Value_T.h index df2178a0f11..c8b459b26c2 100644 --- a/dep/acelite/ace/Env_Value_T.h +++ b/dep/acelite/ace/Env_Value_T.h @@ -4,7 +4,7 @@ /** * @file Env_Value_T.h * - * $Id: Env_Value_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Env_Value_T.h 91626 2010-09-07 10:59:20Z johnnyw $ * * Template to encapsulate getting a value from an environment variable * and using a supplied default value if not in the environment. @@ -22,6 +22,7 @@ #include /**/ "ace/config-all.h" #include "ace/Global_Macros.h" #include "ace/OS_NS_stdlib.h" +#include "ace/Copy_Disabled.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once @@ -38,7 +39,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * value. */ template <class T> -class ACE_Env_Value +class ACE_Env_Value : private ACE_Copy_Disabled { public: /** @@ -48,9 +49,8 @@ public: */ ACE_Env_Value (void); - /// Constructor that calls <open>. - ACE_Env_Value (const ACE_TCHAR *varname, - const T &vardefault); + /// Constructor that calls open(). + ACE_Env_Value (const ACE_TCHAR *varname, const T &vardefault); /// Destroy the value. ~ACE_Env_Value (void); @@ -66,10 +66,6 @@ public: const ACE_TCHAR *varname (void) const; private: - /// Disallow copying and assignment. - ACE_UNIMPLEMENTED_FUNC (ACE_Env_Value(const ACE_Env_Value<T> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Env_Value<T> operator=(const ACE_Env_Value<T> &)) - void fetch_value (void); const ACE_TCHAR *varname_; diff --git a/dep/acelite/ace/Event.cpp b/dep/acelite/ace/Event.cpp index ea5f86d99d1..40eef30b04c 100644 --- a/dep/acelite/ace/Event.cpp +++ b/dep/acelite/ace/Event.cpp @@ -1,4 +1,4 @@ -// $Id: Event.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Event.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Event.h" @@ -8,7 +8,7 @@ #include "ace/Log_Msg.h" -ACE_RCSID(ace, Event, "$Id: Event.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Event_Handler.cpp b/dep/acelite/ace/Event_Handler.cpp index e04e8cb5d10..fdeacd6d742 100644 --- a/dep/acelite/ace/Event_Handler.cpp +++ b/dep/acelite/ace/Event_Handler.cpp @@ -1,5 +1,5 @@ // Event_Handler.cpp -// $Id: Event_Handler.cpp 85236 2009-05-01 11:43:56Z johnnyw $ +// $Id: Event_Handler.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Event_Handler.h" #include "ace/OS_Errno.h" @@ -14,7 +14,7 @@ #include <algorithm> -ACE_RCSID(ace, Event_Handler, "$Id: Event_Handler.cpp 85236 2009-05-01 11:43:56Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Event_Handler.h b/dep/acelite/ace/Event_Handler.h index 417f78578e7..fe5d1de748d 100644 --- a/dep/acelite/ace/Event_Handler.h +++ b/dep/acelite/ace/Event_Handler.h @@ -4,7 +4,7 @@ /** * @file Event_Handler.h * - * $Id: Event_Handler.h 91066 2010-07-12 11:05:04Z johnnyw $ + * $Id: Event_Handler.h 92345 2010-10-24 12:39:33Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -125,10 +125,10 @@ public: /// Called when a process exits. virtual int handle_exit (ACE_Process *); - /// Called when a <handle_*()> method returns -1 or when the - /// <remove_handler> method is called on an ACE_Reactor. The + /// Called when a handle_*() method returns -1 or when the + /// remove_handler() method is called on an ACE_Reactor. The /// @a close_mask indicates which event has triggered the - /// <handle_close> method callback on a particular @a handle. + /// handle_close() method callback on a particular @a handle. virtual int handle_close (ACE_HANDLE handle, ACE_Reactor_Mask close_mask); @@ -146,13 +146,14 @@ public: /// The application takes responsibility of resuming the handler ACE_APPLICATION_RESUMES_HANDLER }; + /** * Called to figure out whether the handler needs to resumed by the * reactor or the application can take care of it. The default * value of 0 would be returned which would allow the reactor to * take care of resumption of the handler. The application can * return a value more than zero and decide to resume the handler - * themseleves. + * themselves. * * @note This method has an affect only when used with the * ACE_Dev_Poll_Reactor (and then, only on Linux) or the ACE_TP_Reactor. @@ -368,7 +369,7 @@ public: ACE_Notification_Buffer (ACE_Event_Handler *eh, ACE_Reactor_Mask mask); - /// Default dtor. + /// Default destructor. ~ACE_Notification_Buffer (void); /// Pointer to the Event_Handler that will be dispatched diff --git a/dep/acelite/ace/Event_Handler_T.cpp b/dep/acelite/ace/Event_Handler_T.cpp index 45d9d4e2767..3d2649524fc 100644 --- a/dep/acelite/ace/Event_Handler_T.cpp +++ b/dep/acelite/ace/Event_Handler_T.cpp @@ -1,6 +1,6 @@ // Event_Handler_T.cpp // -// $Id: Event_Handler_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Event_Handler_T.cpp 91626 2010-09-07 10:59:20Z johnnyw $ #ifndef ACE_EVENT_HANDLER_T_CPP #define ACE_EVENT_HANDLER_T_CPP @@ -11,8 +11,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#if defined (ACE_HAS_TEMPLATE_TYPEDEFS) - #if !defined (__ACE_INLINE__) #include "ace/Event_Handler_T.inl" #endif /* __ACE_INLINE__ */ @@ -120,6 +118,4 @@ ACE_Event_Handler_T<T>::handle_signal (int signum, siginfo_t *s, ucontext_t *u) ACE_END_VERSIONED_NAMESPACE_DECL -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ - #endif /* ACE_EVENT_HANDLER_T_CPP */ diff --git a/dep/acelite/ace/Event_Handler_T.h b/dep/acelite/ace/Event_Handler_T.h index d86ac333221..61ea28a1715 100644 --- a/dep/acelite/ace/Event_Handler_T.h +++ b/dep/acelite/ace/Event_Handler_T.h @@ -4,7 +4,7 @@ /** * @file Event_Handler_T.h * - * $Id: Event_Handler_T.h 83891 2008-11-28 11:01:50Z johnnyw $ + * $Id: Event_Handler_T.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -20,8 +20,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#if defined (ACE_HAS_TEMPLATE_TYPEDEFS) - ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** @@ -186,6 +184,5 @@ ACE_END_VERSIONED_NAMESPACE_DECL #pragma implementation ("Event_Handler_T.cpp") #endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */ -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ #include /**/ "ace/post.h" #endif /* ACE_EVENT_HANDLER_H */ diff --git a/dep/acelite/ace/Event_Handler_T.inl b/dep/acelite/ace/Event_Handler_T.inl index 40db43e8e23..9c209f9812a 100644 --- a/dep/acelite/ace/Event_Handler_T.inl +++ b/dep/acelite/ace/Event_Handler_T.inl @@ -1,6 +1,5 @@ // -*- C++ -*- -// -// $Id: Event_Handler_T.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Event_Handler_T.inl 91626 2010-09-07 10:59:20Z johnnyw $ #include "ace/Global_Macros.h" diff --git a/dep/acelite/ace/Exception_Macros.h b/dep/acelite/ace/Exception_Macros.h deleted file mode 100644 index bb74b1a2129..00000000000 --- a/dep/acelite/ace/Exception_Macros.h +++ /dev/null @@ -1,55 +0,0 @@ -// -*- C++ -*- - -// ============================================================================ -/** - * @file Exception_Macros.h - * - * $Id: Exception_Macros.h 80826 2008-03-04 14:51:23Z wotte $ - * - * Writing code that is portable between platforms with or without - * native C++ exceptions is hard. The following macros offer some - * help on this task. - * - * @author Nanbor Wang <nanbor@cs.wustl.edu> - * @author Aniruddha Gokhale <gokhale@sahyadri.research.bell-labs.com> - * @author Carlos O'Ryan <coryan@uci.edu> - * @author Krishnakumar B <kitty@cs.wustl.edu>, et al. - */ -// ============================================================================ - -// Macros for handling exceptions. - -#ifndef ACE_EXCEPTION_MACROS_H -#define ACE_EXCEPTION_MACROS_H - -#include /**/ "ace/pre.h" - -#include /**/ "ace/config-all.h" - -# if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -# endif /* ACE_LACKS_PRAGMA_ONCE */ - -// By default, if the compiler supports native exception handling, assume -// CORBA also support native exception handling. But it can be disabled by -// defining ACE_CORBA_HAS_EXCEPTIONS=0. If the compiler does not support -// exceptions handling, make sure native exception handling is disabled. -#if defined (ACE_HAS_EXCEPTIONS) -# if defined (ACE_CORBA_HAS_EXCEPTIONS) -# if (ACE_CORBA_HAS_EXCEPTIONS == 0) -# undef ACE_USES_NATIVE_EXCEPTIONS -# else /* ACE_CORBA_HAS_EXCEPTIONS != 0 */ -# define ACE_USES_NATIVE_EXCEPTIONS -# endif /* ACE_CORBA_HAS_EXCEPTIONS == 0 */ -# else -# define ACE_USES_NATIVE_EXCEPTIONS -# define ACE_CORBA_HAS_EXCEPTIONS -# endif /* ACE_CORBA_HAS_EXCEPTIONS */ -#else /* ! ACE_HAS_EXCEPTIONS */ -# undef ACE_CORBA_HAS_EXCEPTIONS -# undef ACE_USES_NATIVE_EXCEPTIONS -#endif /* ACE_HAS_EXCEPTIONS */ - -#include /**/ "ace/post.h" - -#endif /* ACE_EXCEPTION_MACROS_H */ diff --git a/dep/acelite/ace/FIFO.cpp b/dep/acelite/ace/FIFO.cpp index e3970015c43..b564a26c6b6 100644 --- a/dep/acelite/ace/FIFO.cpp +++ b/dep/acelite/ace/FIFO.cpp @@ -1,4 +1,4 @@ -// $Id: FIFO.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: FIFO.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/FIFO.h" @@ -12,7 +12,7 @@ #include "ace/OS_NS_sys_stat.h" #include "ace/OS_NS_fcntl.h" -ACE_RCSID(ace, FIFO, "$Id: FIFO.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FIFO.h b/dep/acelite/ace/FIFO.h index 2d590563a99..f4836368d74 100644 --- a/dep/acelite/ace/FIFO.h +++ b/dep/acelite/ace/FIFO.h @@ -4,7 +4,7 @@ /** * @file FIFO.h * - * $Id: FIFO.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: FIFO.h 91574 2010-08-30 16:52:24Z shuston $ * * @author Doug Schmidt */ @@ -32,15 +32,24 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * @brief Abstract base class for UNIX FIFOs * * UNIX FIFOs are also known Named Pipes, which are totally - * unrelated to Win32 Named Pipes. If you want to use a local - * IPC mechanism that will be portable to both UNIX and Win32, - * take a look at the <ACE_SPIPE_*> classes. + * unrelated to Windows Named Pipes. If you want to use a local + * IPC mechanism that will be portable to both UNIX and Windows, + * take a look at the ACE_Pipe or ACE_SPIPE_Stream classes. */ class ACE_Export ACE_FIFO : public ACE_IPC_SAP { public: - /// Open up the named pipe on the <rendezvous> in accordance with the - /// flags. + /** + * Open up the named pipe (FIFO) on the @a rendezvous point in accordance + * with the @a flags. + * + * If @a flags contains @c O_CREAT open() will attempt to call mkfifo() + * to create the FIFO before opening it. In this case, this method + * will not fail simply because the fifo already exists. + * + * @retval 0 for success + * @retval -1 for error; errno contains the error code. + */ int open (const ACE_TCHAR *rendezvous, int flags, mode_t perms, LPSECURITY_ATTRIBUTES sa = 0); @@ -61,14 +70,19 @@ public: ACE_ALLOC_HOOK_DECLARE; protected: - // = Make these protected to ensure that the class is "abstract." + /** + * Protected constructors ensure this class cannot be used directly. + * User code must use ACE_FIFO_Send and/or ACE_FIFO_Recv. + */ + //@{ /// Default constructor. ACE_FIFO (void); - /// Open up the named pipe on the <rendezvous> in accordance with the + /// Open up the named pipe on the @a rendezvous in accordance with the /// flags. ACE_FIFO (const ACE_TCHAR *rendezvous, int flags, mode_t perms, LPSECURITY_ATTRIBUTES sa = 0); + //@} private: /// Rendezvous point in the file system. diff --git a/dep/acelite/ace/FIFO_Recv.cpp b/dep/acelite/ace/FIFO_Recv.cpp index 254e30f21d1..37700ddaf67 100644 --- a/dep/acelite/ace/FIFO_Recv.cpp +++ b/dep/acelite/ace/FIFO_Recv.cpp @@ -1,4 +1,4 @@ -// $Id: FIFO_Recv.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: FIFO_Recv.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/FIFO_Recv.h" #include "ace/Log_Msg.h" @@ -8,7 +8,7 @@ #include "ace/FIFO_Recv.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, FIFO_Recv, "$Id: FIFO_Recv.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FIFO_Recv.h b/dep/acelite/ace/FIFO_Recv.h index c19d102c82a..2b6b2f25c59 100644 --- a/dep/acelite/ace/FIFO_Recv.h +++ b/dep/acelite/ace/FIFO_Recv.h @@ -4,7 +4,7 @@ /** * @file FIFO_Recv.h * - * $Id: FIFO_Recv.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: FIFO_Recv.h 91574 2010-08-30 16:52:24Z shuston $ * * @author Doug Schmidt */ @@ -36,7 +36,17 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Export ACE_FIFO_Recv : public ACE_FIFO { public: - // = Initialization methods. + /// @name Initialization methods. + /// + /// Note that @c ACE_NONBLOCK will be added to any @a flags value passed. + /// This causes the open to succeed even if no writer has yet opened the + /// fifo. There is no way to disable this behavior. + /// + /// @arg persistent Means "open fifo for writing, as well as + /// reading." This ensures that the fifo never gets EOF, even if there + /// aren't any writers at the moment! + //@{ + /// Default constructor. ACE_FIFO_Recv (void); @@ -53,8 +63,9 @@ public: mode_t perms = ACE_DEFAULT_FILE_PERMS, int persistent = 1, LPSECURITY_ATTRIBUTES sa = 0); + //@} - /// Close down the named pipe. + /// Close down the fifo. int close (void); /// Recv @a buf of up to @a len bytes. diff --git a/dep/acelite/ace/FIFO_Recv_Msg.cpp b/dep/acelite/ace/FIFO_Recv_Msg.cpp index f389d03d276..b8580ae317c 100644 --- a/dep/acelite/ace/FIFO_Recv_Msg.cpp +++ b/dep/acelite/ace/FIFO_Recv_Msg.cpp @@ -1,4 +1,4 @@ -// $Id: FIFO_Recv_Msg.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: FIFO_Recv_Msg.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/FIFO_Recv_Msg.h" @@ -8,7 +8,7 @@ #include "ace/FIFO_Recv_Msg.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, FIFO_Recv_Msg, "$Id: FIFO_Recv_Msg.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FIFO_Recv_Msg.inl b/dep/acelite/ace/FIFO_Recv_Msg.inl index 0a0b0673d38..d6dfc369d90 100644 --- a/dep/acelite/ace/FIFO_Recv_Msg.inl +++ b/dep/acelite/ace/FIFO_Recv_Msg.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: FIFO_Recv_Msg.inl 82559 2008-08-07 20:23:07Z parsons $ +// $Id: FIFO_Recv_Msg.inl 91813 2010-09-17 07:52:52Z johnnyw $ #include "ace/Min_Max.h" #include "ace/OS_NS_stropts.h" @@ -43,12 +43,12 @@ ACE_FIFO_Recv_Msg::recv (ACE_Str_Buf &recv_msg) ssize_t recv_len = ACE_OS::read (this->get_handle (), (char *) recv_msg.buf, ACE_MIN (remaining, requested)); - + if (recv_len == -1) { return -1; } - + // Tell caller what's really in the buffer. recv_msg.len = static_cast<int> (recv_len); @@ -60,7 +60,7 @@ ACE_FIFO_Recv_Msg::recv (ACE_Str_Buf &recv_msg) // saving the indication here either to read the remainder later. size_t total_msg_size = remaining; remaining -= recv_len; - + while (remaining > 0) { const size_t throw_away = 1024; @@ -68,15 +68,15 @@ ACE_FIFO_Recv_Msg::recv (ACE_Str_Buf &recv_msg) recv_len = ACE_OS::read (this->get_handle (), dev_null, ACE_MIN (remaining, throw_away)); - + if (recv_len == -1) { break; } - + remaining -= recv_len; } - + return ACE_Utils::truncate_cast<ssize_t> (total_msg_size); } #endif /* ACE_HAS_STREAM_PIPES */ @@ -118,7 +118,7 @@ ACE_FIFO_Recv_Msg::recv (int *band, int *flags) { ACE_TRACE ("ACE_FIFO_Recv_Msg::recv"); - + if (ACE_OS::getpmsg (this->get_handle (), (strbuf *) cntl, (strbuf *) data, diff --git a/dep/acelite/ace/FIFO_Send.cpp b/dep/acelite/ace/FIFO_Send.cpp index 720e63c5425..93df476ae5a 100644 --- a/dep/acelite/ace/FIFO_Send.cpp +++ b/dep/acelite/ace/FIFO_Send.cpp @@ -1,4 +1,4 @@ -// $Id: FIFO_Send.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: FIFO_Send.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/FIFO_Send.h" #include "ace/Log_Msg.h" @@ -7,7 +7,7 @@ #include "ace/FIFO_Send.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, FIFO_Send, "$Id: FIFO_Send.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FIFO_Send.h b/dep/acelite/ace/FIFO_Send.h index cc0fc282f83..c6bf6002303 100644 --- a/dep/acelite/ace/FIFO_Send.h +++ b/dep/acelite/ace/FIFO_Send.h @@ -4,7 +4,7 @@ /** * @file FIFO_Send.h * - * $Id: FIFO_Send.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: FIFO_Send.h 91574 2010-08-30 16:52:24Z shuston $ * * @author Doug Schmidt */ @@ -35,7 +35,12 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Export ACE_FIFO_Send : public ACE_FIFO { public: - // = Initialization methods. + /// @name Initialization methods. + /// + /// Note that @c O_WRONLY will be added to any @a flags value passed. + /// Default behavior is to block until a receiver also opens the fifo. + /// To use non-blocking behavior include ACE_NONBLOCK in @a flags. + //@{ /// Default constructor. ACE_FIFO_Send (void); @@ -50,6 +55,7 @@ public: int flags = O_WRONLY, mode_t perms = ACE_DEFAULT_FILE_PERMS, LPSECURITY_ATTRIBUTES sa = 0); + //@} /// Send @a buf of up to @a len bytes. ssize_t send (const void *buf, size_t len); diff --git a/dep/acelite/ace/FIFO_Send_Msg.cpp b/dep/acelite/ace/FIFO_Send_Msg.cpp index b3bbae00aed..a54295c2733 100644 --- a/dep/acelite/ace/FIFO_Send_Msg.cpp +++ b/dep/acelite/ace/FIFO_Send_Msg.cpp @@ -1,4 +1,4 @@ -// $Id: FIFO_Send_Msg.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: FIFO_Send_Msg.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/FIFO_Send_Msg.h" @@ -9,7 +9,7 @@ #include "ace/FIFO_Send_Msg.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, FIFO_Send_Msg, "$Id: FIFO_Send_Msg.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FILE.cpp b/dep/acelite/ace/FILE.cpp index 8fe88d1b09c..49ff2c1ca3d 100644 --- a/dep/acelite/ace/FILE.cpp +++ b/dep/acelite/ace/FILE.cpp @@ -1,4 +1,4 @@ -// $Id: FILE.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: FILE.cpp 91286 2010-08-05 09:04:31Z johnnyw $ /* Defines the member functions for the base class of the ACE_IO_SAP ACE_FILE abstraction. */ @@ -12,7 +12,7 @@ #include "ace/FILE.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, FILE, "$Id: FILE.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FILE.h b/dep/acelite/ace/FILE.h index 407a03379e5..b0cf712642e 100644 --- a/dep/acelite/ace/FILE.h +++ b/dep/acelite/ace/FILE.h @@ -4,7 +4,7 @@ /** * @file FILE.h * - * $Id: FILE.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: FILE.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @author Gerhard Lenzer */ @@ -22,19 +22,6 @@ #include "ace/FILE_Addr.h" -// The following is necessary since many C++ compilers don't support -// typedef'd types inside of classes used as formal template -// arguments... ;-(. Luckily, using the C++ preprocessor I can hide -// most of this nastiness! - -#if defined (ACE_HAS_TEMPLATE_TYPEDEFS) -#define ACE_FILE_CONNECTOR ACE_FILE_Connector -#define ACE_FILE_STREAM ACE_FILE_IO -#else /* TEMPLATES are broken (must be a cfront-based compiler...) */ -#define ACE_FILE_CONNECTOR ACE_FILE_Connector, ACE_FILE_Addr -#define ACE_FILE_STREAM ACE_FILE_IO, ACE_FILE_Addr -#endif /* ACE_TEMPLATE_TYPEDEFS */ - ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** @@ -85,13 +72,13 @@ public: /** * Sets the file pointer as follows: - * o If <whence> is <SEEK_SET>, the pointer is set to @a offset + * o If @ whence is @c SEEK_SET, the pointer is set to @a offset * bytes. * - * o If <whence> is <SEEK_CUR>, the pointer is set to its - * current location plus @a offset. + * o If @a whence> is @c SEEK_CUR, the pointer is set to its + * current location plus @a offset. * - * o If <whence> is <SEEK_END>, the pointer is set to the size + * o If @a whence is @c SEEK_END, the pointer is set to the size * of the file plus offset. */ ACE_OFF_T seek (ACE_OFF_T offset, diff --git a/dep/acelite/ace/FILE_Addr.cpp b/dep/acelite/ace/FILE_Addr.cpp index 6d8fbeb775b..a20e2a9744b 100644 --- a/dep/acelite/ace/FILE_Addr.cpp +++ b/dep/acelite/ace/FILE_Addr.cpp @@ -1,4 +1,4 @@ -// $Id: FILE_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: FILE_Addr.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/FILE_Addr.h" #include "ace/Lib_Find.h" @@ -11,7 +11,7 @@ #include "ace/FILE_Addr.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, FILE_Addr, "$Id: FILE_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FILE_Connector.cpp b/dep/acelite/ace/FILE_Connector.cpp index b59b1e8913d..c27a5cec64e 100644 --- a/dep/acelite/ace/FILE_Connector.cpp +++ b/dep/acelite/ace/FILE_Connector.cpp @@ -1,4 +1,4 @@ -// $Id: FILE_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: FILE_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/FILE_Connector.h" #include "ace/Handle_Ops.h" @@ -8,7 +8,7 @@ #include "ace/FILE_Connector.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, FILE_Connector, "$Id: FILE_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FILE_IO.cpp b/dep/acelite/ace/FILE_IO.cpp index d6bf084dfae..37c412c2497 100644 --- a/dep/acelite/ace/FILE_IO.cpp +++ b/dep/acelite/ace/FILE_IO.cpp @@ -1,4 +1,4 @@ -// $Id: FILE_IO.cpp 82559 2008-08-07 20:23:07Z parsons $ +// $Id: FILE_IO.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/FILE_IO.h" @@ -11,7 +11,7 @@ #include "ace/FILE_IO.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, FILE_IO, "$Id: FILE_IO.cpp 82559 2008-08-07 20:23:07Z parsons $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/FILE_IO.h b/dep/acelite/ace/FILE_IO.h index 951069e3652..4540db830ee 100644 --- a/dep/acelite/ace/FILE_IO.h +++ b/dep/acelite/ace/FILE_IO.h @@ -4,7 +4,7 @@ /** * @file FILE_IO.h * - * $Id: FILE_IO.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: FILE_IO.h 92298 2010-10-21 11:15:17Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -59,8 +59,8 @@ public: /// Send n bytes, keep trying until n are sent. ssize_t send_n (const void *buf, size_t n) const; - /// Send all the @a message_blocks chained through their <next> and - /// <cont> pointers. This call uses the underlying OS gather-write + /// Send all the @a message_blocks chained through their next and + /// cont pointers. This call uses the underlying OS gather-write /// operation to reduce the domain-crossing penalty. ssize_t send_n (const ACE_Message_Block *message_block, const ACE_Time_Value *timeout = 0, diff --git a/dep/acelite/ace/File_Lock.cpp b/dep/acelite/ace/File_Lock.cpp index 9eac8883d48..b67e8d50e84 100644 --- a/dep/acelite/ace/File_Lock.cpp +++ b/dep/acelite/ace/File_Lock.cpp @@ -1,4 +1,4 @@ -// $Id: File_Lock.cpp 87213 2009-10-23 13:11:34Z johnnyw $ +// $Id: File_Lock.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/File_Lock.h" #include "ace/Log_Msg.h" @@ -7,7 +7,7 @@ #include "ace/File_Lock.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, File_Lock, "$Id: File_Lock.cpp 87213 2009-10-23 13:11:34Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Filecache.cpp b/dep/acelite/ace/Filecache.cpp index 494749ca7ce..7a9615bb59d 100644 --- a/dep/acelite/ace/Filecache.cpp +++ b/dep/acelite/ace/Filecache.cpp @@ -1,4 +1,4 @@ -// $Id: Filecache.cpp 83735 2008-11-14 09:41:52Z johnnyw $ +// $Id: Filecache.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Filecache.h" #include "ace/Object_Manager.h" @@ -11,10 +11,6 @@ #include "ace/OS_NS_fcntl.h" #include "ace/Truncate.h" -ACE_RCSID (ace, - Filecache, - "$Id: Filecache.cpp 83735 2008-11-14 09:41:52Z johnnyw $") - #if defined (ACE_WIN32) // Specifies no sharing flags. #define R_MASK ACE_DEFAULT_OPEN_PERMS diff --git a/dep/acelite/ace/Flag_Manip.cpp b/dep/acelite/ace/Flag_Manip.cpp index f9ac4083fa0..6a497579874 100644 --- a/dep/acelite/ace/Flag_Manip.cpp +++ b/dep/acelite/ace/Flag_Manip.cpp @@ -1,4 +1,4 @@ -// $Id: Flag_Manip.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Flag_Manip.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Flag_Manip.h" @@ -15,10 +15,6 @@ # include "ace/os_include/os_termios.h" #endif /* CYGWIN32 */ -ACE_RCSID (ace, - Flag_Manip, - "$Id: Flag_Manip.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Flags are file status flags to turn on. diff --git a/dep/acelite/ace/Framework_Component.cpp b/dep/acelite/ace/Framework_Component.cpp index 7b63ad5eeeb..36e69d099d8 100644 --- a/dep/acelite/ace/Framework_Component.cpp +++ b/dep/acelite/ace/Framework_Component.cpp @@ -1,5 +1,4 @@ -// Framework_Component.cpp -// $Id: Framework_Component.cpp 84128 2009-01-09 15:07:40Z johnnyw $ +// $Id: Framework_Component.cpp 92208 2010-10-13 06:20:39Z johnnyw $ #include "ace/Framework_Component.h" @@ -13,8 +12,6 @@ #include "ace/Recursive_Thread_Mutex.h" #include "ace/OS_NS_string.h" -ACE_RCSID(ace, Framework_Component, "$Id: Framework_Component.cpp 84128 2009-01-09 15:07:40Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Framework_Component::~ACE_Framework_Component (void) @@ -60,7 +57,7 @@ int ACE_Framework_Repository::close (void) { ACE_TRACE ("ACE_Framework_Repository::close"); - ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1)); + ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->lock_, -1); this->shutting_down_ = 1; @@ -128,7 +125,7 @@ int ACE_Framework_Repository::register_component (ACE_Framework_Component *fc) { ACE_TRACE ("ACE_Framework_Repository::register_component"); - ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1)); + ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->lock_, -1); int i; // Check to see if it's already registered @@ -155,7 +152,7 @@ int ACE_Framework_Repository::remove_component (const ACE_TCHAR *name) { ACE_TRACE ("ACE_Framework_Repository::remove_component"); - ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1)); + ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->lock_, -1); int i; for (i = 0; i < this->current_size_; i++) @@ -178,7 +175,7 @@ ACE_Framework_Repository::remove_dll_components (const ACE_TCHAR *dll_name) if (this->shutting_down_) return this->remove_dll_components_i (dll_name); - ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1)); + ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->lock_, -1); return this->remove_dll_components_i (dll_name); } diff --git a/dep/acelite/ace/Framework_Component.h b/dep/acelite/ace/Framework_Component.h index 941960bf047..51330af86a3 100644 --- a/dep/acelite/ace/Framework_Component.h +++ b/dep/acelite/ace/Framework_Component.h @@ -4,7 +4,7 @@ /** * @file Framework_Component.h * - * $Id: Framework_Component.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Framework_Component.h 92208 2010-10-13 06:20:39Z johnnyw $ * * A prototype mechanism that allows framework components, singletons * such as ACE_Reactor, ACE_Proactor, etc, to be registered with a @@ -45,6 +45,8 @@ #include "ace/os_include/os_signal.h" #include "ace/Thread_Mutex.h" +#include "ace/Copy_Disabled.h" +#include "ace/Synch_Traits.h" #define ACE_DEFAULT_FRAMEWORK_REPOSITORY_SIZE 1024 @@ -56,7 +58,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * @brief Base class that defines a uniform interface for all managed * framework components. */ -class ACE_Export ACE_Framework_Component +class ACE_Export ACE_Framework_Component : private ACE_Copy_Disabled { public: friend class ACE_Framework_Repository; @@ -74,11 +76,6 @@ protected: virtual ~ACE_Framework_Component (void); private: - // No copy possible - ACE_Framework_Component (const ACE_Framework_Component &); - void operator= (const ACE_Framework_Component &); - -private: /// Pointer to the actual component. const void *this_; @@ -98,7 +95,7 @@ private: * destruction, framework components are destroyed in the reverse order * that they were added originally. */ -class ACE_Export ACE_Framework_Repository +class ACE_Export ACE_Framework_Repository : private ACE_Copy_Disabled { public: // This is just to silence a compiler warning about no public ctors @@ -166,10 +163,6 @@ private: /// order. void compact (void); - /// Disallow copying and assignment. - ACE_Framework_Repository (const ACE_Framework_Repository &); - ACE_Framework_Repository &operator= (const ACE_Framework_Repository &); - private: /// Contains all the framework components. @@ -190,11 +183,8 @@ private: /// unload their components, e.g., ACE_DLL_Manager. static sig_atomic_t shutting_down_; -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - /// Synchronization variable for the MT_SAFE Repository - ACE_Thread_Mutex lock_; -#endif /* ACE_MT_SAFE */ - + /// Synchronization variable for the repository + ACE_SYNCH_MUTEX lock_; }; ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Framework_Component.inl b/dep/acelite/ace/Framework_Component.inl index 1fb2de38b85..d9afc4c2d2c 100644 --- a/dep/acelite/ace/Framework_Component.inl +++ b/dep/acelite/ace/Framework_Component.inl @@ -1,6 +1,5 @@ // -*- C++ -*- -// -// $Id: Framework_Component.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Framework_Component.inl 92208 2010-10-13 06:20:39Z johnnyw $ #include "ace/ACE.h" #include "ace/Guard_T.h" @@ -24,7 +23,7 @@ ACE_INLINE int ACE_Framework_Repository::current_size (void) const { ACE_TRACE ("ACE_Framework_Repository::current_size"); - ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, (ACE_Thread_Mutex &) this->lock_, -1)); + ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, const_cast <ACE_SYNCH_MUTEX&>(this->lock_), -1); return this->current_size_; } @@ -32,7 +31,7 @@ ACE_INLINE int ACE_Framework_Repository::total_size (void) const { ACE_TRACE ("ACE_Framework_Repository::total_size"); - ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, (ACE_Thread_Mutex &) this->lock_, -1)); + ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, const_cast <ACE_SYNCH_MUTEX&>(this->lock_), -1); return this->total_size_; } diff --git a/dep/acelite/ace/Framework_Component_T.h b/dep/acelite/ace/Framework_Component_T.h index 2dcef43e384..a3deaf8fc2c 100644 --- a/dep/acelite/ace/Framework_Component_T.h +++ b/dep/acelite/ace/Framework_Component_T.h @@ -4,7 +4,7 @@ /** * @file Framework_Component_T.h * - * $Id: Framework_Component_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Framework_Component_T.h 92208 2010-10-13 06:20:39Z johnnyw $ * * @author Don Hinton <dhinton@ieee.org> */ @@ -52,9 +52,9 @@ public: ACE_END_VERSIONED_NAMESPACE_DECL -// This macro should be called in the instance() method -// of the Concrete class that will be managed. Along -// with the appropriate template instantiation. +/// This macro should be called in the instance() method +/// of the Concrete class that will be managed. Along +/// with the appropriate template instantiation. #define ACE_REGISTER_FRAMEWORK_COMPONENT(CLASS, INSTANCE) \ ACE_Framework_Repository::instance ()->register_component \ (new ACE_Framework_Component_T<CLASS> (INSTANCE)); diff --git a/dep/acelite/ace/Free_List.h b/dep/acelite/ace/Free_List.h index 7f2ce593c7a..24495d03b2c 100644 --- a/dep/acelite/ace/Free_List.h +++ b/dep/acelite/ace/Free_List.h @@ -4,7 +4,7 @@ /** * @file Free_List.h * - * $Id: Free_List.h 84619 2009-02-26 12:26:16Z johnnyw $ + * $Id: Free_List.h 92298 2010-10-21 11:15:17Z johnnyw $ * * @author Darrell Brunsch (brunsch@cs.wustl.edu) */ @@ -61,7 +61,7 @@ public: * @brief Implements a free list. * * This class maintains a free list of nodes of type T. It - * depends on the type T having a <get_next> and <set_next> + * depends on the type T having a get_next() and set_next() * method. It maintains a mutex so the freelist can be used in * a multithreaded program . */ diff --git a/dep/acelite/ace/Functor.cpp b/dep/acelite/ace/Functor.cpp index 429aaac9f22..4f12670e83e 100644 --- a/dep/acelite/ace/Functor.cpp +++ b/dep/acelite/ace/Functor.cpp @@ -3,7 +3,7 @@ /** * @file Functor.cpp * - * $Id: Functor.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Functor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * Non-inlinable method definitions for non-templatized classes * and template specializations implementing the GOF Command Pattern, @@ -32,7 +32,7 @@ #include "ace/Functor.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Functor, "$Id: Functor.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Functor.h b/dep/acelite/ace/Functor.h index ec1d285061f..cb01630e2fc 100644 --- a/dep/acelite/ace/Functor.h +++ b/dep/acelite/ace/Functor.h @@ -4,7 +4,7 @@ /** * @file Functor.h * - * $Id: Functor.h 86698 2009-09-13 15:58:17Z johnnyw $ + * $Id: Functor.h 92069 2010-09-28 11:38:59Z johnnyw $ * * Non-templatized classes and class template specializations for * implementing function objects that are used in various places @@ -121,67 +121,6 @@ public: unsigned long operator () (unsigned char t) const; }; -#if 0 -// @@ ADD HASHES FOR ACE TYPES - -/** - * @brief Function object for hashing a 16-bit signed number - */ -template<> -class ACE_Export ACE_Hash<ACE_INT16> -{ -public: - /// Simply returns t - unsigned long operator () (ACE_INT16 t) const; -}; - -/** - * @brief Function object for hashing a 16-bit unsigned number - */ -template<> -class ACE_Export ACE_Hash<ACE_UINT16> -{ -public: - /// Simply returns t - unsigned long operator () (ACE_UINT16 t) const; -}; - -/** - * @brief Function object for hashing a 32-bit signed number - */ -template<> -class ACE_Export ACE_Hash<ACE_INT32> -{ -public: - /// Simply returns t - unsigned long operator () (ACE_INT32 t) const; -}; - -/** - * @brief Function object for hashing a 32-bit unsigned number - */ -template<> -class ACE_Export ACE_Hash<ACE_UINT32> -{ -public: - /// Simply returns t - unsigned long operator () (ACE_UINT32 t) const; -}; - -/** - * @brief Function object for hashing a 64-bit unsigned number - */ -template<> -class ACE_Export ACE_Hash<ACE_UINT64> -{ -public: - /// Simply returns t - unsigned long operator () (ACE_UINT64 t) const; -}; - -// @@ DONE ADDING HASHES FOR ACE TYPES -#endif - /** * @brief Function object for hashing a short number */ diff --git a/dep/acelite/ace/Functor.inl b/dep/acelite/ace/Functor.inl index 30e539459a8..46fb002178f 100644 --- a/dep/acelite/ace/Functor.inl +++ b/dep/acelite/ace/Functor.inl @@ -4,7 +4,7 @@ /** * @file Functor.inl * - * $Id: Functor.inl 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Functor.inl 92069 2010-09-28 11:38:59Z johnnyw $ * * Inlinable method definitions for non-templatized classes * and template specializations implementing the GOF Command Pattern, @@ -71,42 +71,6 @@ ACE_Hash<unsigned char>::operator () (unsigned char t) const return t; } -#if 0 -ACE_INLINE unsigned long -ACE_Hash<ACE_INT16>::operator () (ACE_INT16 t) const -{ - return t; -} - -ACE_INLINE unsigned long -ACE_Hash<ACE_UINT16>::operator () (ACE_UINT16 t) const -{ - return t; -} - -ACE_INLINE unsigned long -ACE_Hash<ACE_INT32>::operator () (ACE_INT32 t) const -{ - return static_cast<unsigned long> (t); -} - -ACE_INLINE unsigned long -ACE_Hash<ACE_UINT32>::operator () (ACE_UINT32 t) const -{ - return t; -} - -ACE_INLINE unsigned long -ACE_Hash<ACE_UINT64>::operator () (ACE_UINT64 t) const -{ -#if (ACE_SIZEOF_LONG == 4) - return ACE_U64_TO_U32 (t); -#else - return static_cast<unsigned long> (t); -#endif /* ACE_SIZEOF_LONG */ -} -#endif - ACE_INLINE unsigned long ACE_Hash<short>::operator () (short t) const { diff --git a/dep/acelite/ace/Functor_String.cpp b/dep/acelite/ace/Functor_String.cpp index c113f5cdf6f..055e83a0666 100644 --- a/dep/acelite/ace/Functor_String.cpp +++ b/dep/acelite/ace/Functor_String.cpp @@ -1,7 +1,9 @@ +// $Id: Functor_String.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Functor_String.h" #if !defined (__ACE_INLINE__) #include "ace/Functor_String.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Functor, "$Id: Functor_String.cpp 80826 2008-03-04 14:51:23Z wotte $") + diff --git a/dep/acelite/ace/Functor_T.h b/dep/acelite/ace/Functor_T.h index f055c3c885e..ff087d2019e 100644 --- a/dep/acelite/ace/Functor_T.h +++ b/dep/acelite/ace/Functor_T.h @@ -4,7 +4,7 @@ /** * @file Functor_T.h * - * $Id: Functor_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Functor_T.h 91396 2010-08-19 12:37:24Z johnnyw $ * * Templatized classes for implementing function objects that are * used in various places in ACE. There are currently two major @@ -47,7 +47,8 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** * @class ACE_Command_Callback * - * @brief Defines a class template that allows us to invoke a GOF + * @brief + * Defines a class template that allows us to invoke a GOF * command style callback to an object without knowing anything * about the object except its type. * @@ -60,14 +61,14 @@ template <class RECEIVER, class ACTION> class ACE_Command_Callback : public ACE_Command_Base { public: - /// Constructor: sets the <receiver_> of the Command to recvr, and the - /// <action_> of the Command to <action>. + /// Constructor: sets the @c receiver_ of the Command to @a recvr, and the + /// @c action_ of the Command to @a action. ACE_Command_Callback (RECEIVER &recvr, ACTION action); /// Virtual destructor. virtual ~ACE_Command_Callback (void); - /// Invokes the method <action_> from the object <receiver_>. + /// Invokes the method @c action_ from the object @c receiver_. virtual int execute (void *arg = 0); private: @@ -98,7 +99,8 @@ public: /** * @class ACE_Pointer_Hash * - * @brief Function object for hashing pointers + * @brief + * Function object for hashing pointers */ template <class TYPE> class ACE_Pointer_Hash @@ -111,7 +113,8 @@ public: /** * @class ACE_Equal_To * - * @brief Function object for comparing two objects of + * @brief + * Function object for comparing two objects of * the given type for equality. */ template <class TYPE> @@ -126,7 +129,8 @@ public: /** * @class ACE_Less_Than * - * @brief Function object for determining whether the first object of + * @brief + * Function object for determining whether the first object of * the given type is less than the second object of the same * type. */ diff --git a/dep/acelite/ace/Future.cpp b/dep/acelite/ace/Future.cpp index da40c468f31..5ebb550a68c 100644 --- a/dep/acelite/ace/Future.cpp +++ b/dep/acelite/ace/Future.cpp @@ -1,4 +1,4 @@ - // $Id: Future.cpp 85358 2009-05-17 10:34:33Z johnnyw $ + // $Id: Future.cpp 91626 2010-09-07 10:59:20Z johnnyw $ #ifndef ACE_FUTURE_CPP #define ACE_FUTURE_CPP @@ -9,8 +9,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -ACE_RCSID (ace, Future, "$Id: Future.cpp 85358 2009-05-17 10:34:33Z johnnyw $") - #if defined (ACE_HAS_THREADS) # include "ace/Guard_T.h" @@ -100,7 +98,7 @@ ACE_Future_Rep<T>::attach (ACE_Future_Rep<T>*& rep) { ACE_ASSERT (rep != 0); // Use value_ready_mutex_ for both condition and ref count management - ACE_MT (ACE_Guard<ACE_Recursive_Thread_Mutex> r_mon (rep->value_ready_mutex_)); +// ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, r_mon, rep->value_ready_mutex_, 0); ++rep->ref_count_; return rep; } @@ -110,7 +108,7 @@ ACE_Future_Rep<T>::detach (ACE_Future_Rep<T>*& rep) { ACE_ASSERT (rep != 0); // Use value_ready_mutex_ for both condition and ref count management - ACE_MT (ACE_GUARD (ACE_Recursive_Thread_Mutex, r_mon, rep->value_ready_mutex_)); + ACE_GUARD (ACE_SYNCH_RECURSIVE_MUTEX, r_mon, rep->value_ready_mutex_); if (rep->ref_count_-- == 0) { @@ -128,7 +126,7 @@ ACE_Future_Rep<T>::assign (ACE_Future_Rep<T>*& rep, ACE_Future_Rep<T>* new_rep) ACE_ASSERT (rep != 0); ACE_ASSERT (new_rep != 0); // Use value_ready_mutex_ for both condition and ref count management - ACE_MT (ACE_GUARD (ACE_Recursive_Thread_Mutex, r_mon, rep->value_ready_mutex_)); + ACE_GUARD (ACE_SYNCH_RECURSIVE_MUTEX, r_mon, rep->value_ready_mutex_); ACE_Future_Rep<T>* old = rep; rep = new_rep; @@ -171,10 +169,10 @@ ACE_Future_Rep<T>::set (const T &r, // If the value is already produced, ignore it... if (this->value_ == 0) { - ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, - ace_mon, - this->value_ready_mutex_, - -1)); + ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, + ace_mon, + this->value_ready_mutex_, + -1); // Otherwise, create a new result value. Note the use of the // Double-checked locking pattern to avoid multiple allocations. @@ -212,9 +210,9 @@ ACE_Future_Rep<T>::get (T &value, // If the value is already produced, return it. if (this->value_ == 0) { - ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, - this->value_ready_mutex_, - -1)); + ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, ace_mon, + this->value_ready_mutex_, + -1); // If the value is not yet defined we must block until the // producer writes to it. @@ -234,7 +232,7 @@ template <class T> int ACE_Future_Rep<T>::attach (ACE_Future_Observer<T> *observer, ACE_Future<T> &caller) { - ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, this->value_ready_mutex_, -1)); + ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, ace_mon, this->value_ready_mutex_, -1); // Otherwise, create a new result value. Note the use of the // Double-checked locking pattern to avoid corrupting the list. @@ -253,7 +251,7 @@ ACE_Future_Rep<T>::attach (ACE_Future_Observer<T> *observer, template <class T> int ACE_Future_Rep<T>::detach (ACE_Future_Observer<T> *observer) { - ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, this->value_ready_mutex_, -1)); + ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, ace_mon, this->value_ready_mutex_, -1); // Remove all occurrences of the specified observer from this // objects hash map. @@ -267,7 +265,7 @@ ACE_Future_Rep<T>::operator T () if (this->value_ == 0) { // Constructor of ace_mon acquires the mutex. - ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, this->value_ready_mutex_, 0)); + ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, ace_mon, this->value_ready_mutex_, 0); // If the value is not yet defined we must block until the // producer writes to it. diff --git a/dep/acelite/ace/Future.h b/dep/acelite/ace/Future.h index e30159eaf96..0246263f1e7 100644 --- a/dep/acelite/ace/Future.h +++ b/dep/acelite/ace/Future.h @@ -4,7 +4,7 @@ /** * @file Future.h * - * $Id: Future.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Future.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Andres Kruse <Andres.Kruse@cern.ch> * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> @@ -27,6 +27,7 @@ #if defined (ACE_HAS_THREADS) +#include "ace/Synch_Traits.h" #include "ace/Recursive_Thread_Mutex.h" #include "ace/Condition_Recursive_Thread_Mutex.h" @@ -107,7 +108,7 @@ private: friend class ACE_Future<T>; /** - * Set the result value. The specified <caller> represents the + * Set the result value. The specified @a caller represents the * future that invoked this <set> method, which is used to notify * the list of future observers. Returns 0 for success, -1 on error. * This function only has an effect the first time it is called for @@ -214,8 +215,8 @@ private: OBSERVER_COLLECTION observer_collection_; // = Condition variable and mutex that protect the <value_>. - mutable ACE_Recursive_Thread_Mutex value_ready_mutex_; - mutable ACE_Condition_Recursive_Thread_Mutex value_ready_; + mutable ACE_SYNCH_RECURSIVE_MUTEX value_ready_mutex_; + mutable ACE_SYNCH_RECURSIVE_CONDITION value_ready_; private: @@ -303,8 +304,7 @@ public: * @retval 0 Success; @a value contains the value of the ACE_Future. * @retval -1 Error; check ACE_OS::last_error() for an error code. */ - int get (T &value, - ACE_Time_Value *tv = 0) const; + int get (T &value, ACE_Time_Value *tv = 0) const; /** * @deprecated Note that this method is going away in a subsequent @@ -364,7 +364,7 @@ public: private: - // the ACE_Future_Rep + /// The ACE_Future_Rep /// Protect operations on the <Future>. typedef ACE_Future_Rep<T> FUTURE_REP; FUTURE_REP *future_rep_; diff --git a/dep/acelite/ace/Future_Set.cpp b/dep/acelite/ace/Future_Set.cpp index a40b0700dc5..986ce948c34 100644 --- a/dep/acelite/ace/Future_Set.cpp +++ b/dep/acelite/ace/Future_Set.cpp @@ -1,4 +1,4 @@ -// $Id: Future_Set.cpp 88128 2009-12-14 02:17:22Z schmidt $ +// $Id: Future_Set.cpp 91626 2010-09-07 10:59:20Z johnnyw $ #ifndef ACE_FUTURE_SET_CPP #define ACE_FUTURE_SET_CPP @@ -83,7 +83,7 @@ ACE_Future_Set<T>::insert (ACE_Future<T> &future) template <class T> void ACE_Future_Set<T>::update (const ACE_Future<T> &future) { - ACE_Message_Block *mb; + ACE_Message_Block *mb = 0; FUTURE &local_future = const_cast<ACE_Future<T> &> (future); ACE_NEW (mb, diff --git a/dep/acelite/ace/Future_Set.h b/dep/acelite/ace/Future_Set.h index 3d07f4f73e2..d8515242085 100644 --- a/dep/acelite/ace/Future_Set.h +++ b/dep/acelite/ace/Future_Set.h @@ -4,7 +4,7 @@ /** * @file Future_Set.h * - * $Id: Future_Set.h 88128 2009-12-14 02:17:22Z schmidt $ + * $Id: Future_Set.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author John Tucker <jtucker@infoglide.com> */ @@ -41,7 +41,8 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * using the ACE_Future_Set::next_readable() method. */ template <class T> -class ACE_Future_Set : public ACE_Future_Observer<T> +class ACE_Future_Set : public ACE_Future_Observer<T>, + private ACE_Copy_Disabled { public: // = Initialization and termination methods. @@ -99,10 +100,6 @@ public: ACE_ALLOC_HOOK_DECLARE; private: - // = Disallow these operations. - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Future_Set<T> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Future_Set (const ACE_Future_Set<T> &)) - typedef ACE_Future<T> FUTURE; typedef ACE_Future_Rep<T> FUTURE_REP; diff --git a/dep/acelite/ace/Get_Opt.cpp b/dep/acelite/ace/Get_Opt.cpp index 915ff8a87a9..5953abe1810 100644 --- a/dep/acelite/ace/Get_Opt.cpp +++ b/dep/acelite/ace/Get_Opt.cpp @@ -1,4 +1,4 @@ -// $Id: Get_Opt.cpp 81840 2008-06-05 13:46:45Z sma $ +// $Id: Get_Opt.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Get_Opt.h" @@ -14,10 +14,6 @@ #include "ace/OS_NS_ctype.h" #include "ace/OS_NS_stdlib.h" -ACE_RCSID (ace, - Get_Opt, - "$Id: Get_Opt.cpp 81840 2008-06-05 13:46:45Z sma $") - /* * Copyright (c) 1987, 1993, 1994 * The Regents of the University of California. All rights reserved. diff --git a/dep/acelite/ace/Global_Macros.h b/dep/acelite/ace/Global_Macros.h index d1bf6420b05..bce0544e1a6 100644 --- a/dep/acelite/ace/Global_Macros.h +++ b/dep/acelite/ace/Global_Macros.h @@ -4,7 +4,7 @@ /** * @file Global_Macros.h * - * $Id: Global_Macros.h 82442 2008-07-28 13:11:29Z johnnyw $ + * $Id: Global_Macros.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> * @author Jesper S. M|ller<stophph@diku.dk> @@ -104,90 +104,92 @@ ACE_END_VERSIONED_NAMESPACE_DECL # define ACE_UNIMPLEMENTED_FUNC(f) f; # endif /* ACE_NEEDS_FUNC_DEFINITIONS */ -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - // Easy way to designate that a class is used as a pseudo-namespace. - // Insures that g++ "friendship" anamolies are properly handled. - # define ACE_CLASS_IS_NAMESPACE(CLASSNAME) \ - private: \ - CLASSNAME (void); \ - CLASSNAME (const CLASSNAME&); \ - friend class ace_dewarn_gplusplus -#endif /* ACE_LACKS_DEPRECATED_MACROS */ - -// ---------------------------------------------------------------- - -//FUZZ: disable check_for_exception_sepc -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - #if defined (ACE_HAS_NO_THROW_SPEC) - # define ACE_THROW_SPEC(X) - #else - # if defined (ACE_HAS_EXCEPTIONS) - # if defined (ACE_WIN32) && defined (_MSC_VER) && \ - (_MSC_VER >= 1400) && (_MSC_VER <= 1500) - # define ACE_THROW_SPEC(X) throw(...) - # else - # define ACE_THROW_SPEC(X) throw X - # endif /* ACE_WIN32 && VC8 */ - # else /* ! ACE_HAS_EXCEPTIONS */ - # define ACE_THROW_SPEC(X) - # endif /* ! ACE_HAS_EXCEPTIONS */ - #endif /*ACE_HAS_NO_THROW_SPEC*/ -#endif /* ACE_LACKS_DEPRECATED_MACROS */ -//FUZZ: enable check_for_exception_sepc - // ---------------------------------------------------------------- -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - /** - * This macro is deprecated - */ - #define ACE_NESTED_CLASS(TYPE, NAME) TYPE::NAME -#endif /* ACE_LACKS_DEPRECATED_MACROS */ - -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - /** - * @name CORBA namespace macros. - * - * CORBA namespace macros. - * - * @deprecated These macros were formerly used by TAO but are now - * deprecated, and only remain to retain some backward - * compatibility. They will be removed in a future ACE - * release. - */ - //@{ - #define ACE_CORBA_1(NAME) CORBA::NAME - #define ACE_CORBA_2(TYPE, NAME) CORBA::TYPE::NAME - #define ACE_CORBA_3(TYPE, NAME) CORBA::TYPE::NAME - //@} -#endif /* ACE_LACKS_DEPRECATED_MACROS */ - -// ---------------------------------------------------------------- +// FUZZ: disable check_for_ACE_Guard // Convenient macro for testing for deadlock, as well as for detecting // when mutexes fail. +/* @warning + * Use of ACE_GUARD() is rarely correct. ACE_GUARD() causes the current + * function to return if the lock is not acquired. Since merely returning + * (no value) almost certainly fails to handle the acquisition failure + * and almost certainly fails to communicate the failure to the caller + * for the caller to handle, ACE_GUARD() is almost always the wrong + * thing to do. The same goes for ACE_WRITE_GUARD() and ACE_READ_GUARD() . + * ACE_GUARD_REACTION() is better because it lets you specify error + * handling code. + */ +#if !defined (ACE_GUARD_ACTION) #define ACE_GUARD_ACTION(MUTEX, OBJ, LOCK, ACTION, REACTION) \ ACE_Guard< MUTEX > OBJ (LOCK); \ if (OBJ.locked () != 0) { ACTION; } \ else { REACTION; } +#endif /* !ACE_GUARD_ACTION */ +#if !defined (ACE_GUARD_REACTION) #define ACE_GUARD_REACTION(MUTEX, OBJ, LOCK, REACTION) \ ACE_GUARD_ACTION(MUTEX, OBJ, LOCK, ;, REACTION) +#endif /* !ACE_GUARD_REACTION */ +#if !defined (ACE_GUARD) #define ACE_GUARD(MUTEX, OBJ, LOCK) \ ACE_GUARD_REACTION(MUTEX, OBJ, LOCK, return) +#endif /* !ACE_GUARD */ +#if !defined (ACE_GUARD_RETURN) #define ACE_GUARD_RETURN(MUTEX, OBJ, LOCK, RETURN) \ ACE_GUARD_REACTION(MUTEX, OBJ, LOCK, return RETURN) +#endif /* !ACE_GUARD_RETURN */ +#if !defined (ACE_WRITE_GUARD) # define ACE_WRITE_GUARD(MUTEX,OBJ,LOCK) \ ACE_Write_Guard< MUTEX > OBJ (LOCK); \ if (OBJ.locked () == 0) return; +#endif /* !ACE_WRITE_GUARD */ +#if !defined (ACE_WRITE_GUARD_RETURN) # define ACE_WRITE_GUARD_RETURN(MUTEX,OBJ,LOCK,RETURN) \ ACE_Write_Guard< MUTEX > OBJ (LOCK); \ if (OBJ.locked () == 0) return RETURN; +#endif /* ACE_WRITE_GUARD_RETURN */ +#if !defined (ACE_READ_GUARD) # define ACE_READ_GUARD(MUTEX,OBJ,LOCK) \ ACE_Read_Guard< MUTEX > OBJ (LOCK); \ if (OBJ.locked () == 0) return; +#endif /* !ACE_READ_GUARD */ +#if !defined (ACE_READ_GUARD_RETURN) # define ACE_READ_GUARD_RETURN(MUTEX,OBJ,LOCK,RETURN) \ ACE_Read_Guard< MUTEX > OBJ (LOCK); \ if (OBJ.locked () == 0) return RETURN; +#endif /* !ACE_READ_GUARD_RETURN */ +// FUZZ: enable check_for_ACE_Guard + +// ---------------------------------------------------------------- + +#if defined(ACE_UNEXPECTED_RETURNS) + +/* Using ACE_UNEXPECTED_RETURNS is ill-advised because, in many cases, + * it fails to inform callers of the error condition. + * It exists mainly to provide back-compatibility with old, dangerous, + * incorrect behavior. + * Code that previously used ACE_GUARD() or ACE_GUARD_RETURN() to return + * upon failure to acquire a lock can now use: + * ACE_GUARD_REACTION(..., ACE_UNEXPECTED(...)) + * The behavior of this depends on whether or not ACE_UNEXPECTED_RETURNS + * is defined. If so, it just returns upon failure (as in the original), + * which is usually dangerous because it usually fails to handle the + * error. If not, it calls std::unexpected(), which does whatever the + * std::unexpected handler does (which is to abort, by default). + */ +# define ACE_UNEXPECTED(RETVAL) \ + do { \ + return RETVAL; \ + } while (0) + +#else + +# define ACE_UNEXPECTED(RETVAL) \ + do { \ + std::unexpected(); \ + } while (0) + +#endif // ---------------------------------------------------------------- @@ -925,15 +927,6 @@ ACE_MAKE_SVC_CONFIG_FACTORY_NAME(ACE_VERSIONED_NAMESPACE_NAME,SERVICE_CLASS) (AC # define ACE_SEH_FINALLY if (1) #endif /* ACE_WIN32 */ -// These should probably be put into a seperate header. - -// The following is necessary since many C++ compilers don't support -// typedef'd types inside of classes used as formal template -// arguments... ;-(. Luckily, using the C++ preprocessor I can hide -// most of this nastiness! - -# if defined (ACE_HAS_TEMPLATE_TYPEDEFS) - // Handle ACE_Message_Queue. # define ACE_SYNCH_DECL class _ACE_SYNCH # define ACE_SYNCH_USE _ACE_SYNCH @@ -1004,10 +997,6 @@ ACE_MAKE_SVC_CONFIG_FACTORY_NAME(ACE_VERSIONED_NAMESPACE_NAME,SERVICE_CLASS) (AC # define ACE_UPIPE_CONNECTOR ACE_UPIPE_Connector # define ACE_UPIPE_STREAM ACE_UPIPE_Stream -// Handle ACE_FILE_* -# define ACE_FILE_CONNECTOR ACE_FILE_Connector -# define ACE_FILE_STREAM ACE_FILE_IO - // Handle ACE_*_Memory_Pool. # define ACE_MMAP_MEMORY_POOL ACE_MMAP_Memory_Pool # define ACE_LITE_MMAP_MEMORY_POOL ACE_Lite_MMAP_Memory_Pool @@ -1016,96 +1005,6 @@ ACE_MAKE_SVC_CONFIG_FACTORY_NAME(ACE_VERSIONED_NAMESPACE_NAME,SERVICE_CLASS) (AC # define ACE_LOCAL_MEMORY_POOL ACE_Local_Memory_Pool # define ACE_PAGEFILE_MEMORY_POOL ACE_Pagefile_Memory_Pool -# else /* TEMPLATES are broken in some form or another (i.e., most C++ compilers) */ - -// Handle ACE_Message_Queue. -# if defined (ACE_HAS_OPTIMIZED_MESSAGE_QUEUE) -# define ACE_SYNCH_DECL class _ACE_SYNCH_MUTEX_T, class _ACE_SYNCH_CONDITION_T, class _ACE_SYNCH_SEMAPHORE_T -# define ACE_SYNCH_USE _ACE_SYNCH_MUTEX_T, _ACE_SYNCH_CONDITION_T, _ACE_SYNCH_SEMAPHORE_T -# else -# define ACE_SYNCH_DECL class _ACE_SYNCH_MUTEX_T, class _ACE_SYNCH_CONDITION_T -# define ACE_SYNCH_USE _ACE_SYNCH_MUTEX_T, _ACE_SYNCH_CONDITION_T -# endif /* ACE_HAS_OPTIMIZED_MESSAGE_QUEUE */ -# define ACE_SYNCH_MUTEX_T _ACE_SYNCH_MUTEX_T -# define ACE_SYNCH_CONDITION_T _ACE_SYNCH_CONDITION_T -# define ACE_SYNCH_SEMAPHORE_T _ACE_SYNCH_SEMAPHORE_T - -// Handle ACE_Malloc* -# define ACE_MEM_POOL_1 class _ACE_MEM_POOL, class _ACE_MEM_POOL_OPTIONS -# define ACE_MEM_POOL_2 _ACE_MEM_POOL, _ACE_MEM_POOL_OPTIONS -# define ACE_MEM_POOL _ACE_MEM_POOL -# define ACE_MEM_POOL_OPTIONS _ACE_MEM_POOL_OPTIONS - -// Handle ACE_Svc_Handler -# define ACE_PEER_STREAM_1 class _ACE_PEER_STREAM, class _ACE_PEER_ADDR -# define ACE_PEER_STREAM_2 _ACE_PEER_STREAM, _ACE_PEER_ADDR -# define ACE_PEER_STREAM _ACE_PEER_STREAM -# define ACE_PEER_STREAM_ADDR _ACE_PEER_ADDR - -// Handle ACE_Acceptor -# define ACE_PEER_ACCEPTOR_1 class _ACE_PEER_ACCEPTOR, class _ACE_PEER_ADDR -# define ACE_PEER_ACCEPTOR_2 _ACE_PEER_ACCEPTOR, _ACE_PEER_ADDR -# define ACE_PEER_ACCEPTOR _ACE_PEER_ACCEPTOR -# define ACE_PEER_ACCEPTOR_ADDR _ACE_PEER_ADDR - -// Handle ACE_Connector -# define ACE_PEER_CONNECTOR_1 class _ACE_PEER_CONNECTOR, class _ACE_PEER_ADDR -# define ACE_PEER_CONNECTOR_2 _ACE_PEER_CONNECTOR, _ACE_PEER_ADDR -# define ACE_PEER_CONNECTOR _ACE_PEER_CONNECTOR -# define ACE_PEER_CONNECTOR_ADDR _ACE_PEER_ADDR -# define ACE_PEER_CONNECTOR_ADDR_ANY ACE_PEER_CONNECTOR_ADDR::sap_any - -// Handle ACE_SOCK_* -# define ACE_SOCK_ACCEPTOR ACE_SOCK_Acceptor, ACE_INET_Addr -# define ACE_SOCK_CONNECTOR ACE_SOCK_Connector, ACE_INET_Addr -# define ACE_SOCK_STREAM ACE_SOCK_Stream, ACE_INET_Addr -# define ACE_SOCK_DGRAM ACE_SOCK_Dgram, ACE_INET_Addr -# define ACE_SOCK_DGRAM_BCAST ACE_SOCK_Dgram_Bcast, ACE_INET_Addr -# define ACE_SOCK_DGRAM_MCAST ACE_SOCK_Dgram_Mcast, ACE_INET_Addr - -// Handle ACE_SOCK_SEQPACK_* -# define ACE_SOCK_SEQPACK_ACCEPTOR ACE_SOCK_SEQPACK_Acceptor, ACE_Multihomed_INET_Addr -# define ACE_SOCK_SEQPACK_CONNECTOR ACE_SOCK_SEQPACK_Connector, ACE_Multihomed_INET_Addr -# define ACE_SOCK_SEQPACK_ASSOCIATION ACE_SOCK_SEQPACK_Association, ACE_Multihomed_INET_Addr - -// Handle ACE_MEM_* -# define ACE_MEM_ACCEPTOR ACE_MEM_Acceptor, ACE_MEM_Addr -# define ACE_MEM_CONNECTOR ACE_MEM_Connector, ACE_INET_Addr -# define ACE_MEM_STREAM ACE_MEM_Stream, ACE_INET_Addr - -// Handle ACE_LSOCK_* -# define ACE_LSOCK_ACCEPTOR ACE_LSOCK_Acceptor, ACE_UNIX_Addr -# define ACE_LSOCK_CONNECTOR ACE_LSOCK_Connector, ACE_UNIX_Addr -# define ACE_LSOCK_STREAM ACE_LSOCK_Stream, ACE_UNIX_Addr - -// Handle ACE_TLI_* -# define ACE_TLI_ACCEPTOR ACE_TLI_Acceptor, ACE_INET_Addr -# define ACE_TLI_CONNECTOR ACE_TLI_Connector, ACE_INET_Addr -# define ACE_TLI_STREAM ACE_TLI_Stream, ACE_INET_Addr - -// Handle ACE_SPIPE_* -# define ACE_SPIPE_ACCEPTOR ACE_SPIPE_Acceptor, ACE_SPIPE_Addr -# define ACE_SPIPE_CONNECTOR ACE_SPIPE_Connector, ACE_SPIPE_Addr -# define ACE_SPIPE_STREAM ACE_SPIPE_Stream, ACE_SPIPE_Addr - -// Handle ACE_UPIPE_* -# define ACE_UPIPE_ACCEPTOR ACE_UPIPE_Acceptor, ACE_SPIPE_Addr -# define ACE_UPIPE_CONNECTOR ACE_UPIPE_Connector, ACE_SPIPE_Addr -# define ACE_UPIPE_STREAM ACE_UPIPE_Stream, ACE_SPIPE_Addr - -// Handle ACE_FILE_* -# define ACE_FILE_CONNECTOR ACE_FILE_Connector, ACE_FILE_Addr -# define ACE_FILE_STREAM ACE_FILE_IO, ACE_FILE_Addr - -// Handle ACE_*_Memory_Pool. -# define ACE_MMAP_MEMORY_POOL ACE_MMAP_Memory_Pool, ACE_MMAP_Memory_Pool_Options -# define ACE_LITE_MMAP_MEMORY_POOL ACE_Lite_MMAP_Memory_Pool, ACE_MMAP_Memory_Pool_Options -# define ACE_SBRK_MEMORY_POOL ACE_Sbrk_Memory_Pool, ACE_Sbrk_Memory_Pool_Options -# define ACE_SHARED_MEMORY_POOL ACE_Shared_Memory_Pool, ACE_Shared_Memory_Pool_Options -# define ACE_LOCAL_MEMORY_POOL ACE_Local_Memory_Pool, ACE_Local_Memory_Pool_Options -# define ACE_PAGEFILE_MEMORY_POOL ACE_Pagefile_Memory_Pool, ACE_Pagefile_Memory_Pool_Options -# endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ - // Work around compilers that don't like in-class static integral // constants. Constants in this case are meant to be compile-time // constants so that they may be used as template arguments, for diff --git a/dep/acelite/ace/Guard_T.cpp b/dep/acelite/ace/Guard_T.cpp index 2090ddda2b7..90321c6ac4e 100644 --- a/dep/acelite/ace/Guard_T.cpp +++ b/dep/acelite/ace/Guard_T.cpp @@ -1,8 +1,10 @@ -// $Id: Guard_T.cpp 85141 2009-04-22 08:48:30Z johnnyw $ +// $Id: Guard_T.cpp 92052 2010-09-27 14:20:22Z vzykov $ #ifndef ACE_GUARD_T_CPP #define ACE_GUARD_T_CPP +// FUZZ: disable check_for_ACE_Guard + #include "ace/Guard_T.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) @@ -32,7 +34,7 @@ ACE_Guard<ACE_LOCK>::dump (void) const ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("mutex_ = %x\n"), this->lock_)); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("owner_ = %d\n"), this->owner_)); - ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP, this)); + ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); #endif /* ACE_HAS_DUMP */ } diff --git a/dep/acelite/ace/Guard_T.h b/dep/acelite/ace/Guard_T.h index aee5c266c63..5120d3f7a57 100644 --- a/dep/acelite/ace/Guard_T.h +++ b/dep/acelite/ace/Guard_T.h @@ -4,7 +4,7 @@ /** * @file Guard_T.h * - * $Id: Guard_T.h 83306 2008-10-17 12:19:53Z johnnyw $ + * $Id: Guard_T.h 91626 2010-09-07 10:59:20Z johnnyw $ * * Moved from Synch.h. * @@ -25,18 +25,43 @@ #include "ace/Global_Macros.h" #include "ace/OS_NS_Thread.h" +// FUZZ: disable check_for_ACE_Guard + ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** * @class ACE_Guard * * @brief This data structure is meant to be used within a method or - * function... It performs automatic aquisition and release of + * function... It performs automatic acquisition and release of * a parameterized synchronization object ACE_LOCK. * - * The <ACE_LOCK> class given as an actual parameter must provide at + * The <ACE_LOCK> class given as an actual parameter must provide, at * the very least the <acquire>, <tryacquire>, <release>, and * <remove> methods. + * + * @warning A successfully constructed ACE_Guard does NOT mean that the + * lock was acquired! It is the caller's responsibility, after + * constructing an ACE_Guard, to check whether the lock was successfully + * acquired. Code like this is dangerous: + * { + * ACE_Guard<ACE_Lock> g(lock); + * ... perform critical operation requiring lock to be held ... + * } + * Instead, one must do something like this: + * { + * ACE_Guard<ACE_Lock> g(lock); + * if (! g.locked()) + * { + * ... handle error ... + * } + * else + * { + * ... perform critical operation requiring lock to be held ... + * } + * } + * The ACE_GUARD_RETURN() and ACE_GUARD_REACTION() macros are designed to + * to help with this. */ template <class ACE_LOCK> class ACE_Guard @@ -114,6 +139,8 @@ private: * acquires/releases a write lock automatically (naturally, the * <ACE_LOCK> it is instantiated with must support the appropriate * API). + * + * @warning See important "WARNING" in comments at top of ACE_Guard. */ template <class ACE_LOCK> class ACE_Write_Guard : public ACE_Guard<ACE_LOCK> @@ -158,6 +185,8 @@ public: * acquires/releases a read lock automatically (naturally, the * <ACE_LOCK> it is instantiated with must support the appropriate * API). + * + * @warning See important "WARNING" in comments at top of ACE_Guard. */ template <class ACE_LOCK> class ACE_Read_Guard : public ACE_Guard<ACE_LOCK> @@ -214,7 +243,7 @@ public: * is released even if a thread exits via <thr_exit>! */ template <class ACE_LOCK> -class ACE_TSS_Guard +class ACE_TSS_Guard : private ACE_Copy_Disabled { public: // = Initialization and termination methods. @@ -261,9 +290,9 @@ protected: ACE_thread_key_t key_; private: - // = Prevent assignment and initialization. - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Guard<ACE_LOCK> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Guard (const ACE_TSS_Guard<ACE_LOCK> &)) + // FUZZ: disable check_for_ACE_Guard + typedef ACE_Guard<ACE_LOCK> Guard_Type; + // FUZZ: enable check_for_ACE_Guard }; /** @@ -304,6 +333,11 @@ public: // ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. +private: + // FUZZ: disable check_for_ACE_Guard + typedef ACE_Guard<ACE_LOCK> Guard_Type; + typedef ACE_Write_Guard<ACE_LOCK> Write_Guard_Type; + // FUZZ: enable check_for_ACE_Guard }; /** @@ -343,6 +377,11 @@ public: // ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. +private: + // FUZZ: disable check_for_ACE_Guard + typedef ACE_Guard<ACE_LOCK> Guard_Type; + typedef ACE_Read_Guard<ACE_LOCK> Read_Guard_Type; + // FUZZ: enable check_for_ACE_Guard }; #endif /* !(defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION))) */ diff --git a/dep/acelite/ace/Guard_T.inl b/dep/acelite/ace/Guard_T.inl index 3e7d5b61f8d..9c313a0fa2c 100644 --- a/dep/acelite/ace/Guard_T.inl +++ b/dep/acelite/ace/Guard_T.inl @@ -1,6 +1,8 @@ // -*- C++ -*- // -// $Id: Guard_T.inl 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: Guard_T.inl 91626 2010-09-07 10:59:20Z johnnyw $ + +// FUZZ: disable check_for_ACE_Guard #include "ace/RW_Thread_Mutex.h" diff --git a/dep/acelite/ace/Handle_Ops.cpp b/dep/acelite/ace/Handle_Ops.cpp index 0ec856cf1c9..651e0e69988 100644 --- a/dep/acelite/ace/Handle_Ops.cpp +++ b/dep/acelite/ace/Handle_Ops.cpp @@ -1,4 +1,4 @@ -// $Id: Handle_Ops.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Handle_Ops.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Handle_Ops.h" @@ -6,10 +6,6 @@ #include "ace/OS_NS_fcntl.h" #include "ace/Time_Value.h" -ACE_RCSID (ace, - Handle_Ops, - "$Id: Handle_Ops.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Handle_Set.cpp b/dep/acelite/ace/Handle_Set.cpp index 168acca86cd..ba64fb3443f 100644 --- a/dep/acelite/ace/Handle_Set.cpp +++ b/dep/acelite/ace/Handle_Set.cpp @@ -1,5 +1,5 @@ // Handle_Set.cpp -// $Id: Handle_Set.cpp 83306 2008-10-17 12:19:53Z johnnyw $ +// $Id: Handle_Set.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Handle_Set.h" @@ -9,7 +9,7 @@ #include "ace/OS_NS_string.h" -ACE_RCSID(ace, Handle_Set, "$Id: Handle_Set.cpp 83306 2008-10-17 12:19:53Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Handle_Set.h b/dep/acelite/ace/Handle_Set.h index 11188f9fc38..0de5c98ea4f 100644 --- a/dep/acelite/ace/Handle_Set.h +++ b/dep/acelite/ace/Handle_Set.h @@ -4,7 +4,7 @@ /** * @file Handle_Set.h * - * $Id: Handle_Set.h 82723 2008-09-16 09:35:44Z johnnyw $ + * $Id: Handle_Set.h 92298 2010-10-21 11:15:17Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -196,10 +196,10 @@ public: ACE_ALLOC_HOOK_DECLARE; private: - /// The <Handle_Set> we are iterating through. + /// The Handle_Set we are iterating through. const ACE_Handle_Set &handles_; - /// Index of the bit we're examining in the current <word_num_> word. + /// Index of the bit we're examining in the current word_num_() word. #if defined (ACE_WIN32) u_int handle_index_; #elif !defined (ACE_HAS_BIG_FD_SET) diff --git a/dep/acelite/ace/Hash_Cache_Map_Manager_T.cpp b/dep/acelite/ace/Hash_Cache_Map_Manager_T.cpp index 2d9f163c5d3..ad333543ade 100644 --- a/dep/acelite/ace/Hash_Cache_Map_Manager_T.cpp +++ b/dep/acelite/ace/Hash_Cache_Map_Manager_T.cpp @@ -1,4 +1,4 @@ -// $Id: Hash_Cache_Map_Manager_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Hash_Cache_Map_Manager_T.cpp 92097 2010-09-30 05:41:49Z msmit $ #ifndef ACE_HASH_CACHE_MAP_MANAGER_T_CPP #define ACE_HASH_CACHE_MAP_MANAGER_T_CPP @@ -54,7 +54,7 @@ ACE_Hash_Cache_Map_Manager<ACE_T2>::bind (const KEY &key, { int result = this->caching_strategy_.notify_bind (bind_result, - cache_value.second ()); + cache_value.second); if (result == -1) { @@ -164,7 +164,7 @@ ACE_Hash_Cache_Map_Manager<ACE_T2>::find (const KEY &key, { int result = this->caching_strategy_.notify_find (find_result, - entry->int_id_.second ()); + entry->int_id_.second); // Unless the find and notification operations go thru, this // method is not successful. @@ -189,7 +189,7 @@ ACE_Hash_Cache_Map_Manager<ACE_T2>::find (const KEY &key, if (result != -1) { - value = entry->int_id_.first (); + value = entry->int_id_.first; } return result; @@ -214,7 +214,7 @@ ACE_Hash_Cache_Map_Manager<ACE_T2>::unbind (CACHE_ENTRY *entry) { int result = this->caching_strategy_.notify_unbind (unbind_result, - entry->int_id_.second ()); + entry->int_id_.second); if (result == -1) unbind_result = -1; diff --git a/dep/acelite/ace/Hash_Cache_Map_Manager_T.h b/dep/acelite/ace/Hash_Cache_Map_Manager_T.h index 7d54e1fba93..0bc64a5a9ed 100644 --- a/dep/acelite/ace/Hash_Cache_Map_Manager_T.h +++ b/dep/acelite/ace/Hash_Cache_Map_Manager_T.h @@ -4,7 +4,7 @@ /** * @file Hash_Cache_Map_Manager_T.h * - * $Id: Hash_Cache_Map_Manager_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Hash_Cache_Map_Manager_T.h 92097 2010-09-30 05:41:49Z msmit $ * * @author Kirthika Parameswaran <kirthika@cs.wustl.edu> */ @@ -33,9 +33,9 @@ class ACE_Allocator; #define ACE_CACHE_MAP_MANAGER \ ACE_Cache_Map_Manager<KEY, \ VALUE, \ - ACE_Hash_Map_Manager_Ex<KEY, ACE_Pair<VALUE, ATTRIBUTES>, HASH_KEY, COMPARE_KEYS, ACE_Null_Mutex>, \ - ACE_Hash_Map_Iterator_Ex<KEY, ACE_Pair<VALUE, ATTRIBUTES>, HASH_KEY, COMPARE_KEYS, ACE_Null_Mutex>, \ - ACE_Hash_Map_Reverse_Iterator_Ex<KEY, ACE_Pair<VALUE, ATTRIBUTES>, HASH_KEY, COMPARE_KEYS, ACE_Null_Mutex>, \ + ACE_Hash_Map_Manager_Ex<KEY, std::pair<VALUE, ATTRIBUTES>, HASH_KEY, COMPARE_KEYS, ACE_Null_Mutex>, \ + ACE_Hash_Map_Iterator_Ex<KEY, std::pair<VALUE, ATTRIBUTES>, HASH_KEY, COMPARE_KEYS, ACE_Null_Mutex>, \ + ACE_Hash_Map_Reverse_Iterator_Ex<KEY, std::pair<VALUE, ATTRIBUTES>, HASH_KEY, COMPARE_KEYS, ACE_Null_Mutex>, \ CACHING_STRATEGY, \ ATTRIBUTES> @@ -71,7 +71,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER * are used by the strategy and is transparent to the user of this * class. */ - typedef ACE_Pair<VALUE, ATTRIBUTES> CACHE_VALUE; + typedef std::pair<VALUE, ATTRIBUTES> CACHE_VALUE; typedef ACE_Hash_Map_Manager_Ex<KEY, CACHE_VALUE, HASH_KEY, COMPARE_KEYS, ACE_Null_Mutex> HASH_MAP; typedef ACE_Hash_Map_Entry<KEY, CACHE_VALUE> CACHE_ENTRY; typedef KEY key_type; diff --git a/dep/acelite/ace/Hash_Map_Manager_T.h b/dep/acelite/ace/Hash_Map_Manager_T.h index de2fde62312..6b754341ac3 100644 --- a/dep/acelite/ace/Hash_Map_Manager_T.h +++ b/dep/acelite/ace/Hash_Map_Manager_T.h @@ -1,10 +1,10 @@ -// -*- C++ -*- +// // -*- C++ -*- //============================================================================= /** * @file Hash_Map_Manager_T.h * - * $Id: Hash_Map_Manager_T.h 84477 2009-02-16 13:30:38Z johnnyw $ + * $Id: Hash_Map_Manager_T.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -765,8 +765,8 @@ protected: * ACE_Hash_Map_Manager_Ex it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * ACE_Guard or ACE_Read_Guard on the ACE_Hash_Map_Manager_Ex's - * internal lock, which is accessible via its <mutex> method. + * ACE_GUARD or ACE_READ_GUARD on the ACE_Hash_Map_Manager_Ex's + * internal lock, which is accessible via its mutex() method. */ template <class EXT_ID, class INT_ID, class HASH_KEY, class COMPARE_KEYS, class ACE_LOCK> class ACE_Hash_Map_Iterator_Ex : public ACE_Hash_Map_Iterator_Base_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> @@ -835,8 +835,8 @@ public: * ACE_Hash_Map_Manager_Ex it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * ACE_Guard or ACE_Read_Guard on the ACE_Hash_Map_Manager_Ex's - * internal lock, which is accessible via its <mutex> method. + * ACE_GUARD or ACE_READ_GUARD on the ACE_Hash_Map_Manager_Ex's + * internal lock, which is accessible via its mutex() method. */ template <class EXT_ID, class INT_ID, class HASH_KEY, class COMPARE_KEYS, class ACE_LOCK> class ACE_Hash_Map_Const_Iterator_Ex : public ACE_Hash_Map_Const_Iterator_Base_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> @@ -894,8 +894,8 @@ public: * ACE_Hash_Map_Manager_Ex it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * ACE_Guard or ACE_Read_Guard on the ACE_Hash_Map_Manager_Ex's - * internal lock, which is accessible via its <mutex> method. + * ACE_GUARD or ACE_READ_GUARD on the ACE_Hash_Map_Manager_Ex's + * internal lock, which is accessible via its mutex() method. * * Note that a creation method for this new iterator cannot be added * to the hash map, since this would require adding explicit template @@ -979,8 +979,8 @@ protected: * ACE_Hash_Map_Manager_Ex it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * ACE_Guard or ACE_Read_Guard on the ACE_Hash_Map_Manager_Ex's - * internal lock, which is accessible via its <mutex> method. + * ACE_GUARD or ACE_READ_GUARD on the ACE_Hash_Map_Manager_Ex's + * internal lock, which is accessible via its mutex() method. */ template <class EXT_ID, class INT_ID, class HASH_KEY, class COMPARE_KEYS, class ACE_LOCK> class ACE_Hash_Map_Reverse_Iterator_Ex : public ACE_Hash_Map_Iterator_Base_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> @@ -1036,7 +1036,7 @@ public: * ACE_Hash_Map_Manager_Ex it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * ACE_Guard or ACE_Read_Guard on the ACE_Hash_Map_Manager_Ex's + * ACE_GUARD or ACE_READ_GUARD on the ACE_Hash_Map_Manager_Ex's * internal lock, which is accessible via its <mutex> method. */ template <class EXT_ID, class INT_ID, class HASH_KEY, class COMPARE_KEYS, class ACE_LOCK> diff --git a/dep/acelite/ace/Hash_Map_With_Allocator_T.h b/dep/acelite/ace/Hash_Map_With_Allocator_T.h index 8ac9a41ef28..bdfba00fb93 100644 --- a/dep/acelite/ace/Hash_Map_With_Allocator_T.h +++ b/dep/acelite/ace/Hash_Map_With_Allocator_T.h @@ -4,7 +4,7 @@ /** * @file Hash_Map_With_Allocator_T.h * - * $Id: Hash_Map_With_Allocator_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Hash_Map_With_Allocator_T.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Marina Spivak <marina@cs.wustl.edu> * @author Irfan Pyarali <irfan@cs.wustl.edu> @@ -42,7 +42,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * is meaningful! That is why we need this wrapper, which * insures that appropriate allocator pointer is in place for * each call. - * + * * At some point it would be a good idea to update this class to * use the new "two allocator" technique provided by @c * ACE_Hash_Map_Manager_Ex. diff --git a/dep/acelite/ace/Hash_Multi_Map_Manager_T.cpp b/dep/acelite/ace/Hash_Multi_Map_Manager_T.cpp index f4ea66fbb22..db79e018793 100644 --- a/dep/acelite/ace/Hash_Multi_Map_Manager_T.cpp +++ b/dep/acelite/ace/Hash_Multi_Map_Manager_T.cpp @@ -3,7 +3,7 @@ /** * @file Hash_Multi_Map_Manager_T.cpp * - * $Id: Hash_Multi_Map_Manager_T.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Hash_Multi_Map_Manager_T.cpp 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Shanshan Jiang <shanshan.jiang@vanderbilt.edu> */ @@ -48,12 +48,10 @@ ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>::ACE_Hash_Multi_Map_Entry (const EXT_ID { } -# if ! defined (ACE_HAS_BROKEN_NOOP_DTORS) template <class EXT_ID, class INT_ID> ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>::~ACE_Hash_Multi_Map_Entry (void) { } -# endif /* ! defined (ACE_HAS_BROKEN_NOOP_DTORS) */ template <class EXT_ID, class INT_ID> EXT_ID & ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>::key () diff --git a/dep/acelite/ace/Hash_Multi_Map_Manager_T.h b/dep/acelite/ace/Hash_Multi_Map_Manager_T.h index dadfd19d8bc..ddbb093bfa4 100644 --- a/dep/acelite/ace/Hash_Multi_Map_Manager_T.h +++ b/dep/acelite/ace/Hash_Multi_Map_Manager_T.h @@ -4,7 +4,7 @@ /** * @file Hash_Multi_Map_Manager_T.h * - * $Id: Hash_Multi_Map_Manager_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Hash_Multi_Map_Manager_T.h 91693 2010-09-09 12:57:54Z johnnyw $ * * The code in Hash_Multi_Map_Manager_T.* was based on the code in * Hash_Map_Manager_T.*. @@ -65,10 +65,8 @@ public: ACE_Hash_Multi_Map_Entry (ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID> *next, ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID> *prev); - # if ! defined (ACE_HAS_BROKEN_NOOP_DTORS) /// Destructor. ~ACE_Hash_Multi_Map_Entry (void); - #endif /* ! defined (ACE_HAS_BROKEN_NOOP_DTORS) */ /// Key accessor. EXT_ID& key (void); @@ -76,12 +74,13 @@ public: /// Item accessor. ACE_Unbounded_Set<INT_ID>& item (void); +public: /// Key used to look up an entry. - /// @deprecated Use key() + /// @todo Should be private EXT_ID ext_id_; /// The contents of the entry itself. - /// @deprecated Use item() + /// @todo Should be private ACE_Unbounded_Set<INT_ID> int_id_set_; /// Pointer to the next item in the bucket of overflow nodes. @@ -553,7 +552,7 @@ protected: ACE_Allocator *table_allocator_; /// Addidtional allocator for entries, so it should be able to - /// allocate 'size' / chunks of sizeof + /// allocate 'size' / chunks of sizeof /// (@c ACE_Hash_Multi_Map_Entry<@c EXT_ID, @c INT_ID>) bytes each. ACE_Allocator *entry_allocator_; @@ -744,7 +743,7 @@ protected: * @c ACE_Hash_Multi_Map_Manager it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * @c ACE_Guard or @c ACE_Read_Guard on the @c ACE_Hash_Multi_Map_Manager's + * @c ACE_GUARD or @c ACE_READ_GUARD on the @c ACE_Hash_Multi_Map_Manager's * internal lock, which is accessible via its @c mutex method. */ template <class EXT_ID, class INT_ID, class HASH_KEY, class COMPARE_KEYS, class ACE_LOCK> @@ -790,8 +789,8 @@ public: * @c ACE_Hash_Multi_Map_Manager it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * @c ACE_Guard or @c ACE_Read_Guard on the @c ACE_Hash_Multi_Map_Manager's - * internal lock, which is accessible via its @c mutex method. + * @c ACE_GUARD or @c ACE_READ_GUARD on the @c ACE_Hash_Multi_Map_Manager's + * internal lock, which is accessible via its @c mutex() method. */ template <class EXT_ID, class INT_ID, class HASH_KEY, class COMPARE_KEYS, class ACE_LOCK> class ACE_Hash_Multi_Map_Const_Iterator : public ACE_Hash_Multi_Map_Const_Iterator_Base<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> @@ -838,7 +837,7 @@ public: * @c ACE_Hash_Multi_Map_Manager it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * @c ACE_Guard or @c ACE_Read_Guard on the @c ACE_Hash_Multi_Map_Manager's + * @c ACE_GUARD or @c ACE_READ_GUARD on the @c ACE_Hash_Multi_Map_Manager's * internal lock, which is accessible via its @c mutex method. * * Note that a creation method for this new iterator cannot be added @@ -912,7 +911,7 @@ protected: * @c ACE_Hash_Multi_Map_Manager it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * @c ACE_Guard or @c ACE_Read_Guard on the @c ACE_Hash_Multi_Map_Manager's + * @c ACE_GUARD or @c ACE_READ_GUARD on the @c ACE_Hash_Multi_Map_Manager's * internal lock, which is accessible via its @c mutex method. */ template <class EXT_ID, class INT_ID, class HASH_KEY, class COMPARE_KEYS, class ACE_LOCK> diff --git a/dep/acelite/ace/Hashable.cpp b/dep/acelite/ace/Hashable.cpp index 94c25faf1c8..75dc809dc0d 100644 --- a/dep/acelite/ace/Hashable.cpp +++ b/dep/acelite/ace/Hashable.cpp @@ -1,4 +1,4 @@ -//$Id: Hashable.cpp 80826 2008-03-04 14:51:23Z wotte $ +//$Id: Hashable.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Hashable.h" @@ -7,10 +7,6 @@ #endif /* __ACE_INLINE __ */ -ACE_RCSID (ace, - Hashable, - "$Id: Hashable.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/High_Res_Timer.cpp b/dep/acelite/ace/High_Res_Timer.cpp index beaaadc48d1..4bc380c591d 100644 --- a/dep/acelite/ace/High_Res_Timer.cpp +++ b/dep/acelite/ace/High_Res_Timer.cpp @@ -1,4 +1,4 @@ -// $Id: High_Res_Timer.cpp 89483 2010-03-15 09:48:01Z johnnyw $ +// $Id: High_Res_Timer.cpp 91286 2010-08-05 09:04:31Z johnnyw $ // Be very carefull before changing the calculations inside // ACE_High_Res_Timer. The precision matters and we are using integer @@ -22,7 +22,7 @@ #include "ace/OS_NS_stdlib.h" #include "ace/Truncate.h" -ACE_RCSID(ace, High_Res_Timer, "$Id: High_Res_Timer.cpp 89483 2010-03-15 09:48:01Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/ICMP_Socket.cpp b/dep/acelite/ace/ICMP_Socket.cpp index 6178858f989..5247dc4b83a 100644 --- a/dep/acelite/ace/ICMP_Socket.cpp +++ b/dep/acelite/ace/ICMP_Socket.cpp @@ -1,4 +1,4 @@ -// $Id: ICMP_Socket.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: ICMP_Socket.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/ICMP_Socket.h" @@ -9,12 +9,6 @@ #include "ace/OS_NS_netdb.h" #include "ace/OS_NS_sys_socket.h" - -ACE_RCSID (ace, - ICMP_Socket, - "$Id: ICMP_Socket.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE (ACE_ICMP_Socket) diff --git a/dep/acelite/ace/INET_Addr.cpp b/dep/acelite/ace/INET_Addr.cpp index c6ef40b56ce..6dba7150f93 100644 --- a/dep/acelite/ace/INET_Addr.cpp +++ b/dep/acelite/ace/INET_Addr.cpp @@ -1,4 +1,4 @@ -// $Id: INET_Addr.cpp 84183 2009-01-19 08:50:16Z johnnyw $ +// $Id: INET_Addr.cpp 91683 2010-09-09 09:07:49Z johnnyw $ // Defines the Internet domain address family address format. @@ -18,10 +18,6 @@ #include "ace/OS_NS_unistd.h" #include "ace/OS_NS_sys_socket.h" -ACE_RCSID (ace, - INET_Addr, - "$Id: INET_Addr.cpp 84183 2009-01-19 08:50:16Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_INET_Addr) @@ -875,10 +871,6 @@ ACE_INET_Addr::get_host_name_i (char hostname[], size_t len) const } # endif /* ACE_HAS_IPV6 */ -# if defined (DIGITAL_UNIX) && defined (__GNUC__) - hostent * const hp = - ACE_OS::gethostbyaddr (static_cast <char *> (addr), size, type); -# else int h_error; // Not the same as errno! hostent hentry; ACE_HOSTENT_DATA buf; @@ -889,7 +881,6 @@ ACE_INET_Addr::get_host_name_i (char hostname[], size_t len) const &hentry, buf, &h_error); -# endif /* DIGITAL_UNIX */ if (hp == 0 || hp->h_name == 0) return -1; diff --git a/dep/acelite/ace/INET_Addr.h b/dep/acelite/ace/INET_Addr.h index ba8978c256c..fcd26d0de2f 100644 --- a/dep/acelite/ace/INET_Addr.h +++ b/dep/acelite/ace/INET_Addr.h @@ -4,7 +4,7 @@ /** * @file INET_Addr.h * - * $Id: INET_Addr.h 91064 2010-07-12 10:11:24Z johnnyw $ + * $Id: INET_Addr.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -133,7 +133,7 @@ public: * are converted into network byte order, otherwise they are assumed to be * in network byte order already and are passed straight through. * - * If <map> is non-zero and IPv6 support has been compiled in, + * If @a map is non-zero and IPv6 support has been compiled in, * then this address will be set to the IPv4-mapped IPv6 address of it. */ int set (u_short port_number, @@ -141,15 +141,15 @@ public: int encode = 1, int map = 0); - /// Uses <getservbyname> to initialize an ACE_INET_Addr from a - /// <port_name>, the remote @a host_name, and the @a protocol. + /// Uses getservbyname() to initialize an ACE_INET_Addr from a + /// @a port_name, the remote @a host_name, and the @a protocol. int set (const char port_name[], const char host_name[], const char protocol[] = "tcp"); /** - * Uses <getservbyname> to initialize an ACE_INET_Addr from a - * <port_name>, an @a ip_addr, and the @a protocol. This assumes that + * Uses getservbyname() to initialize an ACE_INET_Addr from a + * @a port_name, an @a ip_addr, and the @a protocol. This assumes that * @a ip_addr is already in network byte order. */ int set (const char port_name[], diff --git a/dep/acelite/ace/INET_Addr.inl b/dep/acelite/ace/INET_Addr.inl index be3d8e6426b..06460cb7857 100644 --- a/dep/acelite/ace/INET_Addr.inl +++ b/dep/acelite/ace/INET_Addr.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: INET_Addr.inl 88218 2009-12-17 12:32:14Z mcorino $ +// $Id: INET_Addr.inl 91685 2010-09-09 09:35:14Z johnnyw $ #include "ace/OS_NS_string.h" @@ -71,14 +71,7 @@ ACE_INET_Addr::ip_addr_size (void) const else return static_cast<int> (sizeof this->inet_addr_.in6_.sin6_addr); #else - // These _UNICOS changes were picked up from pre-IPv6 code in - // get_host_name_i... the IPv6 section above may need something - // similar, so keep an eye out for it. -# if !defined(_UNICOS) return static_cast<int> (sizeof this->inet_addr_.in4_.sin_addr.s_addr); -# else /* _UNICOS */ - return static_cast<int> (sizeof this->inet_addr_.in4_.sin_addr); -# endif /* ! _UNICOS */ #endif /* ACE_HAS_IPV6 */ } diff --git a/dep/acelite/ace/IOStream.cpp b/dep/acelite/ace/IOStream.cpp index 7ace37ee81b..99065091a4c 100644 --- a/dep/acelite/ace/IOStream.cpp +++ b/dep/acelite/ace/IOStream.cpp @@ -1,11 +1,11 @@ -// $Id: IOStream.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: IOStream.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #ifndef ACE_IOSTREAM_CPP #define ACE_IOSTREAM_CPP #include "ace/IOStream.h" -ACE_RCSID(ace, IOStream, "$Id: IOStream.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_LACKS_ACE_IOSTREAM) diff --git a/dep/acelite/ace/IOStream.h b/dep/acelite/ace/IOStream.h index 8a135a5e426..de154cd1b10 100644 --- a/dep/acelite/ace/IOStream.h +++ b/dep/acelite/ace/IOStream.h @@ -4,7 +4,7 @@ /** * @file IOStream.h * - * $Id: IOStream.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: IOStream.h 92102 2010-09-30 08:14:15Z johnnyw $ * * @author James CE Johnson <jcej@lads.com> * @author Jim Crossley <jim@lads.com> @@ -64,14 +64,6 @@ ACE_END_VERSIONED_NAMESPACE_DECL # endif /* ! ACE_HAS_STDCPP_STL_INCLUDES */ # endif /* ACE_WIN32 && defined (_MSC_VER) */ -# if defined (__DECCXX_VER) -# if __DECCXX_VER < 50700000 -# include /**/ <stl_macros> -# else -# include /**/ <stdcomp> -# endif /* __DECCXX_VER < 50700000 */ -# endif /* __DECCXX_VER */ - ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Export ACE_Quoted_String : public ACE_IOStream_String diff --git a/dep/acelite/ace/IO_Cntl_Msg.cpp b/dep/acelite/ace/IO_Cntl_Msg.cpp index c730f97101c..b9badd5c179 100644 --- a/dep/acelite/ace/IO_Cntl_Msg.cpp +++ b/dep/acelite/ace/IO_Cntl_Msg.cpp @@ -1,51 +1,7 @@ -// $Id: IO_Cntl_Msg.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: IO_Cntl_Msg.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/IO_Cntl_Msg.h" #if !defined (__ACE_INLINE__) #include "ace/IO_Cntl_Msg.inl" #endif /* __ACE_INLINE__ */ - -ACE_RCSID(ace, IO_Cntl_Msg, "$Id: IO_Cntl_Msg.cpp 80826 2008-03-04 14:51:23Z wotte $") - -#if 0 -// This is not meant to be used, it's just a place holder... - -#if !defined (__ACE_INLINE__) -#include "ace/Intrusive_List.inl" -#endif /* __ACE_INLINE__ */ - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -// Forward decl -template <class SYNCH> class ACE_Module; - -/** - * @class ACE_Module_Link - * - * @brief Data structure used to link two modules together - */ -class ACE_Module_Link -{ -public: - ACE_Module_Link (ACE_Module *m1, ACE_Module *m2): mod_upper_ (m1), mod_lower_ (m2), count_ (0) {} - - ACE_Module *upper (void) { return this->mod_upper_; } - void upper (ACE_Module *u) { this->mod_upper_ = u; } - - ACE_Module *lower (void) { return this->mod_lower_; } - void lower (ACE_Module *l) { this->mod_lower_ = l; } - - int count (void) const { return this->count_; } - void count (int c) { this->count_ = c; } - -private: - ACE_Module *mod_upper_; - ACE_Module *mod_lower_; - int count_; -}; - -ACE_END_VERSIONED_NAMESPACE_DECL - -#endif - diff --git a/dep/acelite/ace/IO_SAP.cpp b/dep/acelite/ace/IO_SAP.cpp index 37200bfea7a..139eb50b3c5 100644 --- a/dep/acelite/ace/IO_SAP.cpp +++ b/dep/acelite/ace/IO_SAP.cpp @@ -1,4 +1,4 @@ -// $Id: IO_SAP.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: IO_SAP.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/IO_SAP.h" @@ -12,7 +12,7 @@ #include "ace/IO_SAP.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, IO_SAP, "$Id: IO_SAP.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/IPC_SAP.cpp b/dep/acelite/ace/IPC_SAP.cpp index bc3e9f7afe0..bdd0f8a3cd3 100644 --- a/dep/acelite/ace/IPC_SAP.cpp +++ b/dep/acelite/ace/IPC_SAP.cpp @@ -1,4 +1,4 @@ -// $Id: IPC_SAP.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: IPC_SAP.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/IPC_SAP.h" @@ -12,7 +12,7 @@ #include "ace/IPC_SAP.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, IPC_SAP, "$Id: IPC_SAP.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Init_ACE.cpp b/dep/acelite/ace/Init_ACE.cpp index f0c953f824e..f3ea96866e4 100644 --- a/dep/acelite/ace/Init_ACE.cpp +++ b/dep/acelite/ace/Init_ACE.cpp @@ -1,12 +1,8 @@ +// $Id: Init_ACE.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Init_ACE.h" #include "ace/Object_Manager.h" -ACE_RCSID (ace, - Init_ACE, - "$Id: Init_ACE.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL unsigned int ACE::init_fini_count_ = 0; diff --git a/dep/acelite/ace/Intrusive_List.cpp b/dep/acelite/ace/Intrusive_List.cpp index 90ed82de29f..4b64ef1e857 100644 --- a/dep/acelite/ace/Intrusive_List.cpp +++ b/dep/acelite/ace/Intrusive_List.cpp @@ -1,4 +1,4 @@ -// $Id: Intrusive_List.cpp 84273 2009-01-30 12:55:25Z johnnyw $ +// $Id: Intrusive_List.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #ifndef ACE_INTRUSIVE_LIST_CPP #define ACE_INTRUSIVE_LIST_CPP @@ -117,41 +117,6 @@ ACE_Intrusive_List<T>::unsafe_remove (T *node) node->prev (0); } -#if 0 -template<class T> void -ACE_Intrusive_List_Node<T>::check_invariants (void) -{ - ACE_ASSERT ((this->next () == 0) || (this->next ()->prev () == this)); - ACE_ASSERT ((this->prev () == 0) || (this->prev ()->next () == this)); -} - -template<class T> void -ACE_Intrusive_List<T>::check_invariants (void) -{ - ACE_ASSERT ((this->tail_ == 0) || (this->tail_->next () == 0)); - ACE_ASSERT ((this->head_ == 0) || (this->head_->prev () == 0)); - ACE_ASSERT (!((this->head_ == 0) ^ (this->tail_ == 0))); - - int found_tail = 0; - for (T *i = this->head_; i != 0; i = i->next ()) - { - if (i == this->tail_) - found_tail = 1; - i->check_invariants (); - } - ACE_ASSERT (this->tail_ == 0 || found_tail == 1); - - int found_head = 0; - for (T *j = this->tail_; j != 0; j = j->prev ()) - { - if (j == this->head_) - found_head = 1; - j->check_invariants (); - } - ACE_ASSERT (this->head_ == 0 || found_head == 1); -} -#endif /* 0 */ - ACE_END_VERSIONED_NAMESPACE_DECL #endif /* ACE_INTRUSIVE_LIST_CPP */ diff --git a/dep/acelite/ace/Intrusive_List.h b/dep/acelite/ace/Intrusive_List.h index d93ec95edb0..b5f32f6839c 100644 --- a/dep/acelite/ace/Intrusive_List.h +++ b/dep/acelite/ace/Intrusive_List.h @@ -4,7 +4,7 @@ /** * @file Intrusive_List.h * - * $Id: Intrusive_List.h 83968 2008-12-04 08:11:41Z johnnyw $ + * $Id: Intrusive_List.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Carlos O'Ryan <coryan@uci.edu> */ @@ -71,10 +71,6 @@ public: /// Returns true if the container is empty, otherwise returns false. bool is_empty (void) const; - /// Returns true if the container is empty, otherwise returns false. - /// @deprecated Use is_empty() instead. - bool empty (void) const; - /// Insert an element at the beginning of the list void push_front (T *node); diff --git a/dep/acelite/ace/Intrusive_List.inl b/dep/acelite/ace/Intrusive_List.inl index 028a1aef3b1..851400937b1 100644 --- a/dep/acelite/ace/Intrusive_List.inl +++ b/dep/acelite/ace/Intrusive_List.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Intrusive_List.inl 83952 2008-12-02 20:01:24Z johnnyw $ +// $Id: Intrusive_List.inl 91688 2010-09-09 11:21:50Z johnnyw $ #include <algorithm> @@ -12,12 +12,6 @@ ACE_Intrusive_List<T>::is_empty (void) const return this->head_ == 0; } -template<class T> ACE_INLINE bool -ACE_Intrusive_List<T>::empty (void) const -{ - return this->is_empty (); -} - template<class T> ACE_INLINE T * ACE_Intrusive_List<T>::head (void) const { diff --git a/dep/acelite/ace/LSOCK.cpp b/dep/acelite/ace/LSOCK.cpp index 75215157c5e..71af231952d 100644 --- a/dep/acelite/ace/LSOCK.cpp +++ b/dep/acelite/ace/LSOCK.cpp @@ -1,8 +1,8 @@ -// $Id: LSOCK.cpp 88869 2010-02-06 11:29:56Z mcorino $ +// $Id: LSOCK.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/LSOCK.h" -ACE_RCSID(ace, LSOCK, "$Id: LSOCK.cpp 88869 2010-02-06 11:29:56Z mcorino $") + #if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS) diff --git a/dep/acelite/ace/LSOCK_Acceptor.cpp b/dep/acelite/ace/LSOCK_Acceptor.cpp index 5f24783209d..10c5acf5540 100644 --- a/dep/acelite/ace/LSOCK_Acceptor.cpp +++ b/dep/acelite/ace/LSOCK_Acceptor.cpp @@ -1,4 +1,4 @@ -// $Id: LSOCK_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: LSOCK_Acceptor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/LSOCK_Acceptor.h" @@ -8,7 +8,7 @@ #include "ace/OS_NS_unistd.h" #include "ace/OS_NS_sys_socket.h" -ACE_RCSID(ace, LSOCK_Acceptor, "$Id: LSOCK_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/LSOCK_CODgram.cpp b/dep/acelite/ace/LSOCK_CODgram.cpp index e1e2c0b01cd..8c6e967ba3f 100644 --- a/dep/acelite/ace/LSOCK_CODgram.cpp +++ b/dep/acelite/ace/LSOCK_CODgram.cpp @@ -1,11 +1,11 @@ -// $Id: LSOCK_CODgram.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: LSOCK_CODgram.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/LSOCK_CODgram.h" #if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS) #include "ace/Log_Msg.h" -ACE_RCSID(ace, LSOCK_CODgram, "$Id: LSOCK_CODgram.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (__ACE_INLINE__) #include "ace/LSOCK_CODgram.inl" diff --git a/dep/acelite/ace/LSOCK_Connector.cpp b/dep/acelite/ace/LSOCK_Connector.cpp index c1e21b9d542..66e1d8851e6 100644 --- a/dep/acelite/ace/LSOCK_Connector.cpp +++ b/dep/acelite/ace/LSOCK_Connector.cpp @@ -1,11 +1,11 @@ -// $Id: LSOCK_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: LSOCK_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/LSOCK_Connector.h" #if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS) #include "ace/Log_Msg.h" -ACE_RCSID(ace, LSOCK_Connector, "$Id: LSOCK_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (__ACE_INLINE__) #include "ace/LSOCK_Connector.inl" diff --git a/dep/acelite/ace/LSOCK_Dgram.cpp b/dep/acelite/ace/LSOCK_Dgram.cpp index 60e630f0bc0..d681915f809 100644 --- a/dep/acelite/ace/LSOCK_Dgram.cpp +++ b/dep/acelite/ace/LSOCK_Dgram.cpp @@ -1,11 +1,11 @@ -// $Id: LSOCK_Dgram.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: LSOCK_Dgram.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/LSOCK_Dgram.h" #if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS) #include "ace/Log_Msg.h" -ACE_RCSID(ace, LSOCK_Dgram, "$Id: LSOCK_Dgram.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (__ACE_INLINE__) #include "ace/LSOCK_Dgram.inl" diff --git a/dep/acelite/ace/LSOCK_Stream.cpp b/dep/acelite/ace/LSOCK_Stream.cpp index f8eae91243d..34475132d73 100644 --- a/dep/acelite/ace/LSOCK_Stream.cpp +++ b/dep/acelite/ace/LSOCK_Stream.cpp @@ -1,4 +1,4 @@ -// $Id: LSOCK_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: LSOCK_Stream.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/LSOCK_Stream.h" #if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS) @@ -6,7 +6,7 @@ #include "ace/Log_Msg.h" #include "ace/OS_NS_sys_socket.h" -ACE_RCSID(ace, LSOCK_Stream, "$Id: LSOCK_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (__ACE_INLINE__) #include "ace/LSOCK_Stream.inl" diff --git a/dep/acelite/ace/LSOCK_Stream.h b/dep/acelite/ace/LSOCK_Stream.h index 3476a51df7b..bdaed30a39d 100644 --- a/dep/acelite/ace/LSOCK_Stream.h +++ b/dep/acelite/ace/LSOCK_Stream.h @@ -4,7 +4,7 @@ /** * @file LSOCK_Stream.h * - * $Id: LSOCK_Stream.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: LSOCK_Stream.h 92140 2010-10-04 12:37:52Z johnnyw $ * * @author Doug Schmidt */ @@ -38,12 +38,12 @@ class ACE_Export ACE_LSOCK_Stream : public ACE_SOCK_Stream, public ACE_LSOCK { public: // = Send/recv methods. - /// Send iovecs via <::writev>. + /// Send iovecs via ::writev(). ssize_t send_msg (const iovec iov[], size_t n, ACE_HANDLE handle); - /// Send iovecs via <::writev>. + /// Send iovecs via ::writev(). ssize_t recv_msg (iovec iov[], size_t n, ACE_HANDLE &handle); @@ -51,7 +51,7 @@ public: /// Get handle. ACE_HANDLE get_handle (void) const; - /// Overrides set_handle from the base classes. + /// Overrides set_handle() from the base classes. void set_handle (ACE_HANDLE fd); // = Meta-type info diff --git a/dep/acelite/ace/Lib_Find.cpp b/dep/acelite/ace/Lib_Find.cpp index b1a2f6a4160..c5a0610f065 100644 --- a/dep/acelite/ace/Lib_Find.cpp +++ b/dep/acelite/ace/Lib_Find.cpp @@ -1,4 +1,4 @@ -// $Id: Lib_Find.cpp 85473 2009-06-01 08:09:31Z johnnyw $ +// $Id: Lib_Find.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Lib_Find.h" #include "ace/Log_Msg.h" @@ -110,7 +110,7 @@ template ACE_Singleton<ACE_LD_Symbol_Registry, ACE_Thread_Mutex> * #endif /* ACE_HAS_EXPLICIT_STATIC_TEMPLATE_MEMBER_INSTANTIATION */ #endif -ACE_RCSID(ace, Lib_Find, "$Id: Lib_Find.cpp 85473 2009-06-01 08:09:31Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Local_Memory_Pool.cpp b/dep/acelite/ace/Local_Memory_Pool.cpp index 559b6656f30..abebb254634 100644 --- a/dep/acelite/ace/Local_Memory_Pool.cpp +++ b/dep/acelite/ace/Local_Memory_Pool.cpp @@ -1,4 +1,4 @@ -// $Id: Local_Memory_Pool.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Local_Memory_Pool.cpp 91286 2010-08-05 09:04:31Z johnnyw $ // Local_Memory_Pool.cpp #include "ace/Local_Memory_Pool.h" @@ -6,7 +6,7 @@ #include "ace/OS_Memory.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, Local_Memory_Pool, "$Id: Local_Memory_Pool.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Local_Name_Space.cpp b/dep/acelite/ace/Local_Name_Space.cpp index b3e13d7d900..36b9a80552d 100644 --- a/dep/acelite/ace/Local_Name_Space.cpp +++ b/dep/acelite/ace/Local_Name_Space.cpp @@ -1,3 +1,5 @@ +// $Id: Local_Name_Space.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Local_Name_Space.h" #include "ace/ACE.h" #include "ace/RW_Process_Mutex.h" @@ -5,10 +7,6 @@ #include "ace/OS_NS_string.h" #include "ace/Truncate.h" -ACE_RCSID (ace, - Local_Name_Space, - "$Id: Local_Name_Space.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_NS_String::~ACE_NS_String (void) diff --git a/dep/acelite/ace/Local_Name_Space_T.h b/dep/acelite/ace/Local_Name_Space_T.h index 9822a22a6e7..56b445b4de8 100644 --- a/dep/acelite/ace/Local_Name_Space_T.h +++ b/dep/acelite/ace/Local_Name_Space_T.h @@ -4,7 +4,7 @@ /** * @file Local_Name_Space_T.h * - * $Id: Local_Name_Space_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Local_Name_Space_T.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Prashant Jain <pjain@cs.wustl.edu> * @author Irfan Pyarali <irfan@wuerl.wustl.edu> and @@ -35,26 +35,13 @@ typedef ACE_Unbounded_Set<ACE_NS_WString> ACE_WSTRING_SET; ACE_END_VERSIONED_NAMESPACE_DECL -// Simplify later usage by defining typedefs. -#if (1) # include "ace/Hash_Map_Manager_T.h" ACE_BEGIN_VERSIONED_NAMESPACE_DECL typedef ACE_Hash_Map_Manager_Ex<ACE_NS_String, ACE_NS_Internal, ACE_Hash<ACE_NS_String>, ACE_Equal_To<ACE_NS_String>, ACE_Null_Mutex> MAP_MANAGER; ACE_END_VERSIONED_NAMESPACE_DECL -#else -# include "ace/Map_Manager.h" -ACE_BEGIN_VERSIONED_NAMESPACE_DECL -typedef ACE_Map_Manager<ACE_NS_String, ACE_NS_Internal, ACE_Null_Mutex> MAP_MANAGER; -ACE_END_VERSIONED_NAMESPACE_DECL -#endif /* 0 */ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/// @deprecated Deprecated typedefs. Use the map's traits instead. -typedef MAP_MANAGER::ITERATOR MAP_ITERATOR; -typedef MAP_MANAGER::ENTRY MAP_ENTRY; - - /** * @class ACE_Name_Space_Map * diff --git a/dep/acelite/ace/Local_Tokens.cpp b/dep/acelite/ace/Local_Tokens.cpp index b41c8c31dd0..5901bb18878 100644 --- a/dep/acelite/ace/Local_Tokens.cpp +++ b/dep/acelite/ace/Local_Tokens.cpp @@ -1,4 +1,4 @@ -// $Id: Local_Tokens.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Local_Tokens.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Local_Tokens.h" @@ -13,10 +13,6 @@ #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Local_Tokens, - "$Id: Local_Tokens.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL void diff --git a/dep/acelite/ace/Local_Tokens.h b/dep/acelite/ace/Local_Tokens.h index 603d55626fb..a555370364a 100644 --- a/dep/acelite/ace/Local_Tokens.h +++ b/dep/acelite/ace/Local_Tokens.h @@ -4,7 +4,7 @@ /** * @file Local_Tokens.h * - * $Id: Local_Tokens.h 84477 2009-02-16 13:30:38Z johnnyw $ + * $Id: Local_Tokens.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Karl-Heinz Dorn <kdorn@erlh.siemens.de> * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> @@ -34,7 +34,7 @@ * mechanisms, such as mutexes or semaphores. Instead, you should * use the ACE_Recursive_Thread_Mutex, ACE_Thread_Mutex, * ACE_Thread_Semaphore, etc., that are defined in - * $ACE_ROOT/ace/Synch.h and $ACE_ROOT/ace/Synch_T.h or the + * $ACE_ROOT/ace/Synch.h or the * ACE_Token that's defined in $ACE_ROOT/ace/Token.h. * * @@ -79,6 +79,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * this class is necessary to fight the compiler with order of * declaration errors. */ +// FUZZ: disable check_for_ACE_Guard namespace ACE_TOKEN_CONST { #if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) @@ -92,6 +93,7 @@ namespace ACE_TOKEN_CONST typedef ACE_Guard<ACE_Null_Mutex> GUARD; #endif /* ACE_HAS_THREADS */ } +// FUZZ: enable check_for_ACE_Guard // Forward decl. class ACE_Token_Proxy; diff --git a/dep/acelite/ace/Local_Tokens.inl b/dep/acelite/ace/Local_Tokens.inl index 56b3cb764e2..0c599630ff4 100644 --- a/dep/acelite/ace/Local_Tokens.inl +++ b/dep/acelite/ace/Local_Tokens.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Local_Tokens.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Local_Tokens.inl 92069 2010-09-28 11:38:59Z johnnyw $ #if defined (ACE_HAS_TOKENS_LIBRARY) @@ -140,20 +140,6 @@ ACE_Tokens::name (void) return this->token_name_; } -#if 0 -ACE_INLINE ACE_Token_Proxy * -ACE_Tokens::current_owner (void) -{ - ACE_TRACE ("ACE_Tokens::current_owner"); - // ACE_GUARD_RETURN ??? - - if (this->owner () == 0) - return 0; - else - return this->owner ()->proxy (); -} -#endif /* 0 */ - // ************************************************************ ACE_INLINE int diff --git a/dep/acelite/ace/Lock.cpp b/dep/acelite/ace/Lock.cpp index eae8c3bd8d0..800cea220f9 100644 --- a/dep/acelite/ace/Lock.cpp +++ b/dep/acelite/ace/Lock.cpp @@ -1,4 +1,4 @@ -// $Id: Lock.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Lock.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Lock.h" @@ -6,7 +6,7 @@ #include "ace/Lock.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Lock, "$Id: Lock.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Log_Msg.cpp b/dep/acelite/ace/Log_Msg.cpp index 4a619ebca15..3df89332aea 100644 --- a/dep/acelite/ace/Log_Msg.cpp +++ b/dep/acelite/ace/Log_Msg.cpp @@ -1,4 +1,4 @@ -// $Id: Log_Msg.cpp 88331 2009-12-24 09:54:25Z johnnyw $ +// $Id: Log_Msg.cpp 92052 2010-09-27 14:20:22Z vzykov $ // We need this to get the status of ACE_NTRACE... #include "ace/config-all.h" @@ -40,12 +40,13 @@ #include "ace/Log_Record.h" #include "ace/Recursive_Thread_Mutex.h" #include "ace/Stack_Trace.h" +#include "ace/Atomic_Op.h" #if !defined (__ACE_INLINE__) #include "ace/Log_Msg.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Log_Msg, "$Id: Log_Msg.cpp 88331 2009-12-24 09:54:25Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -1649,7 +1650,7 @@ ACE_Log_Msg::log (const ACE_TCHAR *format_str, // Weekday Month day year hour:minute:sec.usec { ACE_TCHAR day_and_time[35]; - // Did we find the flag indicating a time value argument + // Did we find the flag indicating a time value argument if (format[1] == ACE_TEXT('#')) { ACE_Time_Value* time_value = va_arg (argp, ACE_Time_Value*); @@ -1685,15 +1686,15 @@ ACE_Log_Msg::log (const ACE_TCHAR *format_str, #else ACE_OS::strcpy (fp, ACE_TEXT ("s")); #endif - // Did we find the flag indicating a time value argument + // Did we find the flag indicating a time value argument if (format[1] == ACE_TEXT('#')) { ACE_Time_Value* time_value = va_arg (argp, ACE_Time_Value*); if (can_check) this_len = ACE_OS::snprintf (bp, bspace, format, - ACE::timestamp (*time_value, - day_and_time, + ACE::timestamp (*time_value, + day_and_time, sizeof day_and_time / sizeof (ACE_TCHAR))); else this_len = ACE_OS::sprintf @@ -1728,24 +1729,9 @@ ACE_Log_Msg::log (const ACE_TCHAR *format_str, ACE_OS::sprintf (bp, format, static_cast <unsigned> (ACE_Thread::self ())); -#elif defined (DIGITAL_UNIX) - ACE_OS::strcpy (fp, ACE_TEXT ("u")); - { - int id = -# if defined (ACE_HAS_THREADS) - pthread_getselfseq_np (); -# else - ACE_Thread::self (); -# endif /* ACE_HAS_THREADS */ - - if (can_check) - this_len = ACE_OS::snprintf (bp, bspace, format, id); - else - this_len = ACE_OS::sprintf (bp, format, id); - } #else ACE_hthread_t t_id; - ACE_Thread::self (t_id); + ACE_OS::thr_self (t_id); # if defined (ACE_MVS) || defined (ACE_TANDEM_T1248_PTHREADS) // MVS's pthread_t is a struct... yuck. So use the ACE 5.0 @@ -2484,32 +2470,6 @@ ACE_Log_Msg::thr_desc (ACE_Thread_Descriptor *td) td->acquire_release (); } -#if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) && defined(ACE_LEGACY_MODE) -ACE_SEH_EXCEPT_HANDLER -ACE_Log_Msg::seh_except_selector (void) -{ - return ACE_OS_Object_Manager::seh_except_selector (); -} - -ACE_SEH_EXCEPT_HANDLER -ACE_Log_Msg::seh_except_selector (ACE_SEH_EXCEPT_HANDLER n) -{ - return ACE_OS_Object_Manager::seh_except_selector (n); -} - -ACE_SEH_EXCEPT_HANDLER -ACE_Log_Msg::seh_except_handler (void) -{ - return ACE_OS_Object_Manager::seh_except_handler (); -} - -ACE_SEH_EXCEPT_HANDLER -ACE_Log_Msg::seh_except_handler (ACE_SEH_EXCEPT_HANDLER n) -{ - return ACE_OS_Object_Manager::seh_except_handler (n); -} -#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS && ACE_LEGACY_MODE */ - ACE_Log_Msg_Backend * ACE_Log_Msg::msg_backend (ACE_Log_Msg_Backend *b) { diff --git a/dep/acelite/ace/Log_Msg.h b/dep/acelite/ace/Log_Msg.h index 5f9c346d897..28b00325dc7 100644 --- a/dep/acelite/ace/Log_Msg.h +++ b/dep/acelite/ace/Log_Msg.h @@ -4,7 +4,7 @@ /** * @file Log_Msg.h * - * $Id: Log_Msg.h 88331 2009-12-24 09:54:25Z johnnyw $ + * $Id: Log_Msg.h 92298 2010-10-21 11:15:17Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -24,7 +24,6 @@ #include "ace/Default_Constants.h" #include "ace/Log_Priority.h" #include "ace/os_include/os_limits.h" -#include "ace/Atomic_Op.h" #include "ace/Synch_Traits.h" // The ACE_ASSERT macro used to be defined here, include ace/Assert.h @@ -124,7 +123,6 @@ // that #define STDERR or THREAD (e.g. LynxOS). We simply #undef // these macros as there is no way to save the macro definition using // the pre-processor. See Bugzilla Bug #299 for more info. - #if defined (STDERR) # undef STDERR #endif /* STDERR */ @@ -145,6 +143,7 @@ class ACE_Log_Msg_Backend; // Forward declaration class ACE_Thread_Descriptor; class ACE_Log_Record; +template<typename M, typename T> class ACE_Atomic_Op; /** * @class ACE_Log_Msg @@ -184,7 +183,7 @@ public: { /// Write messages to stderr. STDERR = 1, - /// Write messages to the local client logger deamon. + /// Write messages to the local client logger daemon. LOGGER = 2, /// Write messages to the ostream * stored in thread-specific /// storage. @@ -405,27 +404,6 @@ public: */ void thr_desc (ACE_Thread_Descriptor *td); -#if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) && defined(ACE_LEGACY_MODE) - // These functions are disabled without ACE_LEGACY_MODE - // because the *semantics* have changed (the objects are no longer - // TSS). - /// Get TSS exception action. - /// @note The action is no longer TSS, they are global! - ACE_SEH_EXCEPT_HANDLER seh_except_selector (void); - - /// Set TSS exception action. - /// @note The action is no longer TSS, they are global! - ACE_SEH_EXCEPT_HANDLER seh_except_selector (ACE_SEH_EXCEPT_HANDLER); - - /// Get TSS exception handler. - /// @note The handler is no longer TSS, they are global! - ACE_SEH_EXCEPT_HANDLER seh_except_handler (void); - - /// Set TSS exception handler. - /// @note The handler is no longer TSS, they are global! - ACE_SEH_EXCEPT_HANDLER seh_except_handler (ACE_SEH_EXCEPT_HANDLER); -#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS && ACE_LEGACY_MODE */ - /// Stop tracing status on a per-thread basis... void stop_tracing (void); @@ -529,12 +507,12 @@ public: * - 'S': print out the appropriate signal message corresponding * to var-argument, e.g., as done by strsignal() * - 's': prints a ACE_TCHAR* character string (also see C and W) - * - 'T': print timestamp in hour:minute:sec:usec format (plain option, - * i.e. without any flags, prints system supplied timestamp; + * - 'T': print timestamp in hour:minute:sec:usec format (plain option, + * i.e. without any flags, prints system supplied timestamp; * with '#' flag added expects ACE_Time_Value* in argument list) * - 'D': print timestamp as Weekday Month day year hour:minute:sec.usec - * (plain option, i.e. without any flags, prints system supplied - * timestamp; with '#' flag added expects ACE_Time_Value* in + * (plain option, i.e. without any flags, prints system supplied + * timestamp; with '#' flag added expects ACE_Time_Value* in * argument list) * - 't': print thread id (1 if single-threaded) * - 'u': print as unsigned int @@ -765,10 +743,6 @@ ACE_TSS_CLEANUP_NAME (void *ptr); # endif /* ACE_HAS_THREAD_SPECIFIC_STORAGE || ACE_HAS_TSS_EMULATION */ #endif /* ACE_MT_SAFE */ -#if defined(ACE_LEGACY_MODE) -#include "ace/Log_Msg_Callback.h" -#endif /* ACE_LEGACY_MODE */ - #if defined (__ACE_INLINE__) #include "ace/Log_Msg.inl" #endif /* __ACE_INLINE__ */ diff --git a/dep/acelite/ace/Log_Msg_Backend.cpp b/dep/acelite/ace/Log_Msg_Backend.cpp index 1d739471fa9..3ab6a3d7005 100644 --- a/dep/acelite/ace/Log_Msg_Backend.cpp +++ b/dep/acelite/ace/Log_Msg_Backend.cpp @@ -1,8 +1,8 @@ -// $Id: Log_Msg_Backend.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Log_Msg_Backend.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Log_Msg_Backend.h" -ACE_RCSID(ace, Log_Msg_Backend, "$Id: Log_Msg_Backend.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Log_Msg_Callback.cpp b/dep/acelite/ace/Log_Msg_Callback.cpp index b38113d24ba..62ae542cfbe 100644 --- a/dep/acelite/ace/Log_Msg_Callback.cpp +++ b/dep/acelite/ace/Log_Msg_Callback.cpp @@ -1,8 +1,8 @@ -// $Id: Log_Msg_Callback.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Log_Msg_Callback.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Log_Msg_Callback.h" -ACE_RCSID(ace, Log_Msg_Callback, "$Id: Log_Msg_Callback.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Log_Msg_IPC.cpp b/dep/acelite/ace/Log_Msg_IPC.cpp index 830ebdfccb8..4df1db72276 100644 --- a/dep/acelite/ace/Log_Msg_IPC.cpp +++ b/dep/acelite/ace/Log_Msg_IPC.cpp @@ -1,11 +1,11 @@ -// $Id: Log_Msg_IPC.cpp 84527 2009-02-19 14:01:42Z johnnyw $ +// $Id: Log_Msg_IPC.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Log_Msg_IPC.h" #include "ace/Log_Record.h" #include "ace/CDR_Stream.h" #include "ace/Truncate.h" -ACE_RCSID(ace, Log_Msg_IPC, "$Id: Log_Msg_IPC.cpp 84527 2009-02-19 14:01:42Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Log_Msg_NT_Event_Log.cpp b/dep/acelite/ace/Log_Msg_NT_Event_Log.cpp index 5835c7243c1..2e7ff49fa70 100644 --- a/dep/acelite/ace/Log_Msg_NT_Event_Log.cpp +++ b/dep/acelite/ace/Log_Msg_NT_Event_Log.cpp @@ -1,4 +1,4 @@ -// $Id: Log_Msg_NT_Event_Log.cpp 87683 2009-11-20 18:14:36Z schmidt $ +// $Id: Log_Msg_NT_Event_Log.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/config-all.h" @@ -10,7 +10,7 @@ #include "ace/OS_NS_stdio.h" #include "ace/OS_NS_string.h" -ACE_RCSID(ace, Log_Msg_NT_Event_Log, "$Id: Log_Msg_NT_Event_Log.cpp 87683 2009-11-20 18:14:36Z schmidt $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Log_Record.cpp b/dep/acelite/ace/Log_Record.cpp index f3ea5d6591c..cea333a5c1e 100644 --- a/dep/acelite/ace/Log_Record.cpp +++ b/dep/acelite/ace/Log_Record.cpp @@ -1,4 +1,4 @@ -// $Id: Log_Record.cpp 81826 2008-06-02 15:29:53Z schmidt $ +// $Id: Log_Record.cpp 91764 2010-09-14 13:04:37Z johnnyw $ #include "ace/Log_Record.h" @@ -21,8 +21,6 @@ #include "ace/OS_Memory.h" -ACE_RCSID(ace, Log_Record, "$Id: Log_Record.cpp 81826 2008-06-02 15:29:53Z schmidt $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Log_Record) diff --git a/dep/acelite/ace/Log_Record.h b/dep/acelite/ace/Log_Record.h index aaf2a21ede5..fb2e9ddcc2a 100644 --- a/dep/acelite/ace/Log_Record.h +++ b/dep/acelite/ace/Log_Record.h @@ -4,7 +4,7 @@ /** * @file Log_Record.h * - * $Id: Log_Record.h 91064 2010-07-12 10:11:24Z johnnyw $ + * $Id: Log_Record.h 91764 2010-09-14 13:04:37Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -103,27 +103,6 @@ public: /// IMPORTANT: @a name must be a statically allocated const ACE_TCHAR* static void priority_name (ACE_Log_Priority p, const ACE_TCHAR *name); - // = Marshall/demarshall - /** - * Encode the @c Log_Record for transmission on the network. - * @deprecated - * The encode() and decode() metods are deprecated; please use - * the CDR insertion and extraction operators to properly encode and decode - * ACE_Log_Record objects. - */ - void encode (void); - - /** - * Decode the @c Log_Record received from the network. - * @deprecated - * The encode() and decode() metods are deprecated; please use - * the CDR insertion and extraction operators to properly encode and decode - * ACE_Log_Record objects. - */ - void decode (void); - - // = Set/get methods - /// Get the type of the Log_Record. ACE_UINT32 type (void) const; diff --git a/dep/acelite/ace/Log_Record.inl b/dep/acelite/ace/Log_Record.inl index 50cfa70df3e..dda0993c22e 100644 --- a/dep/acelite/ace/Log_Record.inl +++ b/dep/acelite/ace/Log_Record.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Log_Record.inl 84183 2009-01-19 08:50:16Z johnnyw $ +// $Id: Log_Record.inl 91764 2010-09-14 13:04:37Z johnnyw $ #include "ace/Global_Macros.h" #include "ace/os_include/arpa/os_inet.h" @@ -16,37 +16,6 @@ ACE_Log_Record::~ACE_Log_Record (void) delete [] this->msg_data_; } -ACE_INLINE void -ACE_Log_Record::encode (void) -{ - ACE_TRACE ("ACE_Log_Record::encode"); - this->length_ = ACE_HTONL (this->length_); - this->type_ = ACE_HTONL (this->type_); - // Make sure we don't enclose the sec() and usec() fields until - // they've been normalized. - // secs_ is commented out because it can be 64 bits. This method is - // deprecated; use the CDR operations instead. - // this->secs_ = ACE_HTONL (this->secs_); - this->usecs_ = ACE_HTONL (this->usecs_); - this->pid_ = ACE_HTONL (this->pid_); -} - -ACE_INLINE void -ACE_Log_Record::decode (void) -{ - ACE_TRACE ("ACE_Log_Record::decode"); -#if !defined (ACE_LACKS_NTOHL) - ACE_Time_Value tv (this->secs_, - ntohl (this->usecs_)); - - this->secs_ = tv.sec (); - this->usecs_ = tv.usec (); - this->type_ = ntohl (this->type_); - this->pid_ = ntohl (this->pid_); - this->length_ = ntohl (this->length_); -#endif /* ACE_LACKS_NTOHL */ -} - ACE_INLINE ACE_UINT32 ACE_Log_Record::type (void) const { diff --git a/dep/acelite/ace/Logging_Strategy.cpp b/dep/acelite/ace/Logging_Strategy.cpp index 04899f74dad..67b62465cab 100644 --- a/dep/acelite/ace/Logging_Strategy.cpp +++ b/dep/acelite/ace/Logging_Strategy.cpp @@ -1,4 +1,4 @@ -// $Id: Logging_Strategy.cpp 90712 2010-06-18 20:01:29Z shuston $ +// $Id: Logging_Strategy.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Logging_Strategy.h" #include "ace/Service_Config.h" @@ -16,10 +16,6 @@ #include "ace/OS_NS_stdio.h" #include "ace/OS_NS_unistd.h" -ACE_RCSID (ace, - Logging_Strategy, - "$Id: Logging_Strategy.cpp 90712 2010-06-18 20:01:29Z shuston $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Parse the string containing (thread) priorities and set them diff --git a/dep/acelite/ace/MEM_Acceptor.cpp b/dep/acelite/ace/MEM_Acceptor.cpp index 9484af92b0f..66c1c899669 100644 --- a/dep/acelite/ace/MEM_Acceptor.cpp +++ b/dep/acelite/ace/MEM_Acceptor.cpp @@ -1,4 +1,4 @@ -// $Id: MEM_Acceptor.cpp 84455 2009-02-13 13:31:02Z johnnyw $ +// $Id: MEM_Acceptor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/MEM_Acceptor.h" @@ -13,7 +13,7 @@ #include "ace/MEM_Acceptor.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, MEM_Acceptor, "$Id: MEM_Acceptor.cpp 84455 2009-02-13 13:31:02Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/MEM_Acceptor.h b/dep/acelite/ace/MEM_Acceptor.h index bc0b02d17a3..94ff5138deb 100644 --- a/dep/acelite/ace/MEM_Acceptor.h +++ b/dep/acelite/ace/MEM_Acceptor.h @@ -4,7 +4,7 @@ /** * @file MEM_Acceptor.h * - * $Id: MEM_Acceptor.h 84834 2009-03-16 12:28:51Z johnnyw $ + * $Id: MEM_Acceptor.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Nanbor Wang <nanbor@cs.wustl.edu> */ @@ -120,10 +120,6 @@ public: /// Returns 0 if successful, else -1. int get_local_addr (ACE_MEM_Addr &) const; - /// Accessor to the mmap options. - /// @deprecated This method has been deprecated. - ACE_MEM_SAP::MALLOC_OPTIONS& malloc_options (void); - // = Meta-type info typedef ACE_MEM_Addr PEER_ADDR; typedef ACE_MEM_Stream PEER_STREAM; diff --git a/dep/acelite/ace/MEM_Acceptor.inl b/dep/acelite/ace/MEM_Acceptor.inl index 270d0ed3c6a..4e63e10675f 100644 --- a/dep/acelite/ace/MEM_Acceptor.inl +++ b/dep/acelite/ace/MEM_Acceptor.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: MEM_Acceptor.inl 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: MEM_Acceptor.inl 91688 2010-09-09 11:21:50Z johnnyw $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -91,13 +91,4 @@ ACE_MEM_Acceptor::init_buffer_size (ACE_OFF_T bytes) this->malloc_options_.minimum_bytes_ = bytes; } -ACE_INLINE ACE_MEM_SAP::MALLOC_OPTIONS & -ACE_MEM_Acceptor::malloc_options (void) -{ - // @@ This function has been deprecated and will be removed in the - // future. - - return this->malloc_options_; -} - ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/MEM_Addr.cpp b/dep/acelite/ace/MEM_Addr.cpp index 1f6c457ff12..062f59eef45 100644 --- a/dep/acelite/ace/MEM_Addr.cpp +++ b/dep/acelite/ace/MEM_Addr.cpp @@ -1,4 +1,4 @@ -// $Id: MEM_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: MEM_Addr.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ // Defines the Internet domain address family address format. @@ -15,10 +15,6 @@ #include "ace/OS_NS_unistd.h" #include "ace/os_include/os_netdb.h" -ACE_RCSID (ace, - MEM_Addr, - "$Id: MEM_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_MEM_Addr) diff --git a/dep/acelite/ace/MEM_Connector.cpp b/dep/acelite/ace/MEM_Connector.cpp index fe5722a8a39..4b0b272dae6 100644 --- a/dep/acelite/ace/MEM_Connector.cpp +++ b/dep/acelite/ace/MEM_Connector.cpp @@ -1,9 +1,9 @@ // MEM_Connector.cpp -// $Id: MEM_Connector.cpp 83170 2008-10-13 07:21:38Z johnnyw $ +// $Id: MEM_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/MEM_Connector.h" -ACE_RCSID(ace, MEM_Connector, "$Id: MEM_Connector.cpp 83170 2008-10-13 07:21:38Z johnnyw $") + #if (ACE_HAS_POSITION_INDEPENDENT_POINTERS == 1) diff --git a/dep/acelite/ace/MEM_Connector.h b/dep/acelite/ace/MEM_Connector.h index b9f46f2d855..7301ac8fba6 100644 --- a/dep/acelite/ace/MEM_Connector.h +++ b/dep/acelite/ace/MEM_Connector.h @@ -4,7 +4,7 @@ /** * @file MEM_Connector.h * - * $Id: MEM_Connector.h 84816 2009-03-13 08:16:32Z johnnyw $ + * $Id: MEM_Connector.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Nanbor Wang <nanbor@cs.wustl.edu> */ @@ -141,10 +141,6 @@ public: /// Set the preferred signaling strategy. void preferred_strategy (ACE_MEM_IO::Signal_Strategy strategy); - /// Accessor to underlying malloc options. - /// @deprecated This method has been deprecated. - ACE_MEM_SAP::MALLOC_OPTIONS &malloc_options (void); - // = Meta-type info typedef ACE_INET_Addr PEER_ADDR; typedef ACE_MEM_Stream PEER_STREAM; diff --git a/dep/acelite/ace/MEM_Connector.inl b/dep/acelite/ace/MEM_Connector.inl index e61399ea936..e11132b5bdf 100644 --- a/dep/acelite/ace/MEM_Connector.inl +++ b/dep/acelite/ace/MEM_Connector.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: MEM_Connector.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: MEM_Connector.inl 91688 2010-09-09 11:21:50Z johnnyw $ // Establish a connection. @@ -18,13 +18,4 @@ ACE_MEM_Connector::preferred_strategy (ACE_MEM_IO::Signal_Strategy strategy) this->preferred_strategy_ = strategy; } -ACE_INLINE ACE_MEM_SAP::MALLOC_OPTIONS & -ACE_MEM_Connector::malloc_options (void) -{ - // @@ This function has been deprecated and will be removed in the - // future. - - return this->malloc_options_; -} - ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/MEM_IO.cpp b/dep/acelite/ace/MEM_IO.cpp index 84aa42542c3..679c91d31c3 100644 --- a/dep/acelite/ace/MEM_IO.cpp +++ b/dep/acelite/ace/MEM_IO.cpp @@ -1,5 +1,5 @@ // MEM_IO.cpp -// $Id: MEM_IO.cpp 88708 2010-01-25 18:58:54Z johnnyw $ +// $Id: MEM_IO.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/MEM_IO.h" #include "ace/Handle_Set.h" @@ -10,7 +10,7 @@ #include "ace/MEM_IO.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, MEM_IO, "$Id: MEM_IO.cpp 88708 2010-01-25 18:58:54Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -89,7 +89,7 @@ ACE_Reactive_MEM_IO::send_buf (ACE_MEM_SAP_Node *buf, flags, timeout) != static_cast <ssize_t> (sizeof (offset))) { - // unsucessful send, release the memory in the shared-memory. + // unsuccessful send, release the memory in the shared-memory. this->release_buffer (buf); return -1; @@ -280,12 +280,12 @@ ACE_MT_MEM_IO::recv_buf (ACE_MEM_SAP_Node *&buf, ACE_GUARD_RETURN (ACE_SYNCH_PROCESS_MUTEX, ace_mon, *this->recv_channel_.lock_, -1); buf = this->recv_channel_.queue_.read (); - + if (buf != 0) { return ACE_Utils::truncate_cast<ssize_t> (buf->size ()); } - + return -1; } } @@ -403,9 +403,9 @@ ACE_MEM_IO::send (const ACE_Message_Block *message_block, reinterpret_cast<ACE_MEM_SAP_Node *> ( this->deliver_strategy_->acquire_buffer ( ACE_Utils::truncate_cast<ssize_t> (len))); - + size_t n = 0; - + while (message_block != 0) { ACE_OS::memcpy (static_cast<char *> (buf->data ()) + n, @@ -429,145 +429,9 @@ ACE_MEM_IO::send (const ACE_Message_Block *message_block, 0, timeout); } - - return 0; -} - - -#if 0 -ssize_t -ACE_MEM_IO::recvv (iovec *io_vec, - const ACE_Time_Value *timeout) -{ - ACE_TRACE ("ACE_MEM_IO::recvv"); -#if defined (FIONREAD) - ACE_Handle_Set handle_set; - 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)) - { - case -1: - return -1; - /* NOTREACHED */ - case 0: - errno = ETIME; - return -1; - /* NOTREACHED */ - default: - // Goes fine, fallthrough to get data - break; - } - - int inlen; - - if (ACE_OS::ioctl (this->get_handle (), - FIONREAD, - &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); - return io_vec->iov_len; - } - else - return 0; -#else - ACE_UNUSED_ARG (io_vec); - ACE_UNUSED_ARG (timeout); - ACE_NOTSUP_RETURN (-1); -#endif /* FIONREAD */ -} - -// Send N char *ptrs and int lengths. Note that the char *'s precede -// the ints (basically, an varargs version of writev). The count N is -// the *total* number of trailing arguments, *not* a couple of the -// number of tuple pairs! - -ssize_t -ACE_MEM_IO::send (size_t n, ...) const -{ - ACE_TRACE ("ACE_MEM_IO::send"); - va_list argp; - size_t total_tuples = n / 2; - iovec *iovp; -#if defined (ACE_HAS_ALLOCA) - iovp = (iovec *) alloca (total_tuples * sizeof (iovec)); -#else - ACE_NEW_RETURN (iovp, - iovec[total_tuples], - -1); -#endif /* !defined (ACE_HAS_ALLOCA) */ - - va_start (argp, n); - - for (size_t i = 0; i < total_tuples; i++) - { - iovp[i].iov_base = va_arg (argp, char *); - iovp[i].iov_len = va_arg (argp, ssize_t); - } - - ssize_t result = ACE_OS::sendv (this->get_handle (), - iovp, - total_tuples); -#if !defined (ACE_HAS_ALLOCA) - delete [] iovp; -#endif /* !defined (ACE_HAS_ALLOCA) */ - va_end (argp); - return result; -} - -// This is basically an interface to ACE_OS::readv, that doesn't use -// the struct iovec_Base explicitly. The ... can be passed as an arbitrary -// number of (char *ptr, int len) tuples. However, the count N is the -// *total* number of trailing arguments, *not* a couple of the number -// of tuple pairs! - -ssize_t -ACE_MEM_IO::recv (size_t n, ...) const -{ - ACE_TRACE ("ACE_MEM_IO::recv"); - - va_list argp; - size_t total_tuples = n / 2; - iovec *iovp; -#if defined (ACE_HAS_ALLOCA) - iovp = (iovec *) alloca (total_tuples * sizeof (iovec)); -#else - ACE_NEW_RETURN (iovp, - iovec[total_tuples], - -1); -#endif /* !defined (ACE_HAS_ALLOCA) */ - - va_start (argp, n); - - for (size_t i = 0; i < total_tuples; i++) - { - iovp[i].iov_base = va_arg (argp, char *); - iovp[i].iov_len = va_arg (argp, ssize_t); - } - - ssize_t result = ACE_OS::recvv (this->get_handle (), - iovp, - total_tuples); -#if !defined (ACE_HAS_ALLOCA) - delete [] iovp; -#endif /* !defined (ACE_HAS_ALLOCA) */ - va_end (argp); - return result; + return 0; } -#endif /* 0 */ ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/MEM_IO.inl b/dep/acelite/ace/MEM_IO.inl index e3ec07fc5ce..5edc0128b9a 100644 --- a/dep/acelite/ace/MEM_IO.inl +++ b/dep/acelite/ace/MEM_IO.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: MEM_IO.inl 82559 2008-08-07 20:23:07Z parsons $ +// $Id: MEM_IO.inl 91813 2010-09-17 07:52:52Z johnnyw $ #include "ace/OS_NS_string.h" #include "ace/Truncate.h" @@ -129,7 +129,7 @@ ACE_MEM_IO::send (const void *buf, const ACE_Time_Value *timeout) { ACE_TRACE ("ACE_MEM_IO::send"); - + if (this->deliver_strategy_ == 0) { return 0; @@ -138,12 +138,12 @@ ACE_MEM_IO::send (const void *buf, ACE_MEM_SAP_Node *sbuf = this->deliver_strategy_->acquire_buffer ( ACE_Utils::truncate_cast<ssize_t> (len)); - + if (sbuf == 0) { return -1; // Memory buffer not initialized. } - + ACE_OS::memcpy (sbuf->data (), buf, len); /// @@ -166,17 +166,17 @@ ACE_MEM_IO::recv (void *buf, size_t count = 0; size_t buf_len = this->buf_size_ - this->cur_offset_; - + if (buf_len == 0) { ssize_t blen = // Buffer length this->fetch_recv_buf (flags, timeout); - + if (blen <= 0) { return blen; } - + buf_len = this->buf_size_; } diff --git a/dep/acelite/ace/MEM_SAP.cpp b/dep/acelite/ace/MEM_SAP.cpp index 6f18b7abe1c..f6209d4f40f 100644 --- a/dep/acelite/ace/MEM_SAP.cpp +++ b/dep/acelite/ace/MEM_SAP.cpp @@ -1,4 +1,4 @@ -// $Id: MEM_SAP.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: MEM_SAP.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/MEM_SAP.h" @@ -8,7 +8,7 @@ #include "ace/MEM_SAP.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, MEM_SAP, "$Id: MEM_SAP.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/MEM_SAP.h b/dep/acelite/ace/MEM_SAP.h index 8694481cc18..4ca6b7336bf 100644 --- a/dep/acelite/ace/MEM_SAP.h +++ b/dep/acelite/ace/MEM_SAP.h @@ -4,7 +4,7 @@ /** * @file MEM_SAP.h * - * $Id: MEM_SAP.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: MEM_SAP.h 92090 2010-09-29 14:10:45Z johnnyw $ * * @author Nanbor Wang <nanbor@cs.wustl.edu> */ @@ -42,11 +42,6 @@ class ACE_MEM_IO; class ACE_MEM_SAP_Node { public: -// friend class ACE_MEM_SAP; -// friend class ACE_Reactive_MEM_IO; -// friend class ACE_MT_MEM_IO; -// friend class ACE_MEM_IO; - typedef ACE_Based_Pointer<ACE_MEM_SAP_Node> ACE_MEM_SAP_NODE_PTR; /// Initialize the node with its capacity. diff --git a/dep/acelite/ace/MEM_Stream.cpp b/dep/acelite/ace/MEM_Stream.cpp index afcbd4f98d0..32647ddf13e 100644 --- a/dep/acelite/ace/MEM_Stream.cpp +++ b/dep/acelite/ace/MEM_Stream.cpp @@ -1,4 +1,4 @@ -// $Id: MEM_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: MEM_Stream.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/MEM_Stream.h" @@ -8,7 +8,7 @@ #include "ace/MEM_Stream.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, MEM_Stream, "$Id: MEM_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/MEM_Stream.h b/dep/acelite/ace/MEM_Stream.h index f0a2380c398..63ad2736a4d 100644 --- a/dep/acelite/ace/MEM_Stream.h +++ b/dep/acelite/ace/MEM_Stream.h @@ -4,7 +4,7 @@ /** * @file MEM_Stream.h * - * $Id: MEM_Stream.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: MEM_Stream.h 92069 2010-09-28 11:38:59Z johnnyw $ * * @author Nanbor Wang <nanbor@cs.wustl.edu> */ @@ -79,48 +79,6 @@ public: ssize_t send_n (const void *buf, size_t n, int flags); ssize_t recv_n (void *buf, size_t n, int flags); -#if 0 - /** - * Try to send exactly @a len bytes into @a buf from <handle> (uses - * the <send> call). If <send> blocks for longer than @a timeout the - * number of bytes actually sent is returned with @c errno == ETIME. - * If a timeout does not occur, <send_n> return @a len (i.e., the - * number of bytes requested to be sent). - */ - ssize_t send_n (const void *buf, - size_t len, - int flags, - const ACE_Time_Value *timeout); - - /** - * Try to recv exactly @a len bytes into @a buf from <handle> (uses - * the <ACE::recv_n> call). The ACE_Time_Value indicates how long - * to blocking trying to receive. If @a timeout == 0, the caller - * will block until action is possible, else will wait until the - * relative time specified in *@a timeout elapses). If <recv> blocks - * for longer than @a timeout the number of bytes actually read is - * returned with @c errno == ETIME. If a timeout does not occur, - * <recv_n> return @a len (i.e., the number of bytes requested to be - * read). - */ - ssize_t recv_n (void *buf, - size_t len, - int flags, - const ACE_Time_Value *timeout); - - /** - * Send an <iovec> of size @a n to the connected socket (uses - * <ACE::sendv_n>). Will block until all bytes are sent or an error - * occurs. - */ - ssize_t sendv_n (const iovec iov[], - size_t n) const; - - /// Receive an <iovec> of size @a n to the connected socket. - ssize_t recvv_n (iovec iov[], - size_t n) const; -#endif /* 0 */ - // = Selectively close endpoints. /// Close down the reader. diff --git a/dep/acelite/ace/MEM_Stream.inl b/dep/acelite/ace/MEM_Stream.inl index e995db5c5f9..d7cff06cbf8 100644 --- a/dep/acelite/ace/MEM_Stream.inl +++ b/dep/acelite/ace/MEM_Stream.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: MEM_Stream.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: MEM_Stream.inl 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/MEM_Stream.h" #include "ace/OS_NS_sys_socket.h" @@ -73,108 +73,4 @@ ACE_MEM_Stream::recv_n (void *buf, size_t n, int flags) return this->recv (buf, n, flags); } -#if 0 -ACE_INLINE ssize_t -ACE_MEM_Stream::recv_n (void *buf, - size_t len, - int flags, - const ACE_Time_Value *timeout) const -{ - ACE_TRACE ("ACE_MEM_Stream::recv_n"); - return ACE::recv_n (this->get_handle (), - buf, - len, - flags, - timeout); -} - -ACE_INLINE ssize_t -ACE_MEM_Stream::recv_n (void *buf, - size_t len, - const ACE_Time_Value *timeout) const -{ - ACE_TRACE ("ACE_MEM_Stream::recv_n"); - return ACE::recv_n (this->get_handle (), - buf, - len, - timeout); -} - -ACE_INLINE ssize_t -ACE_MEM_Stream::recvv_n (iovec iov[], - size_t n, - const ACE_Time_Value *timeout) const -{ - ACE_TRACE ("ACE_MEM_Stream::recvv_n"); - return ACE::recvv_n (this->get_handle (), - iov, - n, - timeout); -} - -ACE_INLINE ssize_t -ACE_MEM_Stream::send_n (const void *buf, - size_t len, - int flags, - const ACE_Time_Value *timeout) const -{ - ACE_TRACE ("ACE_MEM_Stream::send_n"); - return ACE::send_n (this->get_handle (), - buf, - len, - flags, - timeout); -} - -ACE_INLINE ssize_t -ACE_MEM_Stream::send_n (const void *buf, - size_t len, - const ACE_Time_Value *timeout) const -{ - ACE_TRACE ("ACE_MEM_Stream::send_n"); - return ACE::send_n (this->get_handle (), - buf, - len, - timeout); -} - -ACE_INLINE ssize_t -ACE_MEM_Stream::sendv_n (iovec iov[], - size_t n, - const ACE_Time_Value *timeout) const -{ - ACE_TRACE ("ACE_MEM_Stream::sendv_n"); - return ACE::sendv_n (this->get_handle (), - iov, - n, - timeout); -} - -ACE_INLINE ssize_t -ACE_MEM_Stream::send_urg (const void *ptr, - size_t len, - const ACE_Time_Value *timeout) const -{ - ACE_TRACE ("ACE_MEM_Stream::send_urg"); - return ACE::send (this->get_handle (), - ptr, - len, - MSG_OOB, - timeout); -} - -ACE_INLINE ssize_t -ACE_MEM_Stream::recv_urg (void *ptr, - size_t len, - const ACE_Time_Value *timeout) const -{ - ACE_TRACE ("ACE_MEM_Stream::recv_urg"); - return ACE::recv (this->get_handle (), - ptr, - len, - MSG_OOB, - timeout); -} -#endif /* 0 */ - ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/MMAP_Memory_Pool.cpp b/dep/acelite/ace/MMAP_Memory_Pool.cpp index bf42ad33dd5..82556a8327a 100644 --- a/dep/acelite/ace/MMAP_Memory_Pool.cpp +++ b/dep/acelite/ace/MMAP_Memory_Pool.cpp @@ -1,4 +1,4 @@ -// $Id: MMAP_Memory_Pool.cpp 87823 2009-11-30 12:38:34Z johnnyw $ +// $Id: MMAP_Memory_Pool.cpp 91286 2010-08-05 09:04:31Z johnnyw $ // MMAP_Memory_Pool.cpp #include "ace/MMAP_Memory_Pool.h" @@ -18,10 +18,6 @@ #include "ace/MMAP_Memory_Pool.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, - MMAP_Memory_Pool, - "$Id: MMAP_Memory_Pool.cpp 87823 2009-11-30 12:38:34Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_MMAP_Memory_Pool) diff --git a/dep/acelite/ace/Makefile.in b/dep/acelite/ace/Makefile.in deleted file mode 100644 index 946522f08af..00000000000 --- a/dep/acelite/ace/Makefile.in +++ /dev/null @@ -1,5498 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -target_triplet = @target@ -@BUILD_ACE_FOR_TAO_FALSE@am__append_1 = libACE.la -@BUILD_ACE_FOR_TAO_FALSE@am__append_2 = \ -@BUILD_ACE_FOR_TAO_FALSE@ ACE.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ACE.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ACE_export.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ARGV.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ARGV.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ARGV.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Acceptor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Params.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Params.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_QoS.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_QoS.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Activation_Queue.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Activation_Queue.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Active_Map_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Active_Map_Manager.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Active_Map_Manager_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Active_Map_Manager_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Active_Map_Manager_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Arg_Shifter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Arg_Shifter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Argv_Type_Converter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Argv_Type_Converter.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Array.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Array_Base.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Array_Base.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Array_Base.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Array_Map.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Array_Map.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Array_Map.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Assert.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_IO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_IO_Impl.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_IO_Impl.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_Pseudo_Task.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op_Sparc.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op_GCC_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op_GCC_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op_GCC_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Event.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Event.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Functor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Functor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Functor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_IncDec_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_IncDec_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_IncDec_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Ptr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Ptr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Ptr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Barrier.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Barrier.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Base_Thread_Adapter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Base_Thread_Adapter.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Based_Pointer_Repository.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Based_Pointer_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Based_Pointer_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Based_Pointer_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Basic_Stats.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Basic_Stats.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Basic_Types.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Basic_Types.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Bound_Ptr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Bound_Ptr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Base.h \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Base.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Size.h \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Size.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ CORBA_macros.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Cache_Map_Manager_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Cache_Map_Manager_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Cache_Map_Manager_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Cached_Connect_Strategy_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Cached_Connect_Strategy_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Caching_Strategies_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Caching_Strategies_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Caching_Strategies_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Caching_Utility_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Caching_Utility_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Capabilities.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Capabilities.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Cleanup.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Cleanup.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Cleanup_Strategies_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Cleanup_Strategies_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Codecs.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Codeset_IBM1047.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Codeset_Registry.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Codeset_Registry.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Condition_Recursive_Thread_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Condition_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Condition_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Condition_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Condition_Thread_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Condition_Thread_Mutex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Configuration.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Configuration.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Configuration_Import_Export.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Connection_Recycling_Strategy.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Containers.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Containers.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Containers_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Containers_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Containers_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Copy_Disabled.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Countdown_Time.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Countdown_Time.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV.h \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_IO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_IO.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ DLL.h \ -@BUILD_ACE_FOR_TAO_FALSE@ DLL_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Date_Time.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Date_Time.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Default_Constants.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dev_Poll_Reactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dev_Poll_Reactor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Dirent.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dirent.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Dirent_Selector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dirent_Selector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Dump.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dump_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dump_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Message_Strategy.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Message_Strategy.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Service.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Service.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Service.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Service_Base.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Service_Dependency.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Encoding_Converter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Encoding_Converter_Factory.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Env_Value_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Env_Value_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Env_Value_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Event.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Event.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Event_Handler.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Event_Handler.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Event_Handler_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Event_Handler_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Event_Handler_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Exception_Macros.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Recv.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Recv.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Recv_Msg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Recv_Msg.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Send.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Send.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Send_Msg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Send_Msg.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_IO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_IO.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ File_Lock.h \ -@BUILD_ACE_FOR_TAO_FALSE@ File_Lock.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Filecache.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Flag_Manip.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Flag_Manip.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Framework_Component.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Framework_Component.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Framework_Component_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Framework_Component_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Free_List.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Free_List.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor_String.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor_String.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Future.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Future.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Future_Set.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Future_Set.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Get_Opt.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Get_Opt.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Global_Macros.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Guard_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Guard_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Guard_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Handle_Gobbler.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Handle_Gobbler.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Handle_Ops.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Handle_Set.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Handle_Set.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Cache_Map_Manager_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Cache_Map_Manager_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Cache_Map_Manager_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Map_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Map_Manager_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Map_Manager_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Map_Manager_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Map_With_Allocator_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Map_With_Allocator_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Map_With_Allocator_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Multi_Map_Manager_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Multi_Map_Manager_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Hash_Multi_Map_Manager_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Hashable.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Hashable.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ High_Res_Timer.h \ -@BUILD_ACE_FOR_TAO_FALSE@ High_Res_Timer.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ICMP_Socket.h \ -@BUILD_ACE_FOR_TAO_FALSE@ INET_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ INET_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ IOStream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ IOStream_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ IOStream_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ IOStream_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ IO_Cntl_Msg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ IO_Cntl_Msg.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ IO_SAP.h \ -@BUILD_ACE_FOR_TAO_FALSE@ IO_SAP.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ IPC_SAP.h \ -@BUILD_ACE_FOR_TAO_FALSE@ IPC_SAP.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ If_Then_Else.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Init_ACE.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_Auto_Ptr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_Auto_Ptr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_Auto_Ptr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_List.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_List.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_List.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_List_Node.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_List_Node.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Intrusive_List_Node.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ LOCK_SOCK_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ LOCK_SOCK_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK.h \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_CODgram.h \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_CODgram.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Dgram.h \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Dgram.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Lib_Find.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Memory_Pool.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Name_Space.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Name_Space_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Name_Space_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Tokens.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Tokens.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Lock.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Lock.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Lock_Adapter_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Lock_Adapter_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Lock_Adapter_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_Backend.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_Callback.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_IPC.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_NT_Event_Log.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_UNIX_Syslog.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Priority.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Record.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Record.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Logging_Strategy.h \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Acceptor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_IO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_IO.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_SAP.h \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_SAP.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ MMAP_Memory_Pool.h \ -@BUILD_ACE_FOR_TAO_FALSE@ MMAP_Memory_Pool.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc_Allocator.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc_Allocator.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc_Base.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Managed_Object.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Managed_Object.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Managed_Object.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Manual_Event.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Manual_Event.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Map_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Map_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Map_Manager.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Map_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Map_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Map_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Mem_Map.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Mem_Map.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Memory_Pool.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Block.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Block.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Block_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Block_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Block_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue_NT.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue_NT.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue_Vx.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue_Vx.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Method_Object.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Method_Request.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Min_Max.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Module.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Module.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Module.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Admin.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Admin_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Base.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Base.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Control_Action.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Control_Types.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Point_Registry.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Size.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Msg_WFMO_Reactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Msg_WFMO_Reactor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Multihomed_INET_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Multihomed_INET_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Mutex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ NT_Service.h \ -@BUILD_ACE_FOR_TAO_FALSE@ NT_Service.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Name_Proxy.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Name_Request_Reply.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Name_Space.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Naming_Context.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Naming_Context.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Netlink_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Netlink_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Node.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Node.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Notification_Queue.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Notification_Queue.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Notification_Strategy.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Notification_Strategy.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Null_Barrier.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Null_Condition.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Null_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Null_Semaphore.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Numeric_Limits.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Dirent.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Errno.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Errno.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Log_Msg_Attributes.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Log_Msg_Attributes.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Memory.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_Thread.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_Thread.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_arpa_inet.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_arpa_inet.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_ctype.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_ctype.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_dirent.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_dirent.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_dlfcn.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_dlfcn.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_errno.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_errno.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_fcntl.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_fcntl.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_macros.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_math.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_math.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_netdb.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_netdb.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_poll.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_poll.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_pwd.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_pwd.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_regex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_regex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_signal.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_signal.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stdio.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stdio.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stdlib.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stdlib.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_string.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_string.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_strings.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_strings.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stropts.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stropts.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_mman.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_mman.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_msg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_msg.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_resource.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_resource.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_select.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_select.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_sendfile.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_sendfile.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_shm.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_shm.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_socket.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_socket.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_stat.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_stat.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_time.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_time.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_uio.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_uio.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_utsname.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_wait.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_wait.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_time.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_time.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_unistd.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_unistd.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_wchar.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_wctype.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_wctype.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_wchar.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_QoS.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_String.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_TLI.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_TLI.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Thread_Adapter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_main.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Obchunk.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Obchunk.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Object_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Object_Manager.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Object_Manager_Base.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Obstack_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Obstack_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Obstack_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ PI_Malloc.h \ -@BUILD_ACE_FOR_TAO_FALSE@ PI_Malloc.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ POSIX_Asynch_IO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ POSIX_CB_Proactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ POSIX_Proactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ POSIX_Proactor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Pagefile_Memory_Pool.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Pagefile_Memory_Pool.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Pair.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Pair_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Pair_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Pair_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Parse_Node.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Ping_Socket.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Ping_Socket.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Pipe.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Pipe.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Priority_Reactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Proactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Proactor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Proactor_Impl.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Process.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Process.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Manager.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Mutex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Semaphore.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Semaphore.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Profile_Timer.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Profile_Timer.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ RB_Tree.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ RB_Tree.h \ -@BUILD_ACE_FOR_TAO_FALSE@ RB_Tree.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Mutex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Process_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Process_Mutex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Thread_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Thread_Mutex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Impl.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Notification_Strategy.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Notification_Strategy.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Timer_Interface.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Token_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Token_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Read_Buffer.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Read_Buffer.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Recursive_Thread_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Recursive_Thread_Mutex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Recyclable.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Recyclable.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Refcountable.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Refcountable_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Refcountable_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Refcountable_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Refcounted_Auto_Ptr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Refcounted_Auto_Ptr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Refcounted_Auto_Ptr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Registry.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Registry_Name_Space.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Remote_Name_Space.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Remote_Tokens.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Remote_Tokens.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Reverse_Lock_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Reverse_Lock_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Reverse_Lock_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Acceptor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_CODgram.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_CODgram.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram_Bcast.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram_Bcast.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram_Mcast.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram_Mcast.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_IO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_IO.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Netlink.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Netlink.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Acceptor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Association.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Association.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SString.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SString.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SStringfwd.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Stack_Trace.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SUN_Proactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Message.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Message.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Message_Queue.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Message_Queue.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Semaphore_Complex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Semaphore_Complex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Semaphore_Simple.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Semaphore_Simple.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Shared_Memory.h \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Shared_Memory.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Sample_History.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Sample_History.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Sbrk_Memory_Pool.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Sched_Params.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Sched_Params.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Select_Reactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Select_Reactor_Base.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Select_Reactor_Base.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Select_Reactor_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Select_Reactor_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Select_Reactor_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Semaphore.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Semaphore.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Config.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Config.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Gestalt.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Gestalt.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Object.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Object.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Repository.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Repository.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Types.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Types.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory_MM.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory_MM.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory_Pool.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory_SV.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory_SV.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Object.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Object.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Sig_Adapter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Sig_Handler.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Sig_Handler.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Signal.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Signal.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Singleton.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Singleton.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Singleton.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Sock_Connect.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Static_Object_Lock.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Stats.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Stats.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Strategies.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Strategies_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Strategies_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Strategies_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Stream_Modules.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Stream_Modules.h \ -@BUILD_ACE_FOR_TAO_FALSE@ String_Base.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ String_Base.h \ -@BUILD_ACE_FOR_TAO_FALSE@ String_Base.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ String_Base_Const.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Svc_Conf.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Svc_Conf_Lexer.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Svc_Conf_Tokens.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Svc_Conf_Token_Table.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Svc_Handler.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Svc_Handler.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Synch.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Synch_Options.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Synch_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Synch_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Synch_Traits.h \ -@BUILD_ACE_FOR_TAO_FALSE@ System_Time.h \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI.h \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI_Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI_Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ TP_Reactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ TP_Reactor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ TSS_Adapter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ TSS_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ TSS_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ TSS_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ TTY_IO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Task.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Task.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Task_Ex_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Task_Ex_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Task_Ex_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Task_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Task_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Task_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Test_and_Set.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Test_and_Set.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Adapter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Adapter.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Control.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Control.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Exit.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Hook.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Manager.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Mutex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Mutex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Semaphore.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Semaphore.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Throughput_Stats.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Time_Value.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Time_Value.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Timeprobe.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timeprobe.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Timeprobe_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Timeprobe_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Hash_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Hash_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Heap_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Heap_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_List_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_List_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Queue_Adapters.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Queue_Adapters.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Queue_Adapters.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Queue_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Queue_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Queue_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Wheel_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Wheel_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Tokenizer_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Tokenizer_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Hash.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Heap.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_List.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Queue.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Queuefwd.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Timer_Wheel.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Token.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Token.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Collection.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Collection.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Invariants.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Manager.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Manager.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Request_Reply.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Request_Reply.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Trace.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Truncate.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Typed_SV_Message.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Typed_SV_Message.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Typed_SV_Message.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Typed_SV_Message_Queue.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Typed_SV_Message_Queue.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Typed_SV_Message_Queue.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ UNIX_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UNIX_Addr.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Acceptor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Acceptor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Addr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Connector.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Connector.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Stream.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Stream.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ UTF16_Encoding_Converter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UTF16_Encoding_Converter.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ UTF32_Encoding_Converter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UTF8_Encoding_Converter.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UUID.h \ -@BUILD_ACE_FOR_TAO_FALSE@ UUID.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Queue.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Queue.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Queue.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Set.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Set.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Set.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Set_Ex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Set_Ex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Unbounded_Set_Ex.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Value_Ptr.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Vector_T.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Vector_T.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Vector_T.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ Version.h \ -@BUILD_ACE_FOR_TAO_FALSE@ Versioned_Namespace.h \ -@BUILD_ACE_FOR_TAO_FALSE@ WFMO_Reactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ WFMO_Reactor.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ WIN32_Asynch_IO.h \ -@BUILD_ACE_FOR_TAO_FALSE@ WIN32_Proactor.h \ -@BUILD_ACE_FOR_TAO_FALSE@ XML_Svc_Conf.h \ -@BUILD_ACE_FOR_TAO_FALSE@ XTI_ATM_Mcast.h \ -@BUILD_ACE_FOR_TAO_FALSE@ XTI_ATM_Mcast.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ ace_wchar.h \ -@BUILD_ACE_FOR_TAO_FALSE@ ace_wchar.inl \ -@BUILD_ACE_FOR_TAO_FALSE@ checked_iterator.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-WinCE.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-all.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-lite.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-macros.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-minimal.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-win32-borland.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-win32-common.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-win32-ghs.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-win32-msvc-7.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-win32-msvc-8.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-win32-msvc.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config-win32.h \ -@BUILD_ACE_FOR_TAO_FALSE@ config.h \ -@BUILD_ACE_FOR_TAO_FALSE@ iosfwd.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/arpa/os_inet.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/net/os_if.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/netinet/os_in.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/netinet/os_tcp.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_aio.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_assert.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_byteswap.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_complex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_cpio.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_ctype.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_dirent.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_dlfcn.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_errno.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_fcntl.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_fenv.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_float.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_fmtmsg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_fnmatch.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_ftw.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_glob.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_grp.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_iconv.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_intrin.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_inttypes.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_iso646.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_kstat.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_langinfo.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_libgen.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_limits.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_local.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_math.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_monetary.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_mqueue.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_ndbm.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_netdb.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_nl_types.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_pdh.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_pdhmsg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_poll.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_pthread.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_pwd.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_regex.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_sched.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_search.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_semaphore.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_setjmp.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_signal.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_spawn.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_stdarg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_stdbool.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_stddef.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_stdint.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_stdio.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_stdlib.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_string.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_strings.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_stropts.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_syslog.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_tar.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_termios.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_tgmath.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_time.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_trace.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_typeinfo.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_ucontext.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_ulimit.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_unistd.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_utime.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_utmpx.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_wchar.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_wctype.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/os_wordexp.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_ipc.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_loadavg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_mman.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_msg.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_pstat.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_resource.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_select.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_sem.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_shm.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_socket.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_stat.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_statvfs.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_sysctl.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_sysinfo.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_time.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_timeb.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_times.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_types.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_uio.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_un.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_utsname.h \ -@BUILD_ACE_FOR_TAO_FALSE@ os_include/sys/os_wait.h \ -@BUILD_ACE_FOR_TAO_FALSE@ post.h \ -@BUILD_ACE_FOR_TAO_FALSE@ pre.h \ -@BUILD_ACE_FOR_TAO_FALSE@ streams.h \ -@BUILD_ACE_FOR_TAO_FALSE@ svc_export.h - -@BUILD_ACE_FOR_TAO_FALSE@am__append_3 = \ -@BUILD_ACE_FOR_TAO_FALSE@ ACE.pc - -@BUILD_ACE_FOR_TAO_FALSE@am__append_4 = \ -@BUILD_ACE_FOR_TAO_FALSE@ ACE.pc - -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@am__append_5 = libACE_FlReactor.la -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@am__append_6 = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ FlReactor/ACE_FlReactor_export.h \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ FlReactor/FlReactor.h - -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@am__append_7 = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ ACE_FlReactor.pc - -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@am__append_8 = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ ACE_FlReactor.pc - -@BUILD_QT_TRUE@am__append_9 = QtReactor/QtReactor_moc.cpp \ -@BUILD_QT_TRUE@ ACE_QtReactor.pc -@BUILD_QT_TRUE@am__append_10 = libACE_QtReactor.la -@BUILD_QT_TRUE@am__append_11 = \ -@BUILD_QT_TRUE@ QtReactor/ACE_QtReactor_export.h \ -@BUILD_QT_TRUE@ QtReactor/QtReactor.h - -@BUILD_QT_TRUE@am__append_12 = \ -@BUILD_QT_TRUE@ ACE_QtReactor.pc - -@BUILD_TK_TRUE@am__append_13 = libACE_TkReactor.la -@BUILD_TK_TRUE@am__append_14 = \ -@BUILD_TK_TRUE@ TkReactor/ACE_TkReactor_export.h \ -@BUILD_TK_TRUE@ TkReactor/TkReactor.h - -@BUILD_TK_TRUE@am__append_15 = \ -@BUILD_TK_TRUE@ ACE_TkReactor.pc - -@BUILD_TK_TRUE@am__append_16 = \ -@BUILD_TK_TRUE@ ACE_TkReactor.pc - -@BUILD_X11_TRUE@@BUILD_XT_TRUE@am__append_17 = libACE_XtReactor.la -@BUILD_X11_TRUE@@BUILD_XT_TRUE@am__append_18 = \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ XtReactor/ACE_XtReactor_export.h \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ XtReactor/XtReactor.h - -@BUILD_X11_TRUE@@BUILD_XT_TRUE@am__append_19 = \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ ACE_XtReactor.pc - -@BUILD_X11_TRUE@@BUILD_XT_TRUE@am__append_20 = \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ ACE_XtReactor.pc - -subdir = ace -DIST_COMMON = README $(am__nobase_include_HEADERS_DIST) \ - $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ - $(srcdir)/config.h.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/ace.m4 \ - $(top_srcdir)/m4/ace_defines.m4 $(top_srcdir)/m4/ace_func.m4 \ - $(top_srcdir)/m4/ace_functions.m4 \ - $(top_srcdir)/m4/ace_headers.m4 $(top_srcdir)/m4/acinclude.m4 \ - $(top_srcdir)/m4/aio.m4 $(top_srcdir)/m4/compiler.m4 \ - $(top_srcdir)/m4/config_h.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/platform.m4 \ - $(top_srcdir)/m4/subsets.m4 $(top_srcdir)/m4/threads.m4 \ - $(top_srcdir)/m4/tls.m4 $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ - "$(DESTDIR)$(includedir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libACE_la_LIBADD = -am__libACE_la_SOURCES_DIST = ACE.cpp ACE_crc32.cpp ACE_crc_ccitt.cpp \ - ATM_Acceptor.cpp ATM_Addr.cpp ATM_Connector.cpp ATM_Params.cpp \ - ATM_QoS.cpp ATM_Stream.cpp Activation_Queue.cpp \ - Active_Map_Manager.cpp Addr.cpp Argv_Type_Converter.cpp \ - Assert.cpp Asynch_IO.cpp Asynch_IO_Impl.cpp \ - Asynch_Pseudo_Task.cpp Atomic_Op.cpp Atomic_Op_Sparc.c \ - Auto_Event.cpp Barrier.cpp Base_Thread_Adapter.cpp \ - Based_Pointer_Repository.cpp Basic_Stats.cpp Basic_Types.cpp \ - CDR_Base.cpp CDR_Size.cpp CDR_Stream.cpp Capabilities.cpp \ - Cleanup.cpp Codecs.cpp Codeset_IBM1047.cpp \ - Codeset_Registry.cpp Codeset_Registry_db.cpp \ - Condition_Recursive_Thread_Mutex.cpp \ - Condition_Thread_Mutex.cpp Configuration.cpp \ - Configuration_Import_Export.cpp \ - Connection_Recycling_Strategy.cpp Containers.cpp \ - Copy_Disabled.cpp Countdown_Time.cpp DEV.cpp DEV_Addr.cpp \ - DEV_Connector.cpp DEV_IO.cpp DLL.cpp DLL_Manager.cpp \ - Date_Time.cpp Dev_Poll_Reactor.cpp Dirent.cpp \ - Dirent_Selector.cpp Dump.cpp Dynamic.cpp \ - Dynamic_Message_Strategy.cpp Dynamic_Service_Base.cpp \ - Dynamic_Service_Dependency.cpp Encoding_Converter.cpp \ - Encoding_Converter_Factory.cpp Event.cpp Event_Handler.cpp \ - FIFO.cpp FIFO_Recv.cpp FIFO_Recv_Msg.cpp FIFO_Send.cpp \ - FIFO_Send_Msg.cpp FILE.cpp FILE_Addr.cpp FILE_Connector.cpp \ - FILE_IO.cpp File_Lock.cpp Filecache.cpp Flag_Manip.cpp \ - Framework_Component.cpp Functor.cpp Functor_String.cpp \ - Get_Opt.cpp Handle_Ops.cpp Handle_Set.cpp Hashable.cpp \ - High_Res_Timer.cpp ICMP_Socket.cpp INET_Addr.cpp IOStream.cpp \ - IO_Cntl_Msg.cpp IO_SAP.cpp IPC_SAP.cpp Init_ACE.cpp LSOCK.cpp \ - LSOCK_Acceptor.cpp LSOCK_CODgram.cpp LSOCK_Connector.cpp \ - LSOCK_Dgram.cpp LSOCK_Stream.cpp Lib_Find.cpp \ - Local_Memory_Pool.cpp Local_Name_Space.cpp Local_Tokens.cpp \ - Lock.cpp Log_Msg.cpp Log_Msg_Backend.cpp Log_Msg_Callback.cpp \ - Log_Msg_IPC.cpp Log_Msg_NT_Event_Log.cpp \ - Log_Msg_UNIX_Syslog.cpp Log_Record.cpp Logging_Strategy.cpp \ - MEM_Acceptor.cpp MEM_Addr.cpp MEM_Connector.cpp MEM_IO.cpp \ - MEM_SAP.cpp MEM_Stream.cpp MMAP_Memory_Pool.cpp Malloc.cpp \ - Malloc_Allocator.cpp Manual_Event.cpp Mem_Map.cpp \ - Message_Block.cpp Message_Queue.cpp Message_Queue_NT.cpp \ - Message_Queue_Vx.cpp Method_Request.cpp Monitor_Admin.cpp \ - Monitor_Admin_Manager.cpp Monitor_Base.cpp \ - Monitor_Control_Action.cpp Monitor_Control_Types.cpp \ - Monitor_Point_Registry.cpp Monitor_Size.cpp \ - Msg_WFMO_Reactor.cpp Multihomed_INET_Addr.cpp Mutex.cpp \ - NT_Service.cpp Name_Proxy.cpp Name_Request_Reply.cpp \ - Name_Space.cpp Naming_Context.cpp Netlink_Addr.cpp \ - Notification_Queue.cpp Notification_Strategy.cpp OS_Errno.cpp \ - OS_Log_Msg_Attributes.cpp OS_NS_Thread.cpp OS_NS_arpa_inet.cpp \ - OS_NS_ctype.cpp OS_NS_dirent.cpp OS_NS_dlfcn.cpp \ - OS_NS_errno.cpp OS_NS_fcntl.cpp OS_NS_math.cpp OS_NS_netdb.cpp \ - OS_NS_poll.cpp OS_NS_pwd.cpp OS_NS_regex.cpp OS_NS_signal.cpp \ - OS_NS_stdio.cpp OS_NS_stdlib.cpp OS_NS_string.cpp \ - OS_NS_strings.cpp OS_NS_stropts.cpp OS_NS_sys_mman.cpp \ - OS_NS_sys_msg.cpp OS_NS_sys_resource.cpp OS_NS_sys_select.cpp \ - OS_NS_sys_sendfile.cpp OS_NS_sys_shm.cpp OS_NS_sys_socket.cpp \ - OS_NS_sys_stat.cpp OS_NS_sys_time.cpp OS_NS_sys_uio.cpp \ - OS_NS_sys_utsname.cpp OS_NS_sys_wait.cpp OS_NS_time.cpp \ - OS_NS_unistd.cpp OS_NS_wchar.cpp OS_NS_wctype.cpp OS_QoS.cpp \ - OS_TLI.cpp OS_Thread_Adapter.cpp OS_main.cpp Obchunk.cpp \ - Object_Manager.cpp Object_Manager_Base.cpp PI_Malloc.cpp \ - POSIX_Asynch_IO.cpp POSIX_CB_Proactor.cpp POSIX_Proactor.cpp \ - Pagefile_Memory_Pool.cpp Parse_Node.cpp Ping_Socket.cpp \ - Pipe.cpp Priority_Reactor.cpp Proactor.cpp Proactor_Impl.cpp \ - Process.cpp Process_Manager.cpp Process_Mutex.cpp \ - Process_Semaphore.cpp Profile_Timer.cpp RW_Mutex.cpp \ - RW_Process_Mutex.cpp RW_Thread_Mutex.cpp Reactor.cpp \ - Reactor_Impl.cpp Reactor_Notification_Strategy.cpp \ - Reactor_Timer_Interface.cpp Read_Buffer.cpp \ - Recursive_Thread_Mutex.cpp Recyclable.cpp Registry.cpp \ - Registry_Name_Space.cpp Remote_Name_Space.cpp \ - Remote_Tokens.cpp Rtems_init.c SOCK.cpp SOCK_Acceptor.cpp \ - SOCK_CODgram.cpp SOCK_Connector.cpp SOCK_Dgram.cpp \ - SOCK_Dgram_Bcast.cpp SOCK_Dgram_Mcast.cpp SOCK_IO.cpp \ - SOCK_Netlink.cpp SOCK_SEQPACK_Acceptor.cpp \ - SOCK_SEQPACK_Association.cpp SOCK_SEQPACK_Connector.cpp \ - SOCK_Stream.cpp SPIPE.cpp SPIPE_Acceptor.cpp SPIPE_Addr.cpp \ - SPIPE_Connector.cpp SPIPE_Stream.cpp SString.cpp \ - Stack_Trace.cpp SUN_Proactor.cpp SV_Message.cpp \ - SV_Message_Queue.cpp SV_Semaphore_Complex.cpp \ - SV_Semaphore_Simple.cpp SV_Shared_Memory.cpp \ - Sample_History.cpp Sbrk_Memory_Pool.cpp Sched_Params.cpp \ - Select_Reactor_Base.cpp Semaphore.cpp Service_Config.cpp \ - Service_Gestalt.cpp Service_Manager.cpp Service_Object.cpp \ - Service_Repository.cpp Service_Types.cpp Shared_Memory.cpp \ - Shared_Memory_MM.cpp Shared_Memory_Pool.cpp \ - Shared_Memory_SV.cpp Shared_Object.cpp Sig_Adapter.cpp \ - Sig_Handler.cpp Signal.cpp Sock_Connect.cpp Stats.cpp \ - String_Base_Const.cpp Svc_Conf_Lexer.cpp Svc_Conf_y.cpp \ - Synch_Options.cpp System_Time.cpp TLI.cpp TLI_Acceptor.cpp \ - TLI_Connector.cpp TLI_Stream.cpp TP_Reactor.cpp \ - TSS_Adapter.cpp TTY_IO.cpp Task.cpp Thread.cpp \ - Thread_Adapter.cpp Thread_Control.cpp Thread_Exit.cpp \ - Thread_Hook.cpp Thread_Manager.cpp Thread_Mutex.cpp \ - Thread_Semaphore.cpp Throughput_Stats.cpp Time_Value.cpp \ - Timeprobe.cpp Token.cpp Token_Collection.cpp \ - Token_Invariants.cpp Token_Manager.cpp Token_Request_Reply.cpp \ - Trace.cpp UNIX_Addr.cpp UPIPE_Acceptor.cpp UPIPE_Connector.cpp \ - UPIPE_Stream.cpp UTF16_Encoding_Converter.cpp \ - UTF32_Encoding_Converter.cpp UTF8_Encoding_Converter.cpp \ - UUID.cpp WFMO_Reactor.cpp WIN32_Asynch_IO.cpp \ - WIN32_Proactor.cpp XML_Svc_Conf.cpp XTI_ATM_Mcast.cpp \ - ace_wchar.cpp gethrtime.cpp -@BUILD_ACE_FOR_TAO_FALSE@am_libACE_la_OBJECTS = libACE_la-ACE.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ACE_crc32.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ACE_crc_ccitt.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ATM_Acceptor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ATM_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ATM_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ATM_Params.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ATM_QoS.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ATM_Stream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Activation_Queue.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Active_Map_Manager.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Argv_Type_Converter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Assert.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Asynch_IO.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Asynch_IO_Impl.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Asynch_Pseudo_Task.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Atomic_Op.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Atomic_Op_Sparc.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Auto_Event.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Barrier.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Base_Thread_Adapter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Based_Pointer_Repository.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Basic_Stats.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Basic_Types.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-CDR_Base.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-CDR_Size.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-CDR_Stream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Capabilities.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Cleanup.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Codecs.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Codeset_IBM1047.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Codeset_Registry.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Codeset_Registry_db.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Condition_Recursive_Thread_Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Condition_Thread_Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Configuration.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Configuration_Import_Export.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Connection_Recycling_Strategy.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Containers.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Copy_Disabled.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Countdown_Time.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-DEV.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-DEV_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-DEV_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-DEV_IO.lo libACE_la-DLL.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-DLL_Manager.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Date_Time.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Dev_Poll_Reactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Dirent.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Dirent_Selector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Dump.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Dynamic.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Dynamic_Message_Strategy.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Dynamic_Service_Base.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Dynamic_Service_Dependency.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Encoding_Converter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Encoding_Converter_Factory.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Event.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Event_Handler.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FIFO.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FIFO_Recv.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FIFO_Recv_Msg.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FIFO_Send.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FIFO_Send_Msg.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FILE.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FILE_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FILE_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-FILE_IO.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-File_Lock.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Filecache.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Flag_Manip.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Framework_Component.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Functor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Functor_String.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Get_Opt.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Handle_Ops.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Handle_Set.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Hashable.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-High_Res_Timer.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ICMP_Socket.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-INET_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-IOStream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-IO_Cntl_Msg.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-IO_SAP.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-IPC_SAP.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Init_ACE.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-LSOCK.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-LSOCK_Acceptor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-LSOCK_CODgram.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-LSOCK_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-LSOCK_Dgram.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-LSOCK_Stream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Lib_Find.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Local_Memory_Pool.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Local_Name_Space.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Local_Tokens.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Lock.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Log_Msg.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Log_Msg_Backend.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Log_Msg_Callback.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Log_Msg_IPC.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Log_Msg_NT_Event_Log.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Log_Msg_UNIX_Syslog.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Log_Record.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Logging_Strategy.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-MEM_Acceptor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-MEM_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-MEM_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-MEM_IO.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-MEM_SAP.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-MEM_Stream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-MMAP_Memory_Pool.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Malloc.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Malloc_Allocator.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Manual_Event.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Mem_Map.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Message_Block.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Message_Queue.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Message_Queue_NT.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Message_Queue_Vx.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Method_Request.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Monitor_Admin.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Monitor_Admin_Manager.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Monitor_Base.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Monitor_Control_Action.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Monitor_Control_Types.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Monitor_Point_Registry.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Monitor_Size.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Msg_WFMO_Reactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Multihomed_INET_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-NT_Service.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Name_Proxy.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Name_Request_Reply.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Name_Space.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Naming_Context.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Netlink_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Notification_Queue.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Notification_Strategy.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_Errno.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_Log_Msg_Attributes.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_Thread.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_arpa_inet.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_ctype.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_dirent.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_dlfcn.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_errno.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_fcntl.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_math.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_netdb.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_poll.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_pwd.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_regex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_signal.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_stdio.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_stdlib.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_string.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_strings.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_stropts.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_mman.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_msg.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_resource.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_select.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_sendfile.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_shm.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_socket.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_stat.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_time.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_uio.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_utsname.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_sys_wait.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_time.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_unistd.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_wchar.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_NS_wctype.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_QoS.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_TLI.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_Thread_Adapter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-OS_main.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Obchunk.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Object_Manager.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Object_Manager_Base.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-PI_Malloc.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-POSIX_Asynch_IO.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-POSIX_CB_Proactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-POSIX_Proactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Pagefile_Memory_Pool.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Parse_Node.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Ping_Socket.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Pipe.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Priority_Reactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Proactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Proactor_Impl.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Process.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Process_Manager.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Process_Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Process_Semaphore.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Profile_Timer.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-RW_Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-RW_Process_Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-RW_Thread_Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Reactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Reactor_Impl.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Reactor_Notification_Strategy.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Reactor_Timer_Interface.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Read_Buffer.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Recursive_Thread_Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Recyclable.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Registry.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Registry_Name_Space.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Remote_Name_Space.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Remote_Tokens.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Rtems_init.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_Acceptor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_CODgram.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_Dgram.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_Dgram_Bcast.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_Dgram_Mcast.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_IO.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_Netlink.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_SEQPACK_Acceptor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_SEQPACK_Association.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_SEQPACK_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SOCK_Stream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SPIPE.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SPIPE_Acceptor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SPIPE_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SPIPE_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SPIPE_Stream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SString.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Stack_Trace.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SUN_Proactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SV_Message.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SV_Message_Queue.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SV_Semaphore_Complex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SV_Semaphore_Simple.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-SV_Shared_Memory.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Sample_History.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Sbrk_Memory_Pool.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Sched_Params.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Select_Reactor_Base.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Semaphore.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Service_Config.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Service_Gestalt.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Service_Manager.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Service_Object.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Service_Repository.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Service_Types.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Shared_Memory.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Shared_Memory_MM.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Shared_Memory_Pool.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Shared_Memory_SV.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Shared_Object.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Sig_Adapter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Sig_Handler.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Signal.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Sock_Connect.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Stats.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-String_Base_Const.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Svc_Conf_Lexer.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Svc_Conf_y.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Synch_Options.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-System_Time.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-TLI.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-TLI_Acceptor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-TLI_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-TLI_Stream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-TP_Reactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-TSS_Adapter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-TTY_IO.lo libACE_la-Task.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Thread.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Thread_Adapter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Thread_Control.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Thread_Exit.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Thread_Hook.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Thread_Manager.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Thread_Mutex.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Thread_Semaphore.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Throughput_Stats.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Time_Value.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Timeprobe.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Token.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Token_Collection.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Token_Invariants.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Token_Manager.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Token_Request_Reply.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-Trace.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-UNIX_Addr.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-UPIPE_Acceptor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-UPIPE_Connector.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-UPIPE_Stream.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-UTF16_Encoding_Converter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-UTF32_Encoding_Converter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-UTF8_Encoding_Converter.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-UUID.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-WFMO_Reactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-WIN32_Asynch_IO.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-WIN32_Proactor.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-XML_Svc_Conf.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-XTI_ATM_Mcast.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-ace_wchar.lo \ -@BUILD_ACE_FOR_TAO_FALSE@ libACE_la-gethrtime.lo -libACE_la_OBJECTS = $(am_libACE_la_OBJECTS) -libACE_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libACE_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_ACE_FOR_TAO_FALSE@am_libACE_la_rpath = -rpath $(libdir) -am__DEPENDENCIES_1 = -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@libACE_FlReactor_la_DEPENDENCIES = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ libACE.la \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ $(am__DEPENDENCIES_1) -am__libACE_FlReactor_la_SOURCES_DIST = FlReactor/FlReactor.cpp -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@am_libACE_FlReactor_la_OBJECTS = libACE_FlReactor_la-FlReactor.lo -libACE_FlReactor_la_OBJECTS = $(am_libACE_FlReactor_la_OBJECTS) -libACE_FlReactor_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libACE_FlReactor_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@am_libACE_FlReactor_la_rpath = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ -rpath $(libdir) -@BUILD_QT_TRUE@libACE_QtReactor_la_DEPENDENCIES = libACE.la \ -@BUILD_QT_TRUE@ $(am__DEPENDENCIES_1) -am__libACE_QtReactor_la_SOURCES_DIST = QtReactor/QtReactor.cpp \ - QtReactor/QtReactor_moc.cpp -@BUILD_QT_TRUE@am_libACE_QtReactor_la_OBJECTS = \ -@BUILD_QT_TRUE@ libACE_QtReactor_la-QtReactor.lo \ -@BUILD_QT_TRUE@ libACE_QtReactor_la-QtReactor_moc.lo -libACE_QtReactor_la_OBJECTS = $(am_libACE_QtReactor_la_OBJECTS) -libACE_QtReactor_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libACE_QtReactor_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_QT_TRUE@am_libACE_QtReactor_la_rpath = -rpath $(libdir) -@BUILD_TK_TRUE@libACE_TkReactor_la_DEPENDENCIES = libACE.la \ -@BUILD_TK_TRUE@ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) -am__libACE_TkReactor_la_SOURCES_DIST = TkReactor/TkReactor.cpp -@BUILD_TK_TRUE@am_libACE_TkReactor_la_OBJECTS = \ -@BUILD_TK_TRUE@ libACE_TkReactor_la-TkReactor.lo -libACE_TkReactor_la_OBJECTS = $(am_libACE_TkReactor_la_OBJECTS) -libACE_TkReactor_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libACE_TkReactor_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_TK_TRUE@am_libACE_TkReactor_la_rpath = -rpath $(libdir) -@BUILD_X11_TRUE@@BUILD_XT_TRUE@libACE_XtReactor_la_DEPENDENCIES = \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ libACE.la $(am__DEPENDENCIES_1) \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ $(am__DEPENDENCIES_1) -am__libACE_XtReactor_la_SOURCES_DIST = XtReactor/XtReactor.cpp -@BUILD_X11_TRUE@@BUILD_XT_TRUE@am_libACE_XtReactor_la_OBJECTS = libACE_XtReactor_la-XtReactor.lo -libACE_XtReactor_la_OBJECTS = $(am_libACE_XtReactor_la_OBJECTS) -libACE_XtReactor_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libACE_XtReactor_la_LDFLAGS) $(LDFLAGS) -o $@ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@am_libACE_XtReactor_la_rpath = -rpath \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ $(libdir) -DEFAULT_INCLUDES = -depcomp = $(SHELL) $(top_srcdir)/aux_config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(libACE_la_SOURCES) $(libACE_FlReactor_la_SOURCES) \ - $(libACE_QtReactor_la_SOURCES) $(libACE_TkReactor_la_SOURCES) \ - $(libACE_XtReactor_la_SOURCES) -DIST_SOURCES = $(am__libACE_la_SOURCES_DIST) \ - $(am__libACE_FlReactor_la_SOURCES_DIST) \ - $(am__libACE_QtReactor_la_SOURCES_DIST) \ - $(am__libACE_TkReactor_la_SOURCES_DIST) \ - $(am__libACE_XtReactor_la_SOURCES_DIST) -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -DATA = $(pkgconfig_DATA) -am__nobase_include_HEADERS_DIST = ACE.h ACE.inl ACE_export.h ARGV.cpp \ - ARGV.h ARGV.inl ATM_Acceptor.h ATM_Acceptor.inl ATM_Addr.h \ - ATM_Addr.inl ATM_Connector.h ATM_Connector.inl ATM_Params.h \ - ATM_Params.inl ATM_QoS.h ATM_QoS.inl ATM_Stream.h \ - ATM_Stream.inl Acceptor.cpp Acceptor.h Activation_Queue.h \ - Activation_Queue.inl Active_Map_Manager.h \ - Active_Map_Manager.inl Active_Map_Manager_T.cpp \ - Active_Map_Manager_T.h Active_Map_Manager_T.inl Addr.h \ - Addr.inl Arg_Shifter.cpp Arg_Shifter.h Argv_Type_Converter.h \ - Argv_Type_Converter.inl Array.h Array_Base.cpp Array_Base.h \ - Array_Base.inl Array_Map.cpp Array_Map.h Array_Map.inl \ - Assert.h Asynch_Acceptor.cpp Asynch_Acceptor.h \ - Asynch_Connector.cpp Asynch_Connector.h Asynch_IO.h \ - Asynch_IO_Impl.h Asynch_IO_Impl.inl Asynch_Pseudo_Task.h \ - Atomic_Op.h Atomic_Op.inl Atomic_Op_Sparc.h Atomic_Op_T.cpp \ - Atomic_Op_GCC_T.h Atomic_Op_GCC_T.cpp Atomic_Op_GCC_T.inl \ - Atomic_Op_T.h Atomic_Op_T.inl Auto_Event.h Auto_Event.inl \ - Auto_Functor.cpp Auto_Functor.h Auto_Functor.inl \ - Auto_IncDec_T.cpp Auto_IncDec_T.h Auto_IncDec_T.inl \ - Auto_Ptr.cpp Auto_Ptr.h Auto_Ptr.inl Barrier.h Barrier.inl \ - Base_Thread_Adapter.h Base_Thread_Adapter.inl \ - Based_Pointer_Repository.h Based_Pointer_T.cpp \ - Based_Pointer_T.h Based_Pointer_T.inl Basic_Stats.h \ - Basic_Stats.inl Basic_Types.h Basic_Types.inl Bound_Ptr.h \ - Bound_Ptr.inl CDR_Base.h CDR_Base.inl CDR_Size.h CDR_Size.inl \ - CDR_Stream.h CDR_Stream.inl CORBA_macros.h \ - Cache_Map_Manager_T.cpp Cache_Map_Manager_T.h \ - Cache_Map_Manager_T.inl Cached_Connect_Strategy_T.cpp \ - Cached_Connect_Strategy_T.h Caching_Strategies_T.cpp \ - Caching_Strategies_T.h Caching_Strategies_T.inl \ - Caching_Utility_T.cpp Caching_Utility_T.h Capabilities.h \ - Capabilities.inl Cleanup.h Cleanup.inl \ - Cleanup_Strategies_T.cpp Cleanup_Strategies_T.h Codecs.h \ - Codeset_IBM1047.h Codeset_Registry.h Codeset_Registry.inl \ - Condition_Recursive_Thread_Mutex.h Condition_T.cpp \ - Condition_T.h Condition_T.inl Condition_Thread_Mutex.h \ - Condition_Thread_Mutex.inl Configuration.h Configuration.inl \ - Configuration_Import_Export.h Connection_Recycling_Strategy.h \ - Connector.cpp Connector.h Containers.h Containers.inl \ - Containers_T.cpp Containers_T.h Containers_T.inl \ - Copy_Disabled.h Countdown_Time.h Countdown_Time.inl DEV.h \ - DEV.inl DEV_Addr.h DEV_Addr.inl DEV_Connector.h \ - DEV_Connector.inl DEV_IO.h DEV_IO.inl DLL.h DLL_Manager.h \ - Date_Time.h Date_Time.inl Default_Constants.h \ - Dev_Poll_Reactor.h Dev_Poll_Reactor.inl Dirent.h Dirent.inl \ - Dirent_Selector.h Dirent_Selector.inl Dump.h Dump_T.cpp \ - Dump_T.h Dynamic.h Dynamic.inl Dynamic_Message_Strategy.h \ - Dynamic_Message_Strategy.inl Dynamic_Service.cpp \ - Dynamic_Service.h Dynamic_Service.inl Dynamic_Service_Base.h \ - Dynamic_Service_Dependency.h Encoding_Converter.h \ - Encoding_Converter_Factory.h Env_Value_T.cpp Env_Value_T.h \ - Env_Value_T.inl Event.h Event.inl Event_Handler.h \ - Event_Handler.inl Event_Handler_T.cpp Event_Handler_T.h \ - Event_Handler_T.inl Exception_Macros.h FIFO.h FIFO.inl \ - FIFO_Recv.h FIFO_Recv.inl FIFO_Recv_Msg.h FIFO_Recv_Msg.inl \ - FIFO_Send.h FIFO_Send.inl FIFO_Send_Msg.h FIFO_Send_Msg.inl \ - FILE.h FILE.inl FILE_Addr.h FILE_Addr.inl FILE_Connector.h \ - FILE_Connector.inl FILE_IO.h FILE_IO.inl File_Lock.h \ - File_Lock.inl Filecache.h Flag_Manip.h Flag_Manip.inl \ - Framework_Component.h Framework_Component.inl \ - Framework_Component_T.cpp Framework_Component_T.h \ - Free_List.cpp Free_List.h Functor.h Functor.inl \ - Functor_String.h Functor_String.inl Functor_T.cpp Functor_T.h \ - Functor_T.inl Future.cpp Future.h Future_Set.cpp Future_Set.h \ - Get_Opt.h Get_Opt.inl Global_Macros.h Guard_T.cpp Guard_T.h \ - Guard_T.inl Handle_Gobbler.h Handle_Gobbler.inl Handle_Ops.h \ - Handle_Set.h Handle_Set.inl Hash_Cache_Map_Manager_T.cpp \ - Hash_Cache_Map_Manager_T.h Hash_Cache_Map_Manager_T.inl \ - Hash_Map_Manager.h Hash_Map_Manager_T.cpp Hash_Map_Manager_T.h \ - Hash_Map_Manager_T.inl Hash_Map_With_Allocator_T.cpp \ - Hash_Map_With_Allocator_T.h Hash_Map_With_Allocator_T.inl \ - Hash_Multi_Map_Manager_T.cpp Hash_Multi_Map_Manager_T.h \ - Hash_Multi_Map_Manager_T.inl Hashable.h Hashable.inl \ - High_Res_Timer.h High_Res_Timer.inl ICMP_Socket.h INET_Addr.h \ - INET_Addr.inl IOStream.h IOStream_T.cpp IOStream_T.h \ - IOStream_T.inl IO_Cntl_Msg.h IO_Cntl_Msg.inl IO_SAP.h \ - IO_SAP.inl IPC_SAP.h IPC_SAP.inl If_Then_Else.h Init_ACE.h \ - Intrusive_Auto_Ptr.cpp Intrusive_Auto_Ptr.h \ - Intrusive_Auto_Ptr.inl Intrusive_List.cpp Intrusive_List.h \ - Intrusive_List.inl Intrusive_List_Node.cpp \ - Intrusive_List_Node.h Intrusive_List_Node.inl \ - LOCK_SOCK_Acceptor.cpp LOCK_SOCK_Acceptor.h LSOCK.h LSOCK.inl \ - LSOCK_Acceptor.h LSOCK_CODgram.h LSOCK_CODgram.inl \ - LSOCK_Connector.h LSOCK_Connector.inl LSOCK_Dgram.h \ - LSOCK_Dgram.inl LSOCK_Stream.h LSOCK_Stream.inl Lib_Find.h \ - Local_Memory_Pool.h Local_Name_Space.h Local_Name_Space_T.cpp \ - Local_Name_Space_T.h Local_Tokens.h Local_Tokens.inl Lock.h \ - Lock.inl Lock_Adapter_T.cpp Lock_Adapter_T.h \ - Lock_Adapter_T.inl Log_Msg.h Log_Msg.inl Log_Msg_Backend.h \ - Log_Msg_Callback.h Log_Msg_IPC.h Log_Msg_NT_Event_Log.h \ - Log_Msg_UNIX_Syslog.h Log_Priority.h Log_Record.h \ - Log_Record.inl Logging_Strategy.h MEM_Acceptor.h \ - MEM_Acceptor.inl MEM_Addr.h MEM_Addr.inl MEM_Connector.h \ - MEM_Connector.inl MEM_IO.h MEM_IO.inl MEM_SAP.h MEM_SAP.inl \ - MEM_Stream.h MEM_Stream.inl MMAP_Memory_Pool.h \ - MMAP_Memory_Pool.inl Malloc.h Malloc.inl Malloc_Allocator.h \ - Malloc_Allocator.inl Malloc_Base.h Malloc_T.cpp Malloc_T.h \ - Malloc_T.inl Managed_Object.cpp Managed_Object.h \ - Managed_Object.inl Manual_Event.h Manual_Event.inl \ - Map_Manager.cpp Map_Manager.h Map_Manager.inl Map_T.cpp \ - Map_T.h Map_T.inl Mem_Map.h Mem_Map.inl Memory_Pool.h \ - Message_Block.h Message_Block.inl Message_Block_T.cpp \ - Message_Block_T.h Message_Block_T.inl Message_Queue.h \ - Message_Queue.inl Message_Queue_NT.h Message_Queue_NT.inl \ - Message_Queue_T.cpp Message_Queue_T.h Message_Queue_Vx.h \ - Message_Queue_Vx.inl Method_Object.h Method_Request.h \ - Min_Max.h Module.cpp Module.h Module.inl Monitor_Admin.h \ - Monitor_Admin_Manager.h Monitor_Base.h Monitor_Base.inl \ - Monitor_Control_Action.h Monitor_Control_Types.h \ - Monitor_Point_Registry.h Monitor_Size.h Msg_WFMO_Reactor.h \ - Msg_WFMO_Reactor.inl Multihomed_INET_Addr.h \ - Multihomed_INET_Addr.inl Mutex.h Mutex.inl NT_Service.h \ - NT_Service.inl Name_Proxy.h Name_Request_Reply.h Name_Space.h \ - Naming_Context.h Naming_Context.inl Netlink_Addr.h \ - Netlink_Addr.inl Node.cpp Node.h Notification_Queue.h \ - Notification_Queue.inl Notification_Strategy.h \ - Notification_Strategy.inl Null_Barrier.h Null_Condition.h \ - Null_Mutex.h Null_Semaphore.h Numeric_Limits.h OS.h OS.inl \ - OS_Dirent.h OS_Errno.h OS_Errno.inl OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl OS_Memory.h OS_NS_Thread.h \ - OS_NS_Thread.inl OS_NS_arpa_inet.h OS_NS_arpa_inet.inl \ - OS_NS_ctype.h OS_NS_ctype.inl OS_NS_dirent.h OS_NS_dirent.inl \ - OS_NS_dlfcn.h OS_NS_dlfcn.inl OS_NS_errno.h OS_NS_errno.inl \ - OS_NS_fcntl.h OS_NS_fcntl.inl OS_NS_macros.h OS_NS_math.h \ - OS_NS_math.inl OS_NS_netdb.h OS_NS_netdb.inl OS_NS_poll.h \ - OS_NS_poll.inl OS_NS_pwd.h OS_NS_pwd.inl OS_NS_regex.h \ - OS_NS_regex.inl OS_NS_signal.h OS_NS_signal.inl OS_NS_stdio.h \ - OS_NS_stdio.inl OS_NS_stdlib.h OS_NS_stdlib.inl OS_NS_string.h \ - OS_NS_string.inl OS_NS_strings.h OS_NS_strings.inl \ - OS_NS_stropts.h OS_NS_stropts.inl OS_NS_sys_mman.h \ - OS_NS_sys_mman.inl OS_NS_sys_msg.h OS_NS_sys_msg.inl \ - OS_NS_sys_resource.h OS_NS_sys_resource.inl OS_NS_sys_select.h \ - OS_NS_sys_select.inl OS_NS_sys_sendfile.h \ - OS_NS_sys_sendfile.inl OS_NS_sys_shm.h OS_NS_sys_shm.inl \ - OS_NS_sys_socket.h OS_NS_sys_socket.inl OS_NS_sys_stat.h \ - OS_NS_sys_stat.inl OS_NS_sys_time.h OS_NS_sys_time.inl \ - OS_NS_sys_uio.h OS_NS_sys_uio.inl OS_NS_sys_utsname.h \ - OS_NS_sys_wait.h OS_NS_sys_wait.inl OS_NS_time.h \ - OS_NS_time.inl OS_NS_unistd.h OS_NS_unistd.inl OS_NS_wchar.h \ - OS_NS_wctype.h OS_NS_wctype.inl OS_NS_wchar.inl OS_QoS.h \ - OS_String.h OS_TLI.h OS_TLI.inl OS_Thread_Adapter.h OS_main.h \ - Obchunk.h Obchunk.inl Object_Manager.h Object_Manager.inl \ - Object_Manager_Base.h Obstack_T.cpp Obstack_T.h Obstack_T.inl \ - PI_Malloc.h PI_Malloc.inl POSIX_Asynch_IO.h \ - POSIX_CB_Proactor.h POSIX_Proactor.h POSIX_Proactor.inl \ - Pagefile_Memory_Pool.h Pagefile_Memory_Pool.inl Pair.h \ - Pair_T.cpp Pair_T.h Pair_T.inl Parse_Node.h Ping_Socket.h \ - Ping_Socket.inl Pipe.h Pipe.inl Priority_Reactor.h Proactor.h \ - Proactor.inl Proactor_Impl.h Process.h Process.inl \ - Process_Manager.h Process_Manager.inl Process_Mutex.h \ - Process_Mutex.inl Process_Semaphore.h Process_Semaphore.inl \ - Profile_Timer.h Profile_Timer.inl RB_Tree.cpp RB_Tree.h \ - RB_Tree.inl RW_Mutex.h RW_Mutex.inl RW_Process_Mutex.h \ - RW_Process_Mutex.inl RW_Thread_Mutex.h RW_Thread_Mutex.inl \ - Reactor.h Reactor.inl Reactor_Impl.h \ - Reactor_Notification_Strategy.h \ - Reactor_Notification_Strategy.inl Reactor_Timer_Interface.h \ - Reactor_Token_T.cpp Reactor_Token_T.h Read_Buffer.h \ - Read_Buffer.inl Recursive_Thread_Mutex.h \ - Recursive_Thread_Mutex.inl Recyclable.h Recyclable.inl \ - Refcountable.h Refcountable_T.cpp Refcountable_T.h \ - Refcountable_T.inl Refcounted_Auto_Ptr.cpp \ - Refcounted_Auto_Ptr.h Refcounted_Auto_Ptr.inl Registry.h \ - Registry_Name_Space.h Remote_Name_Space.h Remote_Tokens.h \ - Remote_Tokens.inl Reverse_Lock_T.cpp Reverse_Lock_T.h \ - Reverse_Lock_T.inl SOCK.h SOCK.inl SOCK_Acceptor.h \ - SOCK_Acceptor.inl SOCK_CODgram.h SOCK_CODgram.inl \ - SOCK_Connector.h SOCK_Connector.inl SOCK_Dgram.h \ - SOCK_Dgram.inl SOCK_Dgram_Bcast.h SOCK_Dgram_Bcast.inl \ - SOCK_Dgram_Mcast.h SOCK_Dgram_Mcast.inl SOCK_IO.h SOCK_IO.inl \ - SOCK_Netlink.h SOCK_Netlink.inl SOCK_SEQPACK_Acceptor.h \ - SOCK_SEQPACK_Acceptor.inl SOCK_SEQPACK_Association.h \ - SOCK_SEQPACK_Association.inl SOCK_SEQPACK_Connector.h \ - SOCK_SEQPACK_Connector.inl SOCK_Stream.h SOCK_Stream.inl \ - SPIPE.h SPIPE.inl SPIPE_Acceptor.h SPIPE_Addr.h SPIPE_Addr.inl \ - SPIPE_Connector.h SPIPE_Connector.inl SPIPE_Stream.h \ - SPIPE_Stream.inl SString.h SString.inl SStringfwd.h \ - Stack_Trace.h SUN_Proactor.h SV_Message.h SV_Message.inl \ - SV_Message_Queue.h SV_Message_Queue.inl SV_Semaphore_Complex.h \ - SV_Semaphore_Complex.inl SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.inl SV_Shared_Memory.h \ - SV_Shared_Memory.inl Sample_History.h Sample_History.inl \ - Sbrk_Memory_Pool.h Sched_Params.h Sched_Params.inl \ - Select_Reactor.h Select_Reactor_Base.h Select_Reactor_Base.inl \ - Select_Reactor_T.cpp Select_Reactor_T.h Select_Reactor_T.inl \ - Semaphore.h Semaphore.inl Service_Config.h Service_Config.inl \ - Service_Gestalt.h Service_Gestalt.inl Service_Manager.h \ - Service_Object.h Service_Object.inl Service_Repository.h \ - Service_Repository.inl Service_Types.h Service_Types.inl \ - Shared_Memory.h Shared_Memory_MM.h Shared_Memory_MM.inl \ - Shared_Memory_Pool.h Shared_Memory_SV.h Shared_Memory_SV.inl \ - Shared_Object.h Shared_Object.inl Sig_Adapter.h Sig_Handler.h \ - Sig_Handler.inl Signal.h Signal.inl Singleton.cpp Singleton.h \ - Singleton.inl Sock_Connect.h Static_Object_Lock.h Stats.h \ - Stats.inl Strategies.h Strategies_T.cpp Strategies_T.h \ - Strategies_T.inl Stream.cpp Stream.h Stream.inl \ - Stream_Modules.cpp Stream_Modules.h String_Base.cpp \ - String_Base.h String_Base.inl String_Base_Const.h Svc_Conf.h \ - Svc_Conf_Lexer.h Svc_Conf_Tokens.h Svc_Conf_Token_Table.h \ - Svc_Handler.cpp Svc_Handler.h Synch.h Synch_Options.h \ - Synch_T.cpp Synch_T.h Synch_Traits.h System_Time.h TLI.h \ - TLI.inl TLI_Acceptor.h TLI_Connector.h TLI_Connector.inl \ - TLI_Stream.h TLI_Stream.inl TP_Reactor.h TP_Reactor.inl \ - TSS_Adapter.h TSS_T.cpp TSS_T.h TSS_T.inl TTY_IO.h Task.h \ - Task.inl Task_Ex_T.cpp Task_Ex_T.h Task_Ex_T.inl Task_T.cpp \ - Task_T.h Task_T.inl Test_and_Set.cpp Test_and_Set.h Thread.h \ - Thread.inl Thread_Adapter.h Thread_Adapter.inl \ - Thread_Control.h Thread_Control.inl Thread_Exit.h \ - Thread_Hook.h Thread_Manager.h Thread_Manager.inl \ - Thread_Mutex.h Thread_Mutex.inl Thread_Semaphore.h \ - Thread_Semaphore.inl Throughput_Stats.h Time_Value.h \ - Time_Value.inl Timeprobe.h Timeprobe.inl Timeprobe_T.cpp \ - Timeprobe_T.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_Adapters.cpp Timer_Queue_Adapters.h \ - Timer_Queue_Adapters.inl Timer_Queue_T.cpp Timer_Queue_T.h \ - Timer_Queue_T.inl Timer_Wheel_T.cpp Timer_Wheel_T.h \ - Tokenizer_T.cpp Tokenizer_T.h Timer_Hash.h Timer_Heap.h \ - Timer_List.h Timer_Queue.h Timer_Queuefwd.h Timer_Wheel.h \ - Token.h Token.inl Token_Collection.h Token_Collection.inl \ - Token_Invariants.h Token_Manager.h Token_Manager.inl \ - Token_Request_Reply.h Token_Request_Reply.inl Trace.h \ - Truncate.h Typed_SV_Message.cpp Typed_SV_Message.h \ - Typed_SV_Message.inl Typed_SV_Message_Queue.cpp \ - Typed_SV_Message_Queue.h Typed_SV_Message_Queue.inl \ - UNIX_Addr.h UNIX_Addr.inl UPIPE_Acceptor.h UPIPE_Acceptor.inl \ - UPIPE_Addr.h UPIPE_Connector.h UPIPE_Connector.inl \ - UPIPE_Stream.h UPIPE_Stream.inl UTF16_Encoding_Converter.h \ - UTF16_Encoding_Converter.inl UTF32_Encoding_Converter.h \ - UTF8_Encoding_Converter.h UUID.h UUID.inl Unbounded_Queue.cpp \ - Unbounded_Queue.h Unbounded_Queue.inl Unbounded_Set.cpp \ - Unbounded_Set.h Unbounded_Set.inl Unbounded_Set_Ex.cpp \ - Unbounded_Set_Ex.h Unbounded_Set_Ex.inl Value_Ptr.h \ - Vector_T.cpp Vector_T.h Vector_T.inl Version.h \ - Versioned_Namespace.h WFMO_Reactor.h WFMO_Reactor.inl \ - WIN32_Asynch_IO.h WIN32_Proactor.h XML_Svc_Conf.h \ - XTI_ATM_Mcast.h XTI_ATM_Mcast.inl ace_wchar.h ace_wchar.inl \ - checked_iterator.h config-WinCE.h config-all.h config-lite.h \ - config-macros.h config-minimal.h config-win32-borland.h \ - config-win32-common.h config-win32-ghs.h config-win32-msvc-7.h \ - config-win32-msvc-8.h config-win32-msvc.h config-win32.h \ - config.h iosfwd.h os_include/arpa/os_inet.h \ - os_include/net/os_if.h os_include/netinet/os_in.h \ - os_include/netinet/os_tcp.h os_include/os_aio.h \ - os_include/os_assert.h os_include/os_byteswap.h \ - os_include/os_complex.h os_include/os_cpio.h \ - os_include/os_ctype.h os_include/os_dirent.h \ - os_include/os_dlfcn.h os_include/os_errno.h \ - os_include/os_fcntl.h os_include/os_fenv.h \ - os_include/os_float.h os_include/os_fmtmsg.h \ - os_include/os_fnmatch.h os_include/os_ftw.h \ - os_include/os_glob.h os_include/os_grp.h os_include/os_iconv.h \ - os_include/os_intrin.h os_include/os_inttypes.h \ - os_include/os_iso646.h os_include/os_kstat.h \ - os_include/os_langinfo.h os_include/os_libgen.h \ - os_include/os_limits.h os_include/os_local.h \ - os_include/os_math.h os_include/os_monetary.h \ - os_include/os_mqueue.h os_include/os_ndbm.h \ - os_include/os_netdb.h os_include/os_nl_types.h \ - os_include/os_pdh.h os_include/os_pdhmsg.h \ - os_include/os_poll.h os_include/os_pthread.h \ - os_include/os_pwd.h os_include/os_regex.h \ - os_include/os_sched.h os_include/os_search.h \ - os_include/os_semaphore.h os_include/os_setjmp.h \ - os_include/os_signal.h os_include/os_spawn.h \ - os_include/os_stdarg.h os_include/os_stdbool.h \ - os_include/os_stddef.h os_include/os_stdint.h \ - os_include/os_stdio.h os_include/os_stdlib.h \ - os_include/os_string.h os_include/os_strings.h \ - os_include/os_stropts.h os_include/os_syslog.h \ - os_include/os_tar.h os_include/os_termios.h \ - os_include/os_tgmath.h os_include/os_time.h \ - os_include/os_trace.h os_include/os_typeinfo.h \ - os_include/os_ucontext.h os_include/os_ulimit.h \ - os_include/os_unistd.h os_include/os_utime.h \ - os_include/os_utmpx.h os_include/os_wchar.h \ - os_include/os_wctype.h os_include/os_wordexp.h \ - os_include/sys/os_ipc.h os_include/sys/os_loadavg.h \ - os_include/sys/os_mman.h os_include/sys/os_msg.h \ - os_include/sys/os_pstat.h os_include/sys/os_resource.h \ - os_include/sys/os_select.h os_include/sys/os_sem.h \ - os_include/sys/os_shm.h os_include/sys/os_socket.h \ - os_include/sys/os_stat.h os_include/sys/os_statvfs.h \ - os_include/sys/os_sysctl.h os_include/sys/os_sysinfo.h \ - os_include/sys/os_time.h os_include/sys/os_timeb.h \ - os_include/sys/os_times.h os_include/sys/os_types.h \ - os_include/sys/os_uio.h os_include/sys/os_un.h \ - os_include/sys/os_utsname.h os_include/sys/os_wait.h post.h \ - pre.h streams.h svc_export.h FlReactor/ACE_FlReactor_export.h \ - FlReactor/FlReactor.h QtReactor/ACE_QtReactor_export.h \ - QtReactor/QtReactor.h TkReactor/ACE_TkReactor_export.h \ - TkReactor/TkReactor.h XtReactor/ACE_XtReactor_export.h \ - XtReactor/XtReactor.h -HEADERS = $(nobase_include_HEADERS) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACEXML = @ACEXML@ -ACE_BETA = @ACE_BETA@ -ACE_BZIP2_CPPFLAGS = @ACE_BZIP2_CPPFLAGS@ -ACE_BZIP2_LDFLAGS = @ACE_BZIP2_LDFLAGS@ -ACE_BZIP2_LIBS = @ACE_BZIP2_LIBS@ -ACE_FLTK_CPPFLAGS = @ACE_FLTK_CPPFLAGS@ -ACE_FLTK_LIBS = @ACE_FLTK_LIBS@ -ACE_FOX_CPPFLAGS = @ACE_FOX_CPPFLAGS@ -ACE_FOX_LIBS = @ACE_FOX_LIBS@ -ACE_KERBEROS_INCLUDES = @ACE_KERBEROS_INCLUDES@ -ACE_MAJOR = @ACE_MAJOR@ -ACE_MINOR = @ACE_MINOR@ -ACE_QT_CPPFLAGS = @ACE_QT_CPPFLAGS@ -ACE_QT_LIBS = @ACE_QT_LIBS@ -ACE_TCL_CPPFLAGS = @ACE_TCL_CPPFLAGS@ -ACE_TCL_LIBS = @ACE_TCL_LIBS@ -ACE_TESTS_DIR = @ACE_TESTS_DIR@ -ACE_TK_CPPFLAGS = @ACE_TK_CPPFLAGS@ -ACE_TK_LIBS = @ACE_TK_LIBS@ -ACE_TLS_CPPFLAGS = @ACE_TLS_CPPFLAGS@ -ACE_TLS_LDFLAGS = @ACE_TLS_LDFLAGS@ -ACE_TLS_LIBS = @ACE_TLS_LIBS@ -ACE_VERSION_NAME = @ACE_VERSION_NAME@ -ACE_X11_CPPFLAGS = @ACE_X11_CPPFLAGS@ -ACE_X11_LDFLAGS = @ACE_X11_LDFLAGS@ -ACE_X11_LIBS = @ACE_X11_LIBS@ -ACE_XLIBS = @ACE_XLIBS@ -ACE_XT_CPPFLAGS = @ACE_XT_CPPFLAGS@ -ACE_XT_LDFLAGS = @ACE_XT_LDFLAGS@ -ACE_XT_LIBS = @ACE_XT_LIBS@ -ACE_ZLIB_CPPFLAGS = @ACE_ZLIB_CPPFLAGS@ -ACE_ZLIB_LDFLAGS = @ACE_ZLIB_LDFLAGS@ -ACE_ZLIB_LIBS = @ACE_ZLIB_LIBS@ -ACE_ZZIP_CPPFLAGS = @ACE_ZZIP_CPPFLAGS@ -ACE_ZZIP_LDFLAGS = @ACE_ZZIP_LDFLAGS@ -ACE_ZZIP_LIBS = @ACE_ZZIP_LIBS@ -ACLOCAL = @ACLOCAL@ -ALLOCA = @ALLOCA@ -AMTAR = @AMTAR@ -AR = @AR@ -ASNMP = @ASNMP@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FLTKCONFIG = @FLTKCONFIG@ -FOXCONFIG = @FOXCONFIG@ -GPERF = @GPERF@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -KOKYU = @KOKYU@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LEX = @LEX@ -LEXLIB = @LEXLIB@ -LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PROF = @PROF@ -PURIFY = @PURIFY@ -QTDIR = @QTDIR@ -QUANTIFY = @QUANTIFY@ -Qt_CFLAGS = @Qt_CFLAGS@ -Qt_LIBS = @Qt_LIBS@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAO = @TAO@ -VERSION = @VERSION@ -XMKMF = @XMKMF@ -XTREACTOR_TEST_XLIBS = @XTREACTOR_TEST_XLIBS@ -X_CFLAGS = @X_CFLAGS@ -X_EXTRA_LIBS = @X_EXTRA_LIBS@ -X_LIBS = @X_LIBS@ -X_PRE_LIBS = @X_PRE_LIBS@ -YACC = @YACC@ -YFLAGS = @YFLAGS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@/ace -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lt_ECHO = @lt_ECHO@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -protocols = @protocols@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -subdirs = @subdirs@ -sysconfdir = @sysconfdir@ -target = @target@ -target_alias = @target_alias@ -target_cpu = @target_cpu@ -target_os = @target_os@ -target_vendor = @target_vendor@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -pkgconfigdir = @libdir@/pkgconfig -ACE_BUILDDIR = $(top_builddir) -ACE_ROOT = $(top_srcdir) -SUBDIRS = \ - . \ - ETCL \ - Monitor_Control \ - SSL - -CLEANFILES = $(am__append_4) $(am__append_8) $(am__append_9) \ - $(am__append_16) $(am__append_20) -lib_LTLIBRARIES = $(am__append_1) $(am__append_5) $(am__append_10) \ - $(am__append_13) $(am__append_17) -pkgconfig_DATA = $(am__append_3) $(am__append_7) $(am__append_12) \ - $(am__append_15) $(am__append_19) -nobase_include_HEADERS = $(am__append_2) $(am__append_6) \ - $(am__append_11) $(am__append_14) $(am__append_18) -@BUILD_ACE_FOR_TAO_FALSE@libACE_la_CPPFLAGS = \ -@BUILD_ACE_FOR_TAO_FALSE@ -I$(ACE_ROOT) \ -@BUILD_ACE_FOR_TAO_FALSE@ -I$(ACE_BUILDDIR) \ -@BUILD_ACE_FOR_TAO_FALSE@ -DACE_BUILD_DLL - -@BUILD_ACE_FOR_TAO_FALSE@libACE_la_SOURCES = \ -@BUILD_ACE_FOR_TAO_FALSE@ ACE.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ACE_crc32.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ACE_crc_ccitt.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Params.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_QoS.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ATM_Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Activation_Queue.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Active_Map_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Argv_Type_Converter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Assert.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_IO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_IO_Impl.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Asynch_Pseudo_Task.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Atomic_Op_Sparc.c \ -@BUILD_ACE_FOR_TAO_FALSE@ Auto_Event.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Barrier.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Base_Thread_Adapter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Based_Pointer_Repository.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Basic_Stats.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Basic_Types.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Base.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Size.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ CDR_Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Capabilities.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Cleanup.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Codecs.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Codeset_IBM1047.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Codeset_Registry.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Codeset_Registry_db.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Condition_Recursive_Thread_Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Condition_Thread_Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Configuration.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Configuration_Import_Export.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Connection_Recycling_Strategy.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Containers.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Copy_Disabled.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Countdown_Time.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ DEV_IO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ DLL.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ DLL_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Date_Time.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dev_Poll_Reactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dirent.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dirent_Selector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dump.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Message_Strategy.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Service_Base.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Dynamic_Service_Dependency.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Encoding_Converter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Encoding_Converter_Factory.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Event.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Event_Handler.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Recv.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Recv_Msg.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Send.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FIFO_Send_Msg.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ FILE_IO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ File_Lock.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Filecache.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Flag_Manip.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Framework_Component.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Functor_String.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Get_Opt.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Handle_Ops.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Handle_Set.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Hashable.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ High_Res_Timer.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ICMP_Socket.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ INET_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ IOStream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ IO_Cntl_Msg.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ IO_SAP.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ IPC_SAP.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Init_ACE.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_CODgram.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Dgram.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ LSOCK_Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Lib_Find.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Memory_Pool.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Name_Space.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Local_Tokens.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Lock.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_Backend.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_Callback.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_IPC.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_NT_Event_Log.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Msg_UNIX_Syslog.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Log_Record.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Logging_Strategy.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_IO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_SAP.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ MEM_Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ MMAP_Memory_Pool.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Malloc_Allocator.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Manual_Event.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Mem_Map.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Block.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue_NT.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Message_Queue_Vx.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Method_Request.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Admin.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Admin_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Base.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Control_Action.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Control_Types.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Point_Registry.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Monitor_Size.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Msg_WFMO_Reactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Multihomed_INET_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ NT_Service.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Name_Proxy.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Name_Request_Reply.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Name_Space.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Naming_Context.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Netlink_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Notification_Queue.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Notification_Strategy.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Errno.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Log_Msg_Attributes.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_Thread.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_arpa_inet.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_ctype.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_dirent.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_dlfcn.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_errno.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_fcntl.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_math.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_netdb.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_poll.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_pwd.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_regex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_signal.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stdio.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stdlib.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_string.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_strings.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_stropts.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_mman.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_msg.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_resource.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_select.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_sendfile.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_shm.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_socket.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_stat.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_time.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_uio.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_utsname.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_sys_wait.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_time.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_unistd.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_wchar.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_NS_wctype.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_QoS.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_TLI.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_Thread_Adapter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ OS_main.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Obchunk.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Object_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Object_Manager_Base.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ PI_Malloc.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ POSIX_Asynch_IO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ POSIX_CB_Proactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ POSIX_Proactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Pagefile_Memory_Pool.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Parse_Node.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Ping_Socket.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Pipe.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Priority_Reactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Proactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Proactor_Impl.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Process.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Process_Semaphore.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Profile_Timer.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Process_Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ RW_Thread_Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Impl.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Notification_Strategy.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Reactor_Timer_Interface.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Read_Buffer.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Recursive_Thread_Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Recyclable.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Registry.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Registry_Name_Space.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Remote_Name_Space.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Remote_Tokens.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Rtems_init.c \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_CODgram.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram_Bcast.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Dgram_Mcast.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_IO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Netlink.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Association.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_SEQPACK_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SOCK_Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SPIPE_Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SString.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Stack_Trace.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SUN_Proactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Message.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Message_Queue.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Semaphore_Complex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Semaphore_Simple.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ SV_Shared_Memory.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Sample_History.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Sbrk_Memory_Pool.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Sched_Params.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Select_Reactor_Base.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Semaphore.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Config.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Gestalt.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Object.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Repository.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Service_Types.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory_MM.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory_Pool.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Memory_SV.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Shared_Object.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Sig_Adapter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Sig_Handler.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Signal.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Sock_Connect.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Stats.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ String_Base_Const.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Svc_Conf_Lexer.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Svc_Conf_y.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Synch_Options.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ System_Time.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ TLI_Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ TP_Reactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ TSS_Adapter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ TTY_IO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Task.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Adapter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Control.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Exit.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Hook.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Mutex.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Thread_Semaphore.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Throughput_Stats.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Time_Value.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Timeprobe.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Token.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Collection.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Invariants.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Manager.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Token_Request_Reply.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ Trace.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ UNIX_Addr.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Acceptor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Connector.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ UPIPE_Stream.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ UTF16_Encoding_Converter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ UTF32_Encoding_Converter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ UTF8_Encoding_Converter.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ UUID.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ WFMO_Reactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ WIN32_Asynch_IO.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ WIN32_Proactor.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ XML_Svc_Conf.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ XTI_ATM_Mcast.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ ace_wchar.cpp \ -@BUILD_ACE_FOR_TAO_FALSE@ gethrtime.cpp - -@BUILD_ACE_FOR_TAO_FALSE@libACE_la_LDFLAGS = \ -@BUILD_ACE_FOR_TAO_FALSE@ -release @ACE_VERSION_NAME@ - -EXTRA_DIST = ACE.pc.in ace.rc FlReactor/ACE_FlReactor.pc.in \ - QtReactor/ACE_QtReactor.pc.in TkReactor/ACE_TkReactor.pc.in \ - XtReactor/ACE_XtReactor.pc.in -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@libACE_FlReactor_la_CPPFLAGS = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ -I$(ACE_ROOT) \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ -I$(ACE_BUILDDIR) \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ $(ACE_FLTK_CPPFLAGS) \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ -DACE_FLREACTOR_BUILD_DLL - -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@libACE_FlReactor_la_SOURCES = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ FlReactor/FlReactor.cpp - -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@libACE_FlReactor_la_LDFLAGS = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ -release @ACE_VERSION_NAME@ $(ACE_FLTK_LDFLAGS) - -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@libACE_FlReactor_la_LIBADD = \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ libACE.la \ -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ $(ACE_FLTK_LIBS) - -@BUILD_QT_TRUE@BUILT_SOURCES = \ -@BUILD_QT_TRUE@ QtReactor/QtReactor_moc.cpp - -@BUILD_QT_TRUE@libACE_QtReactor_la_CPPFLAGS = \ -@BUILD_QT_TRUE@ -I$(ACE_ROOT) \ -@BUILD_QT_TRUE@ -I$(ACE_BUILDDIR) \ -@BUILD_QT_TRUE@ $(ACE_QT_CPPFLAGS) \ -@BUILD_QT_TRUE@ -DACE_QTREACTOR_BUILD_DLL - -@BUILD_QT_TRUE@libACE_QtReactor_la_SOURCES = \ -@BUILD_QT_TRUE@ QtReactor/QtReactor.cpp \ -@BUILD_QT_TRUE@ QtReactor/QtReactor_moc.cpp - -@BUILD_QT_TRUE@libACE_QtReactor_la_LDFLAGS = \ -@BUILD_QT_TRUE@ -release @ACE_VERSION_NAME@ $(ACE_QT_LDFLAGS) - -@BUILD_QT_TRUE@libACE_QtReactor_la_LIBADD = \ -@BUILD_QT_TRUE@ libACE.la \ -@BUILD_QT_TRUE@ $(ACE_QT_LIBS) - -@BUILD_TK_TRUE@libACE_TkReactor_la_CPPFLAGS = \ -@BUILD_TK_TRUE@ -I$(ACE_ROOT) \ -@BUILD_TK_TRUE@ -I$(ACE_BUILDDIR) \ -@BUILD_TK_TRUE@ $(ACE_TK_CPPFLAGS) \ -@BUILD_TK_TRUE@ $(ACE_TCL_CPPFLAGS) \ -@BUILD_TK_TRUE@ -DACE_TKREACTOR_BUILD_DLL - -@BUILD_TK_TRUE@libACE_TkReactor_la_SOURCES = \ -@BUILD_TK_TRUE@ TkReactor/TkReactor.cpp - -@BUILD_TK_TRUE@libACE_TkReactor_la_LDFLAGS = \ -@BUILD_TK_TRUE@ -release @ACE_VERSION_NAME@ $(ACE_TK_LDFLAGS) $(ACE_TCL_LDFLAGS) - -@BUILD_TK_TRUE@libACE_TkReactor_la_LIBADD = \ -@BUILD_TK_TRUE@ libACE.la \ -@BUILD_TK_TRUE@ $(ACE_TK_LIBS) \ -@BUILD_TK_TRUE@ $(ACE_TCL_LIBS) - -@BUILD_X11_TRUE@@BUILD_XT_TRUE@libACE_XtReactor_la_CPPFLAGS = \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ -I$(ACE_ROOT) \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ -I$(ACE_BUILDDIR) \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ $(ACE_X11_CPPFLAGS) \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ $(ACE_XT_CPPFLAGS) \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ -DACE_XTREACTOR_BUILD_DLL - -@BUILD_X11_TRUE@@BUILD_XT_TRUE@libACE_XtReactor_la_SOURCES = \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ XtReactor/XtReactor.cpp - -@BUILD_X11_TRUE@@BUILD_XT_TRUE@libACE_XtReactor_la_LDFLAGS = \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ -release @ACE_VERSION_NAME@ $(ACE_X11_LDFLAGS) $(ACE_XT_LDFLAGS) - -@BUILD_X11_TRUE@@BUILD_XT_TRUE@libACE_XtReactor_la_LIBADD = \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ libACE.la \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ $(ACE_XT_LIBS) \ -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ $(ACE_X11_LIBS) - -all: $(BUILT_SOURCES) config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive - -.SUFFIXES: -.SUFFIXES: .c .cpp .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ace/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign ace/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -config.h: stamp-h1 - @if test ! -f $@; then \ - rm -f stamp-h1; \ - $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ - else :; fi - -stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status - @rm -f stamp-h1 - cd $(top_builddir) && $(SHELL) ./config.status ace/config.h -$(srcdir)/config.h.in: $(am__configure_deps) - ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) - rm -f stamp-h1 - touch $@ - -distclean-hdr: - -rm -f config.h stamp-h1 -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libACE.la: $(libACE_la_OBJECTS) $(libACE_la_DEPENDENCIES) - $(libACE_la_LINK) $(am_libACE_la_rpath) $(libACE_la_OBJECTS) $(libACE_la_LIBADD) $(LIBS) -libACE_FlReactor.la: $(libACE_FlReactor_la_OBJECTS) $(libACE_FlReactor_la_DEPENDENCIES) - $(libACE_FlReactor_la_LINK) $(am_libACE_FlReactor_la_rpath) $(libACE_FlReactor_la_OBJECTS) $(libACE_FlReactor_la_LIBADD) $(LIBS) -libACE_QtReactor.la: $(libACE_QtReactor_la_OBJECTS) $(libACE_QtReactor_la_DEPENDENCIES) - $(libACE_QtReactor_la_LINK) $(am_libACE_QtReactor_la_rpath) $(libACE_QtReactor_la_OBJECTS) $(libACE_QtReactor_la_LIBADD) $(LIBS) -libACE_TkReactor.la: $(libACE_TkReactor_la_OBJECTS) $(libACE_TkReactor_la_DEPENDENCIES) - $(libACE_TkReactor_la_LINK) $(am_libACE_TkReactor_la_rpath) $(libACE_TkReactor_la_OBJECTS) $(libACE_TkReactor_la_LIBADD) $(LIBS) -libACE_XtReactor.la: $(libACE_XtReactor_la_OBJECTS) $(libACE_XtReactor_la_DEPENDENCIES) - $(libACE_XtReactor_la_LINK) $(am_libACE_XtReactor_la_rpath) $(libACE_XtReactor_la_OBJECTS) $(libACE_XtReactor_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_FlReactor_la-FlReactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_QtReactor_la-QtReactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_QtReactor_la-QtReactor_moc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_TkReactor_la-TkReactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_XtReactor_la-XtReactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ACE.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ACE_crc32.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ACE_crc_ccitt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ATM_Acceptor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ATM_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ATM_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ATM_Params.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ATM_QoS.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ATM_Stream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Activation_Queue.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Active_Map_Manager.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Argv_Type_Converter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Assert.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Asynch_IO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Asynch_IO_Impl.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Asynch_Pseudo_Task.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Atomic_Op.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Atomic_Op_Sparc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Auto_Event.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Barrier.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Base_Thread_Adapter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Based_Pointer_Repository.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Basic_Stats.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Basic_Types.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-CDR_Base.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-CDR_Size.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-CDR_Stream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Capabilities.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Cleanup.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Codecs.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Codeset_IBM1047.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Codeset_Registry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Codeset_Registry_db.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Condition_Recursive_Thread_Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Condition_Thread_Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Configuration.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Configuration_Import_Export.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Connection_Recycling_Strategy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Containers.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Copy_Disabled.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Countdown_Time.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-DEV.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-DEV_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-DEV_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-DEV_IO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-DLL.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-DLL_Manager.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Date_Time.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Dev_Poll_Reactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Dirent.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Dirent_Selector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Dump.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Dynamic.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Dynamic_Message_Strategy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Dynamic_Service_Base.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Dynamic_Service_Dependency.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Encoding_Converter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Encoding_Converter_Factory.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Event.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Event_Handler.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FIFO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FIFO_Recv.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FIFO_Recv_Msg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FIFO_Send.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FIFO_Send_Msg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FILE.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FILE_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FILE_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-FILE_IO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-File_Lock.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Filecache.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Flag_Manip.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Framework_Component.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Functor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Functor_String.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Get_Opt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Handle_Ops.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Handle_Set.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Hashable.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-High_Res_Timer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ICMP_Socket.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-INET_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-IOStream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-IO_Cntl_Msg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-IO_SAP.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-IPC_SAP.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Init_ACE.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-LSOCK.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-LSOCK_Acceptor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-LSOCK_CODgram.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-LSOCK_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-LSOCK_Dgram.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-LSOCK_Stream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Lib_Find.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Local_Memory_Pool.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Local_Name_Space.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Local_Tokens.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Lock.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Log_Msg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Log_Msg_Backend.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Log_Msg_Callback.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Log_Msg_IPC.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Log_Msg_NT_Event_Log.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Log_Msg_UNIX_Syslog.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Log_Record.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Logging_Strategy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-MEM_Acceptor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-MEM_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-MEM_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-MEM_IO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-MEM_SAP.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-MEM_Stream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-MMAP_Memory_Pool.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Malloc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Malloc_Allocator.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Manual_Event.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Mem_Map.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Message_Block.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Message_Queue.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Message_Queue_NT.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Message_Queue_Vx.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Method_Request.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Monitor_Admin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Monitor_Admin_Manager.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Monitor_Base.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Monitor_Control_Action.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Monitor_Control_Types.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Monitor_Point_Registry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Monitor_Size.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Msg_WFMO_Reactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Multihomed_INET_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-NT_Service.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Name_Proxy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Name_Request_Reply.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Name_Space.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Naming_Context.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Netlink_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Notification_Queue.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Notification_Strategy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_Errno.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_Log_Msg_Attributes.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_Thread.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_arpa_inet.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_ctype.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_dirent.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_dlfcn.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_errno.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_fcntl.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_math.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_netdb.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_poll.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_pwd.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_regex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_signal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_stdio.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_stdlib.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_string.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_strings.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_stropts.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_mman.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_msg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_resource.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_select.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_sendfile.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_shm.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_socket.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_stat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_time.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_uio.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_utsname.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_sys_wait.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_time.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_unistd.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_wchar.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_NS_wctype.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_QoS.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_TLI.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_Thread_Adapter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-OS_main.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Obchunk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Object_Manager.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Object_Manager_Base.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-PI_Malloc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-POSIX_Asynch_IO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-POSIX_CB_Proactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-POSIX_Proactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Pagefile_Memory_Pool.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Parse_Node.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Ping_Socket.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Pipe.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Priority_Reactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Proactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Proactor_Impl.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Process.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Process_Manager.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Process_Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Process_Semaphore.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Profile_Timer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-RW_Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-RW_Process_Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-RW_Thread_Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Reactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Reactor_Impl.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Reactor_Notification_Strategy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Reactor_Timer_Interface.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Read_Buffer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Recursive_Thread_Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Recyclable.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Registry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Registry_Name_Space.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Remote_Name_Space.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Remote_Tokens.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Rtems_init.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_Acceptor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_CODgram.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_Dgram.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_Dgram_Bcast.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_Dgram_Mcast.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_IO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_Netlink.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_SEQPACK_Acceptor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_SEQPACK_Association.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_SEQPACK_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SOCK_Stream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SPIPE.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SPIPE_Acceptor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SPIPE_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SPIPE_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SPIPE_Stream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SString.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SUN_Proactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SV_Message.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SV_Message_Queue.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SV_Semaphore_Complex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SV_Semaphore_Simple.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-SV_Shared_Memory.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Sample_History.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Sbrk_Memory_Pool.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Sched_Params.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Select_Reactor_Base.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Semaphore.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Service_Config.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Service_Gestalt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Service_Manager.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Service_Object.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Service_Repository.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Service_Types.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Shared_Memory.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Shared_Memory_MM.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Shared_Memory_Pool.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Shared_Memory_SV.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Shared_Object.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Sig_Adapter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Sig_Handler.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Signal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Sock_Connect.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Stack_Trace.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Stats.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-String_Base_Const.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Svc_Conf_Lexer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Svc_Conf_y.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Synch_Options.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-System_Time.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-TLI.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-TLI_Acceptor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-TLI_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-TLI_Stream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-TP_Reactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-TSS_Adapter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-TTY_IO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Task.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Thread.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Thread_Adapter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Thread_Control.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Thread_Exit.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Thread_Hook.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Thread_Manager.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Thread_Mutex.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Thread_Semaphore.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Throughput_Stats.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Time_Value.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Timeprobe.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Token.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Token_Collection.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Token_Invariants.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Token_Manager.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Token_Request_Reply.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-Trace.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-UNIX_Addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-UPIPE_Acceptor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-UPIPE_Connector.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-UPIPE_Stream.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-UTF16_Encoding_Converter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-UTF32_Encoding_Converter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-UTF8_Encoding_Converter.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-UUID.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-WFMO_Reactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-WIN32_Asynch_IO.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-WIN32_Proactor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-XML_Svc_Conf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-XTI_ATM_Mcast.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-ace_wchar.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_la-gethrtime.Plo@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -libACE_la-Atomic_Op_Sparc.lo: Atomic_Op_Sparc.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libACE_la-Atomic_Op_Sparc.lo -MD -MP -MF $(DEPDIR)/libACE_la-Atomic_Op_Sparc.Tpo -c -o libACE_la-Atomic_Op_Sparc.lo `test -f 'Atomic_Op_Sparc.c' || echo '$(srcdir)/'`Atomic_Op_Sparc.c -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Atomic_Op_Sparc.Tpo $(DEPDIR)/libACE_la-Atomic_Op_Sparc.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='Atomic_Op_Sparc.c' object='libACE_la-Atomic_Op_Sparc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libACE_la-Atomic_Op_Sparc.lo `test -f 'Atomic_Op_Sparc.c' || echo '$(srcdir)/'`Atomic_Op_Sparc.c - -libACE_la-Rtems_init.lo: Rtems_init.c -@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libACE_la-Rtems_init.lo -MD -MP -MF $(DEPDIR)/libACE_la-Rtems_init.Tpo -c -o libACE_la-Rtems_init.lo `test -f 'Rtems_init.c' || echo '$(srcdir)/'`Rtems_init.c -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Rtems_init.Tpo $(DEPDIR)/libACE_la-Rtems_init.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='Rtems_init.c' object='libACE_la-Rtems_init.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libACE_la-Rtems_init.lo `test -f 'Rtems_init.c' || echo '$(srcdir)/'`Rtems_init.c - -.cpp.o: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -libACE_la-ACE.lo: ACE.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ACE.lo -MD -MP -MF $(DEPDIR)/libACE_la-ACE.Tpo -c -o libACE_la-ACE.lo `test -f 'ACE.cpp' || echo '$(srcdir)/'`ACE.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ACE.Tpo $(DEPDIR)/libACE_la-ACE.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ACE.cpp' object='libACE_la-ACE.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ACE.lo `test -f 'ACE.cpp' || echo '$(srcdir)/'`ACE.cpp - -libACE_la-ACE_crc32.lo: ACE_crc32.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ACE_crc32.lo -MD -MP -MF $(DEPDIR)/libACE_la-ACE_crc32.Tpo -c -o libACE_la-ACE_crc32.lo `test -f 'ACE_crc32.cpp' || echo '$(srcdir)/'`ACE_crc32.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ACE_crc32.Tpo $(DEPDIR)/libACE_la-ACE_crc32.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ACE_crc32.cpp' object='libACE_la-ACE_crc32.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ACE_crc32.lo `test -f 'ACE_crc32.cpp' || echo '$(srcdir)/'`ACE_crc32.cpp - -libACE_la-ACE_crc_ccitt.lo: ACE_crc_ccitt.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ACE_crc_ccitt.lo -MD -MP -MF $(DEPDIR)/libACE_la-ACE_crc_ccitt.Tpo -c -o libACE_la-ACE_crc_ccitt.lo `test -f 'ACE_crc_ccitt.cpp' || echo '$(srcdir)/'`ACE_crc_ccitt.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ACE_crc_ccitt.Tpo $(DEPDIR)/libACE_la-ACE_crc_ccitt.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ACE_crc_ccitt.cpp' object='libACE_la-ACE_crc_ccitt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ACE_crc_ccitt.lo `test -f 'ACE_crc_ccitt.cpp' || echo '$(srcdir)/'`ACE_crc_ccitt.cpp - -libACE_la-ATM_Acceptor.lo: ATM_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ATM_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_la-ATM_Acceptor.Tpo -c -o libACE_la-ATM_Acceptor.lo `test -f 'ATM_Acceptor.cpp' || echo '$(srcdir)/'`ATM_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ATM_Acceptor.Tpo $(DEPDIR)/libACE_la-ATM_Acceptor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ATM_Acceptor.cpp' object='libACE_la-ATM_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ATM_Acceptor.lo `test -f 'ATM_Acceptor.cpp' || echo '$(srcdir)/'`ATM_Acceptor.cpp - -libACE_la-ATM_Addr.lo: ATM_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ATM_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-ATM_Addr.Tpo -c -o libACE_la-ATM_Addr.lo `test -f 'ATM_Addr.cpp' || echo '$(srcdir)/'`ATM_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ATM_Addr.Tpo $(DEPDIR)/libACE_la-ATM_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ATM_Addr.cpp' object='libACE_la-ATM_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ATM_Addr.lo `test -f 'ATM_Addr.cpp' || echo '$(srcdir)/'`ATM_Addr.cpp - -libACE_la-ATM_Connector.lo: ATM_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ATM_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-ATM_Connector.Tpo -c -o libACE_la-ATM_Connector.lo `test -f 'ATM_Connector.cpp' || echo '$(srcdir)/'`ATM_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ATM_Connector.Tpo $(DEPDIR)/libACE_la-ATM_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ATM_Connector.cpp' object='libACE_la-ATM_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ATM_Connector.lo `test -f 'ATM_Connector.cpp' || echo '$(srcdir)/'`ATM_Connector.cpp - -libACE_la-ATM_Params.lo: ATM_Params.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ATM_Params.lo -MD -MP -MF $(DEPDIR)/libACE_la-ATM_Params.Tpo -c -o libACE_la-ATM_Params.lo `test -f 'ATM_Params.cpp' || echo '$(srcdir)/'`ATM_Params.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ATM_Params.Tpo $(DEPDIR)/libACE_la-ATM_Params.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ATM_Params.cpp' object='libACE_la-ATM_Params.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ATM_Params.lo `test -f 'ATM_Params.cpp' || echo '$(srcdir)/'`ATM_Params.cpp - -libACE_la-ATM_QoS.lo: ATM_QoS.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ATM_QoS.lo -MD -MP -MF $(DEPDIR)/libACE_la-ATM_QoS.Tpo -c -o libACE_la-ATM_QoS.lo `test -f 'ATM_QoS.cpp' || echo '$(srcdir)/'`ATM_QoS.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ATM_QoS.Tpo $(DEPDIR)/libACE_la-ATM_QoS.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ATM_QoS.cpp' object='libACE_la-ATM_QoS.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ATM_QoS.lo `test -f 'ATM_QoS.cpp' || echo '$(srcdir)/'`ATM_QoS.cpp - -libACE_la-ATM_Stream.lo: ATM_Stream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ATM_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_la-ATM_Stream.Tpo -c -o libACE_la-ATM_Stream.lo `test -f 'ATM_Stream.cpp' || echo '$(srcdir)/'`ATM_Stream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ATM_Stream.Tpo $(DEPDIR)/libACE_la-ATM_Stream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ATM_Stream.cpp' object='libACE_la-ATM_Stream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ATM_Stream.lo `test -f 'ATM_Stream.cpp' || echo '$(srcdir)/'`ATM_Stream.cpp - -libACE_la-Activation_Queue.lo: Activation_Queue.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Activation_Queue.lo -MD -MP -MF $(DEPDIR)/libACE_la-Activation_Queue.Tpo -c -o libACE_la-Activation_Queue.lo `test -f 'Activation_Queue.cpp' || echo '$(srcdir)/'`Activation_Queue.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Activation_Queue.Tpo $(DEPDIR)/libACE_la-Activation_Queue.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Activation_Queue.cpp' object='libACE_la-Activation_Queue.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Activation_Queue.lo `test -f 'Activation_Queue.cpp' || echo '$(srcdir)/'`Activation_Queue.cpp - -libACE_la-Active_Map_Manager.lo: Active_Map_Manager.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Active_Map_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_la-Active_Map_Manager.Tpo -c -o libACE_la-Active_Map_Manager.lo `test -f 'Active_Map_Manager.cpp' || echo '$(srcdir)/'`Active_Map_Manager.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Active_Map_Manager.Tpo $(DEPDIR)/libACE_la-Active_Map_Manager.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Active_Map_Manager.cpp' object='libACE_la-Active_Map_Manager.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Active_Map_Manager.lo `test -f 'Active_Map_Manager.cpp' || echo '$(srcdir)/'`Active_Map_Manager.cpp - -libACE_la-Addr.lo: Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-Addr.Tpo -c -o libACE_la-Addr.lo `test -f 'Addr.cpp' || echo '$(srcdir)/'`Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Addr.Tpo $(DEPDIR)/libACE_la-Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Addr.cpp' object='libACE_la-Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Addr.lo `test -f 'Addr.cpp' || echo '$(srcdir)/'`Addr.cpp - -libACE_la-Argv_Type_Converter.lo: Argv_Type_Converter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Argv_Type_Converter.lo -MD -MP -MF $(DEPDIR)/libACE_la-Argv_Type_Converter.Tpo -c -o libACE_la-Argv_Type_Converter.lo `test -f 'Argv_Type_Converter.cpp' || echo '$(srcdir)/'`Argv_Type_Converter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Argv_Type_Converter.Tpo $(DEPDIR)/libACE_la-Argv_Type_Converter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Argv_Type_Converter.cpp' object='libACE_la-Argv_Type_Converter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Argv_Type_Converter.lo `test -f 'Argv_Type_Converter.cpp' || echo '$(srcdir)/'`Argv_Type_Converter.cpp - -libACE_la-Assert.lo: Assert.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Assert.lo -MD -MP -MF $(DEPDIR)/libACE_la-Assert.Tpo -c -o libACE_la-Assert.lo `test -f 'Assert.cpp' || echo '$(srcdir)/'`Assert.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Assert.Tpo $(DEPDIR)/libACE_la-Assert.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Assert.cpp' object='libACE_la-Assert.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Assert.lo `test -f 'Assert.cpp' || echo '$(srcdir)/'`Assert.cpp - -libACE_la-Asynch_IO.lo: Asynch_IO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Asynch_IO.lo -MD -MP -MF $(DEPDIR)/libACE_la-Asynch_IO.Tpo -c -o libACE_la-Asynch_IO.lo `test -f 'Asynch_IO.cpp' || echo '$(srcdir)/'`Asynch_IO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Asynch_IO.Tpo $(DEPDIR)/libACE_la-Asynch_IO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Asynch_IO.cpp' object='libACE_la-Asynch_IO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Asynch_IO.lo `test -f 'Asynch_IO.cpp' || echo '$(srcdir)/'`Asynch_IO.cpp - -libACE_la-Asynch_IO_Impl.lo: Asynch_IO_Impl.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Asynch_IO_Impl.lo -MD -MP -MF $(DEPDIR)/libACE_la-Asynch_IO_Impl.Tpo -c -o libACE_la-Asynch_IO_Impl.lo `test -f 'Asynch_IO_Impl.cpp' || echo '$(srcdir)/'`Asynch_IO_Impl.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Asynch_IO_Impl.Tpo $(DEPDIR)/libACE_la-Asynch_IO_Impl.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Asynch_IO_Impl.cpp' object='libACE_la-Asynch_IO_Impl.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Asynch_IO_Impl.lo `test -f 'Asynch_IO_Impl.cpp' || echo '$(srcdir)/'`Asynch_IO_Impl.cpp - -libACE_la-Asynch_Pseudo_Task.lo: Asynch_Pseudo_Task.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Asynch_Pseudo_Task.lo -MD -MP -MF $(DEPDIR)/libACE_la-Asynch_Pseudo_Task.Tpo -c -o libACE_la-Asynch_Pseudo_Task.lo `test -f 'Asynch_Pseudo_Task.cpp' || echo '$(srcdir)/'`Asynch_Pseudo_Task.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Asynch_Pseudo_Task.Tpo $(DEPDIR)/libACE_la-Asynch_Pseudo_Task.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Asynch_Pseudo_Task.cpp' object='libACE_la-Asynch_Pseudo_Task.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Asynch_Pseudo_Task.lo `test -f 'Asynch_Pseudo_Task.cpp' || echo '$(srcdir)/'`Asynch_Pseudo_Task.cpp - -libACE_la-Atomic_Op.lo: Atomic_Op.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Atomic_Op.lo -MD -MP -MF $(DEPDIR)/libACE_la-Atomic_Op.Tpo -c -o libACE_la-Atomic_Op.lo `test -f 'Atomic_Op.cpp' || echo '$(srcdir)/'`Atomic_Op.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Atomic_Op.Tpo $(DEPDIR)/libACE_la-Atomic_Op.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Atomic_Op.cpp' object='libACE_la-Atomic_Op.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Atomic_Op.lo `test -f 'Atomic_Op.cpp' || echo '$(srcdir)/'`Atomic_Op.cpp - -libACE_la-Auto_Event.lo: Auto_Event.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Auto_Event.lo -MD -MP -MF $(DEPDIR)/libACE_la-Auto_Event.Tpo -c -o libACE_la-Auto_Event.lo `test -f 'Auto_Event.cpp' || echo '$(srcdir)/'`Auto_Event.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Auto_Event.Tpo $(DEPDIR)/libACE_la-Auto_Event.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Auto_Event.cpp' object='libACE_la-Auto_Event.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Auto_Event.lo `test -f 'Auto_Event.cpp' || echo '$(srcdir)/'`Auto_Event.cpp - -libACE_la-Barrier.lo: Barrier.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Barrier.lo -MD -MP -MF $(DEPDIR)/libACE_la-Barrier.Tpo -c -o libACE_la-Barrier.lo `test -f 'Barrier.cpp' || echo '$(srcdir)/'`Barrier.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Barrier.Tpo $(DEPDIR)/libACE_la-Barrier.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Barrier.cpp' object='libACE_la-Barrier.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Barrier.lo `test -f 'Barrier.cpp' || echo '$(srcdir)/'`Barrier.cpp - -libACE_la-Base_Thread_Adapter.lo: Base_Thread_Adapter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Base_Thread_Adapter.lo -MD -MP -MF $(DEPDIR)/libACE_la-Base_Thread_Adapter.Tpo -c -o libACE_la-Base_Thread_Adapter.lo `test -f 'Base_Thread_Adapter.cpp' || echo '$(srcdir)/'`Base_Thread_Adapter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Base_Thread_Adapter.Tpo $(DEPDIR)/libACE_la-Base_Thread_Adapter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Base_Thread_Adapter.cpp' object='libACE_la-Base_Thread_Adapter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Base_Thread_Adapter.lo `test -f 'Base_Thread_Adapter.cpp' || echo '$(srcdir)/'`Base_Thread_Adapter.cpp - -libACE_la-Based_Pointer_Repository.lo: Based_Pointer_Repository.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Based_Pointer_Repository.lo -MD -MP -MF $(DEPDIR)/libACE_la-Based_Pointer_Repository.Tpo -c -o libACE_la-Based_Pointer_Repository.lo `test -f 'Based_Pointer_Repository.cpp' || echo '$(srcdir)/'`Based_Pointer_Repository.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Based_Pointer_Repository.Tpo $(DEPDIR)/libACE_la-Based_Pointer_Repository.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Based_Pointer_Repository.cpp' object='libACE_la-Based_Pointer_Repository.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Based_Pointer_Repository.lo `test -f 'Based_Pointer_Repository.cpp' || echo '$(srcdir)/'`Based_Pointer_Repository.cpp - -libACE_la-Basic_Stats.lo: Basic_Stats.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Basic_Stats.lo -MD -MP -MF $(DEPDIR)/libACE_la-Basic_Stats.Tpo -c -o libACE_la-Basic_Stats.lo `test -f 'Basic_Stats.cpp' || echo '$(srcdir)/'`Basic_Stats.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Basic_Stats.Tpo $(DEPDIR)/libACE_la-Basic_Stats.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Basic_Stats.cpp' object='libACE_la-Basic_Stats.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Basic_Stats.lo `test -f 'Basic_Stats.cpp' || echo '$(srcdir)/'`Basic_Stats.cpp - -libACE_la-Basic_Types.lo: Basic_Types.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Basic_Types.lo -MD -MP -MF $(DEPDIR)/libACE_la-Basic_Types.Tpo -c -o libACE_la-Basic_Types.lo `test -f 'Basic_Types.cpp' || echo '$(srcdir)/'`Basic_Types.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Basic_Types.Tpo $(DEPDIR)/libACE_la-Basic_Types.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Basic_Types.cpp' object='libACE_la-Basic_Types.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Basic_Types.lo `test -f 'Basic_Types.cpp' || echo '$(srcdir)/'`Basic_Types.cpp - -libACE_la-CDR_Base.lo: CDR_Base.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-CDR_Base.lo -MD -MP -MF $(DEPDIR)/libACE_la-CDR_Base.Tpo -c -o libACE_la-CDR_Base.lo `test -f 'CDR_Base.cpp' || echo '$(srcdir)/'`CDR_Base.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-CDR_Base.Tpo $(DEPDIR)/libACE_la-CDR_Base.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='CDR_Base.cpp' object='libACE_la-CDR_Base.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-CDR_Base.lo `test -f 'CDR_Base.cpp' || echo '$(srcdir)/'`CDR_Base.cpp - -libACE_la-CDR_Size.lo: CDR_Size.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-CDR_Size.lo -MD -MP -MF $(DEPDIR)/libACE_la-CDR_Size.Tpo -c -o libACE_la-CDR_Size.lo `test -f 'CDR_Size.cpp' || echo '$(srcdir)/'`CDR_Size.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-CDR_Size.Tpo $(DEPDIR)/libACE_la-CDR_Size.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='CDR_Size.cpp' object='libACE_la-CDR_Size.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-CDR_Size.lo `test -f 'CDR_Size.cpp' || echo '$(srcdir)/'`CDR_Size.cpp - -libACE_la-CDR_Stream.lo: CDR_Stream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-CDR_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_la-CDR_Stream.Tpo -c -o libACE_la-CDR_Stream.lo `test -f 'CDR_Stream.cpp' || echo '$(srcdir)/'`CDR_Stream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-CDR_Stream.Tpo $(DEPDIR)/libACE_la-CDR_Stream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='CDR_Stream.cpp' object='libACE_la-CDR_Stream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-CDR_Stream.lo `test -f 'CDR_Stream.cpp' || echo '$(srcdir)/'`CDR_Stream.cpp - -libACE_la-Capabilities.lo: Capabilities.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Capabilities.lo -MD -MP -MF $(DEPDIR)/libACE_la-Capabilities.Tpo -c -o libACE_la-Capabilities.lo `test -f 'Capabilities.cpp' || echo '$(srcdir)/'`Capabilities.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Capabilities.Tpo $(DEPDIR)/libACE_la-Capabilities.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Capabilities.cpp' object='libACE_la-Capabilities.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Capabilities.lo `test -f 'Capabilities.cpp' || echo '$(srcdir)/'`Capabilities.cpp - -libACE_la-Cleanup.lo: Cleanup.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Cleanup.lo -MD -MP -MF $(DEPDIR)/libACE_la-Cleanup.Tpo -c -o libACE_la-Cleanup.lo `test -f 'Cleanup.cpp' || echo '$(srcdir)/'`Cleanup.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Cleanup.Tpo $(DEPDIR)/libACE_la-Cleanup.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Cleanup.cpp' object='libACE_la-Cleanup.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Cleanup.lo `test -f 'Cleanup.cpp' || echo '$(srcdir)/'`Cleanup.cpp - -libACE_la-Codecs.lo: Codecs.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Codecs.lo -MD -MP -MF $(DEPDIR)/libACE_la-Codecs.Tpo -c -o libACE_la-Codecs.lo `test -f 'Codecs.cpp' || echo '$(srcdir)/'`Codecs.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Codecs.Tpo $(DEPDIR)/libACE_la-Codecs.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Codecs.cpp' object='libACE_la-Codecs.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Codecs.lo `test -f 'Codecs.cpp' || echo '$(srcdir)/'`Codecs.cpp - -libACE_la-Codeset_IBM1047.lo: Codeset_IBM1047.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Codeset_IBM1047.lo -MD -MP -MF $(DEPDIR)/libACE_la-Codeset_IBM1047.Tpo -c -o libACE_la-Codeset_IBM1047.lo `test -f 'Codeset_IBM1047.cpp' || echo '$(srcdir)/'`Codeset_IBM1047.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Codeset_IBM1047.Tpo $(DEPDIR)/libACE_la-Codeset_IBM1047.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Codeset_IBM1047.cpp' object='libACE_la-Codeset_IBM1047.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Codeset_IBM1047.lo `test -f 'Codeset_IBM1047.cpp' || echo '$(srcdir)/'`Codeset_IBM1047.cpp - -libACE_la-Codeset_Registry.lo: Codeset_Registry.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Codeset_Registry.lo -MD -MP -MF $(DEPDIR)/libACE_la-Codeset_Registry.Tpo -c -o libACE_la-Codeset_Registry.lo `test -f 'Codeset_Registry.cpp' || echo '$(srcdir)/'`Codeset_Registry.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Codeset_Registry.Tpo $(DEPDIR)/libACE_la-Codeset_Registry.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Codeset_Registry.cpp' object='libACE_la-Codeset_Registry.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Codeset_Registry.lo `test -f 'Codeset_Registry.cpp' || echo '$(srcdir)/'`Codeset_Registry.cpp - -libACE_la-Codeset_Registry_db.lo: Codeset_Registry_db.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Codeset_Registry_db.lo -MD -MP -MF $(DEPDIR)/libACE_la-Codeset_Registry_db.Tpo -c -o libACE_la-Codeset_Registry_db.lo `test -f 'Codeset_Registry_db.cpp' || echo '$(srcdir)/'`Codeset_Registry_db.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Codeset_Registry_db.Tpo $(DEPDIR)/libACE_la-Codeset_Registry_db.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Codeset_Registry_db.cpp' object='libACE_la-Codeset_Registry_db.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Codeset_Registry_db.lo `test -f 'Codeset_Registry_db.cpp' || echo '$(srcdir)/'`Codeset_Registry_db.cpp - -libACE_la-Condition_Recursive_Thread_Mutex.lo: Condition_Recursive_Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Condition_Recursive_Thread_Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-Condition_Recursive_Thread_Mutex.Tpo -c -o libACE_la-Condition_Recursive_Thread_Mutex.lo `test -f 'Condition_Recursive_Thread_Mutex.cpp' || echo '$(srcdir)/'`Condition_Recursive_Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Condition_Recursive_Thread_Mutex.Tpo $(DEPDIR)/libACE_la-Condition_Recursive_Thread_Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Condition_Recursive_Thread_Mutex.cpp' object='libACE_la-Condition_Recursive_Thread_Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Condition_Recursive_Thread_Mutex.lo `test -f 'Condition_Recursive_Thread_Mutex.cpp' || echo '$(srcdir)/'`Condition_Recursive_Thread_Mutex.cpp - -libACE_la-Condition_Thread_Mutex.lo: Condition_Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Condition_Thread_Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-Condition_Thread_Mutex.Tpo -c -o libACE_la-Condition_Thread_Mutex.lo `test -f 'Condition_Thread_Mutex.cpp' || echo '$(srcdir)/'`Condition_Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Condition_Thread_Mutex.Tpo $(DEPDIR)/libACE_la-Condition_Thread_Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Condition_Thread_Mutex.cpp' object='libACE_la-Condition_Thread_Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Condition_Thread_Mutex.lo `test -f 'Condition_Thread_Mutex.cpp' || echo '$(srcdir)/'`Condition_Thread_Mutex.cpp - -libACE_la-Configuration.lo: Configuration.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Configuration.lo -MD -MP -MF $(DEPDIR)/libACE_la-Configuration.Tpo -c -o libACE_la-Configuration.lo `test -f 'Configuration.cpp' || echo '$(srcdir)/'`Configuration.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Configuration.Tpo $(DEPDIR)/libACE_la-Configuration.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Configuration.cpp' object='libACE_la-Configuration.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Configuration.lo `test -f 'Configuration.cpp' || echo '$(srcdir)/'`Configuration.cpp - -libACE_la-Configuration_Import_Export.lo: Configuration_Import_Export.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Configuration_Import_Export.lo -MD -MP -MF $(DEPDIR)/libACE_la-Configuration_Import_Export.Tpo -c -o libACE_la-Configuration_Import_Export.lo `test -f 'Configuration_Import_Export.cpp' || echo '$(srcdir)/'`Configuration_Import_Export.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Configuration_Import_Export.Tpo $(DEPDIR)/libACE_la-Configuration_Import_Export.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Configuration_Import_Export.cpp' object='libACE_la-Configuration_Import_Export.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Configuration_Import_Export.lo `test -f 'Configuration_Import_Export.cpp' || echo '$(srcdir)/'`Configuration_Import_Export.cpp - -libACE_la-Connection_Recycling_Strategy.lo: Connection_Recycling_Strategy.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Connection_Recycling_Strategy.lo -MD -MP -MF $(DEPDIR)/libACE_la-Connection_Recycling_Strategy.Tpo -c -o libACE_la-Connection_Recycling_Strategy.lo `test -f 'Connection_Recycling_Strategy.cpp' || echo '$(srcdir)/'`Connection_Recycling_Strategy.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Connection_Recycling_Strategy.Tpo $(DEPDIR)/libACE_la-Connection_Recycling_Strategy.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Connection_Recycling_Strategy.cpp' object='libACE_la-Connection_Recycling_Strategy.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Connection_Recycling_Strategy.lo `test -f 'Connection_Recycling_Strategy.cpp' || echo '$(srcdir)/'`Connection_Recycling_Strategy.cpp - -libACE_la-Containers.lo: Containers.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Containers.lo -MD -MP -MF $(DEPDIR)/libACE_la-Containers.Tpo -c -o libACE_la-Containers.lo `test -f 'Containers.cpp' || echo '$(srcdir)/'`Containers.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Containers.Tpo $(DEPDIR)/libACE_la-Containers.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Containers.cpp' object='libACE_la-Containers.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Containers.lo `test -f 'Containers.cpp' || echo '$(srcdir)/'`Containers.cpp - -libACE_la-Copy_Disabled.lo: Copy_Disabled.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Copy_Disabled.lo -MD -MP -MF $(DEPDIR)/libACE_la-Copy_Disabled.Tpo -c -o libACE_la-Copy_Disabled.lo `test -f 'Copy_Disabled.cpp' || echo '$(srcdir)/'`Copy_Disabled.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Copy_Disabled.Tpo $(DEPDIR)/libACE_la-Copy_Disabled.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Copy_Disabled.cpp' object='libACE_la-Copy_Disabled.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Copy_Disabled.lo `test -f 'Copy_Disabled.cpp' || echo '$(srcdir)/'`Copy_Disabled.cpp - -libACE_la-Countdown_Time.lo: Countdown_Time.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Countdown_Time.lo -MD -MP -MF $(DEPDIR)/libACE_la-Countdown_Time.Tpo -c -o libACE_la-Countdown_Time.lo `test -f 'Countdown_Time.cpp' || echo '$(srcdir)/'`Countdown_Time.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Countdown_Time.Tpo $(DEPDIR)/libACE_la-Countdown_Time.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Countdown_Time.cpp' object='libACE_la-Countdown_Time.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Countdown_Time.lo `test -f 'Countdown_Time.cpp' || echo '$(srcdir)/'`Countdown_Time.cpp - -libACE_la-DEV.lo: DEV.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-DEV.lo -MD -MP -MF $(DEPDIR)/libACE_la-DEV.Tpo -c -o libACE_la-DEV.lo `test -f 'DEV.cpp' || echo '$(srcdir)/'`DEV.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-DEV.Tpo $(DEPDIR)/libACE_la-DEV.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DEV.cpp' object='libACE_la-DEV.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-DEV.lo `test -f 'DEV.cpp' || echo '$(srcdir)/'`DEV.cpp - -libACE_la-DEV_Addr.lo: DEV_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-DEV_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-DEV_Addr.Tpo -c -o libACE_la-DEV_Addr.lo `test -f 'DEV_Addr.cpp' || echo '$(srcdir)/'`DEV_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-DEV_Addr.Tpo $(DEPDIR)/libACE_la-DEV_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DEV_Addr.cpp' object='libACE_la-DEV_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-DEV_Addr.lo `test -f 'DEV_Addr.cpp' || echo '$(srcdir)/'`DEV_Addr.cpp - -libACE_la-DEV_Connector.lo: DEV_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-DEV_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-DEV_Connector.Tpo -c -o libACE_la-DEV_Connector.lo `test -f 'DEV_Connector.cpp' || echo '$(srcdir)/'`DEV_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-DEV_Connector.Tpo $(DEPDIR)/libACE_la-DEV_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DEV_Connector.cpp' object='libACE_la-DEV_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-DEV_Connector.lo `test -f 'DEV_Connector.cpp' || echo '$(srcdir)/'`DEV_Connector.cpp - -libACE_la-DEV_IO.lo: DEV_IO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-DEV_IO.lo -MD -MP -MF $(DEPDIR)/libACE_la-DEV_IO.Tpo -c -o libACE_la-DEV_IO.lo `test -f 'DEV_IO.cpp' || echo '$(srcdir)/'`DEV_IO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-DEV_IO.Tpo $(DEPDIR)/libACE_la-DEV_IO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DEV_IO.cpp' object='libACE_la-DEV_IO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-DEV_IO.lo `test -f 'DEV_IO.cpp' || echo '$(srcdir)/'`DEV_IO.cpp - -libACE_la-DLL.lo: DLL.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-DLL.lo -MD -MP -MF $(DEPDIR)/libACE_la-DLL.Tpo -c -o libACE_la-DLL.lo `test -f 'DLL.cpp' || echo '$(srcdir)/'`DLL.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-DLL.Tpo $(DEPDIR)/libACE_la-DLL.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DLL.cpp' object='libACE_la-DLL.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-DLL.lo `test -f 'DLL.cpp' || echo '$(srcdir)/'`DLL.cpp - -libACE_la-DLL_Manager.lo: DLL_Manager.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-DLL_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_la-DLL_Manager.Tpo -c -o libACE_la-DLL_Manager.lo `test -f 'DLL_Manager.cpp' || echo '$(srcdir)/'`DLL_Manager.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-DLL_Manager.Tpo $(DEPDIR)/libACE_la-DLL_Manager.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DLL_Manager.cpp' object='libACE_la-DLL_Manager.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-DLL_Manager.lo `test -f 'DLL_Manager.cpp' || echo '$(srcdir)/'`DLL_Manager.cpp - -libACE_la-Date_Time.lo: Date_Time.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Date_Time.lo -MD -MP -MF $(DEPDIR)/libACE_la-Date_Time.Tpo -c -o libACE_la-Date_Time.lo `test -f 'Date_Time.cpp' || echo '$(srcdir)/'`Date_Time.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Date_Time.Tpo $(DEPDIR)/libACE_la-Date_Time.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Date_Time.cpp' object='libACE_la-Date_Time.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Date_Time.lo `test -f 'Date_Time.cpp' || echo '$(srcdir)/'`Date_Time.cpp - -libACE_la-Dev_Poll_Reactor.lo: Dev_Poll_Reactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Dev_Poll_Reactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-Dev_Poll_Reactor.Tpo -c -o libACE_la-Dev_Poll_Reactor.lo `test -f 'Dev_Poll_Reactor.cpp' || echo '$(srcdir)/'`Dev_Poll_Reactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Dev_Poll_Reactor.Tpo $(DEPDIR)/libACE_la-Dev_Poll_Reactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Dev_Poll_Reactor.cpp' object='libACE_la-Dev_Poll_Reactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Dev_Poll_Reactor.lo `test -f 'Dev_Poll_Reactor.cpp' || echo '$(srcdir)/'`Dev_Poll_Reactor.cpp - -libACE_la-Dirent.lo: Dirent.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Dirent.lo -MD -MP -MF $(DEPDIR)/libACE_la-Dirent.Tpo -c -o libACE_la-Dirent.lo `test -f 'Dirent.cpp' || echo '$(srcdir)/'`Dirent.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Dirent.Tpo $(DEPDIR)/libACE_la-Dirent.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Dirent.cpp' object='libACE_la-Dirent.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Dirent.lo `test -f 'Dirent.cpp' || echo '$(srcdir)/'`Dirent.cpp - -libACE_la-Dirent_Selector.lo: Dirent_Selector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Dirent_Selector.lo -MD -MP -MF $(DEPDIR)/libACE_la-Dirent_Selector.Tpo -c -o libACE_la-Dirent_Selector.lo `test -f 'Dirent_Selector.cpp' || echo '$(srcdir)/'`Dirent_Selector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Dirent_Selector.Tpo $(DEPDIR)/libACE_la-Dirent_Selector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Dirent_Selector.cpp' object='libACE_la-Dirent_Selector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Dirent_Selector.lo `test -f 'Dirent_Selector.cpp' || echo '$(srcdir)/'`Dirent_Selector.cpp - -libACE_la-Dump.lo: Dump.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Dump.lo -MD -MP -MF $(DEPDIR)/libACE_la-Dump.Tpo -c -o libACE_la-Dump.lo `test -f 'Dump.cpp' || echo '$(srcdir)/'`Dump.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Dump.Tpo $(DEPDIR)/libACE_la-Dump.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Dump.cpp' object='libACE_la-Dump.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Dump.lo `test -f 'Dump.cpp' || echo '$(srcdir)/'`Dump.cpp - -libACE_la-Dynamic.lo: Dynamic.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Dynamic.lo -MD -MP -MF $(DEPDIR)/libACE_la-Dynamic.Tpo -c -o libACE_la-Dynamic.lo `test -f 'Dynamic.cpp' || echo '$(srcdir)/'`Dynamic.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Dynamic.Tpo $(DEPDIR)/libACE_la-Dynamic.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Dynamic.cpp' object='libACE_la-Dynamic.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Dynamic.lo `test -f 'Dynamic.cpp' || echo '$(srcdir)/'`Dynamic.cpp - -libACE_la-Dynamic_Message_Strategy.lo: Dynamic_Message_Strategy.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Dynamic_Message_Strategy.lo -MD -MP -MF $(DEPDIR)/libACE_la-Dynamic_Message_Strategy.Tpo -c -o libACE_la-Dynamic_Message_Strategy.lo `test -f 'Dynamic_Message_Strategy.cpp' || echo '$(srcdir)/'`Dynamic_Message_Strategy.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Dynamic_Message_Strategy.Tpo $(DEPDIR)/libACE_la-Dynamic_Message_Strategy.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Dynamic_Message_Strategy.cpp' object='libACE_la-Dynamic_Message_Strategy.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Dynamic_Message_Strategy.lo `test -f 'Dynamic_Message_Strategy.cpp' || echo '$(srcdir)/'`Dynamic_Message_Strategy.cpp - -libACE_la-Dynamic_Service_Base.lo: Dynamic_Service_Base.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Dynamic_Service_Base.lo -MD -MP -MF $(DEPDIR)/libACE_la-Dynamic_Service_Base.Tpo -c -o libACE_la-Dynamic_Service_Base.lo `test -f 'Dynamic_Service_Base.cpp' || echo '$(srcdir)/'`Dynamic_Service_Base.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Dynamic_Service_Base.Tpo $(DEPDIR)/libACE_la-Dynamic_Service_Base.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Dynamic_Service_Base.cpp' object='libACE_la-Dynamic_Service_Base.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Dynamic_Service_Base.lo `test -f 'Dynamic_Service_Base.cpp' || echo '$(srcdir)/'`Dynamic_Service_Base.cpp - -libACE_la-Dynamic_Service_Dependency.lo: Dynamic_Service_Dependency.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Dynamic_Service_Dependency.lo -MD -MP -MF $(DEPDIR)/libACE_la-Dynamic_Service_Dependency.Tpo -c -o libACE_la-Dynamic_Service_Dependency.lo `test -f 'Dynamic_Service_Dependency.cpp' || echo '$(srcdir)/'`Dynamic_Service_Dependency.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Dynamic_Service_Dependency.Tpo $(DEPDIR)/libACE_la-Dynamic_Service_Dependency.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Dynamic_Service_Dependency.cpp' object='libACE_la-Dynamic_Service_Dependency.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Dynamic_Service_Dependency.lo `test -f 'Dynamic_Service_Dependency.cpp' || echo '$(srcdir)/'`Dynamic_Service_Dependency.cpp - -libACE_la-Encoding_Converter.lo: Encoding_Converter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Encoding_Converter.lo -MD -MP -MF $(DEPDIR)/libACE_la-Encoding_Converter.Tpo -c -o libACE_la-Encoding_Converter.lo `test -f 'Encoding_Converter.cpp' || echo '$(srcdir)/'`Encoding_Converter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Encoding_Converter.Tpo $(DEPDIR)/libACE_la-Encoding_Converter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Encoding_Converter.cpp' object='libACE_la-Encoding_Converter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Encoding_Converter.lo `test -f 'Encoding_Converter.cpp' || echo '$(srcdir)/'`Encoding_Converter.cpp - -libACE_la-Encoding_Converter_Factory.lo: Encoding_Converter_Factory.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Encoding_Converter_Factory.lo -MD -MP -MF $(DEPDIR)/libACE_la-Encoding_Converter_Factory.Tpo -c -o libACE_la-Encoding_Converter_Factory.lo `test -f 'Encoding_Converter_Factory.cpp' || echo '$(srcdir)/'`Encoding_Converter_Factory.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Encoding_Converter_Factory.Tpo $(DEPDIR)/libACE_la-Encoding_Converter_Factory.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Encoding_Converter_Factory.cpp' object='libACE_la-Encoding_Converter_Factory.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Encoding_Converter_Factory.lo `test -f 'Encoding_Converter_Factory.cpp' || echo '$(srcdir)/'`Encoding_Converter_Factory.cpp - -libACE_la-Event.lo: Event.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Event.lo -MD -MP -MF $(DEPDIR)/libACE_la-Event.Tpo -c -o libACE_la-Event.lo `test -f 'Event.cpp' || echo '$(srcdir)/'`Event.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Event.Tpo $(DEPDIR)/libACE_la-Event.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Event.cpp' object='libACE_la-Event.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Event.lo `test -f 'Event.cpp' || echo '$(srcdir)/'`Event.cpp - -libACE_la-Event_Handler.lo: Event_Handler.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Event_Handler.lo -MD -MP -MF $(DEPDIR)/libACE_la-Event_Handler.Tpo -c -o libACE_la-Event_Handler.lo `test -f 'Event_Handler.cpp' || echo '$(srcdir)/'`Event_Handler.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Event_Handler.Tpo $(DEPDIR)/libACE_la-Event_Handler.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Event_Handler.cpp' object='libACE_la-Event_Handler.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Event_Handler.lo `test -f 'Event_Handler.cpp' || echo '$(srcdir)/'`Event_Handler.cpp - -libACE_la-FIFO.lo: FIFO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FIFO.lo -MD -MP -MF $(DEPDIR)/libACE_la-FIFO.Tpo -c -o libACE_la-FIFO.lo `test -f 'FIFO.cpp' || echo '$(srcdir)/'`FIFO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FIFO.Tpo $(DEPDIR)/libACE_la-FIFO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FIFO.cpp' object='libACE_la-FIFO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FIFO.lo `test -f 'FIFO.cpp' || echo '$(srcdir)/'`FIFO.cpp - -libACE_la-FIFO_Recv.lo: FIFO_Recv.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FIFO_Recv.lo -MD -MP -MF $(DEPDIR)/libACE_la-FIFO_Recv.Tpo -c -o libACE_la-FIFO_Recv.lo `test -f 'FIFO_Recv.cpp' || echo '$(srcdir)/'`FIFO_Recv.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FIFO_Recv.Tpo $(DEPDIR)/libACE_la-FIFO_Recv.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FIFO_Recv.cpp' object='libACE_la-FIFO_Recv.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FIFO_Recv.lo `test -f 'FIFO_Recv.cpp' || echo '$(srcdir)/'`FIFO_Recv.cpp - -libACE_la-FIFO_Recv_Msg.lo: FIFO_Recv_Msg.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FIFO_Recv_Msg.lo -MD -MP -MF $(DEPDIR)/libACE_la-FIFO_Recv_Msg.Tpo -c -o libACE_la-FIFO_Recv_Msg.lo `test -f 'FIFO_Recv_Msg.cpp' || echo '$(srcdir)/'`FIFO_Recv_Msg.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FIFO_Recv_Msg.Tpo $(DEPDIR)/libACE_la-FIFO_Recv_Msg.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FIFO_Recv_Msg.cpp' object='libACE_la-FIFO_Recv_Msg.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FIFO_Recv_Msg.lo `test -f 'FIFO_Recv_Msg.cpp' || echo '$(srcdir)/'`FIFO_Recv_Msg.cpp - -libACE_la-FIFO_Send.lo: FIFO_Send.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FIFO_Send.lo -MD -MP -MF $(DEPDIR)/libACE_la-FIFO_Send.Tpo -c -o libACE_la-FIFO_Send.lo `test -f 'FIFO_Send.cpp' || echo '$(srcdir)/'`FIFO_Send.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FIFO_Send.Tpo $(DEPDIR)/libACE_la-FIFO_Send.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FIFO_Send.cpp' object='libACE_la-FIFO_Send.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FIFO_Send.lo `test -f 'FIFO_Send.cpp' || echo '$(srcdir)/'`FIFO_Send.cpp - -libACE_la-FIFO_Send_Msg.lo: FIFO_Send_Msg.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FIFO_Send_Msg.lo -MD -MP -MF $(DEPDIR)/libACE_la-FIFO_Send_Msg.Tpo -c -o libACE_la-FIFO_Send_Msg.lo `test -f 'FIFO_Send_Msg.cpp' || echo '$(srcdir)/'`FIFO_Send_Msg.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FIFO_Send_Msg.Tpo $(DEPDIR)/libACE_la-FIFO_Send_Msg.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FIFO_Send_Msg.cpp' object='libACE_la-FIFO_Send_Msg.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FIFO_Send_Msg.lo `test -f 'FIFO_Send_Msg.cpp' || echo '$(srcdir)/'`FIFO_Send_Msg.cpp - -libACE_la-FILE.lo: FILE.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FILE.lo -MD -MP -MF $(DEPDIR)/libACE_la-FILE.Tpo -c -o libACE_la-FILE.lo `test -f 'FILE.cpp' || echo '$(srcdir)/'`FILE.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FILE.Tpo $(DEPDIR)/libACE_la-FILE.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FILE.cpp' object='libACE_la-FILE.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FILE.lo `test -f 'FILE.cpp' || echo '$(srcdir)/'`FILE.cpp - -libACE_la-FILE_Addr.lo: FILE_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FILE_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-FILE_Addr.Tpo -c -o libACE_la-FILE_Addr.lo `test -f 'FILE_Addr.cpp' || echo '$(srcdir)/'`FILE_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FILE_Addr.Tpo $(DEPDIR)/libACE_la-FILE_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FILE_Addr.cpp' object='libACE_la-FILE_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FILE_Addr.lo `test -f 'FILE_Addr.cpp' || echo '$(srcdir)/'`FILE_Addr.cpp - -libACE_la-FILE_Connector.lo: FILE_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FILE_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-FILE_Connector.Tpo -c -o libACE_la-FILE_Connector.lo `test -f 'FILE_Connector.cpp' || echo '$(srcdir)/'`FILE_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FILE_Connector.Tpo $(DEPDIR)/libACE_la-FILE_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FILE_Connector.cpp' object='libACE_la-FILE_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FILE_Connector.lo `test -f 'FILE_Connector.cpp' || echo '$(srcdir)/'`FILE_Connector.cpp - -libACE_la-FILE_IO.lo: FILE_IO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-FILE_IO.lo -MD -MP -MF $(DEPDIR)/libACE_la-FILE_IO.Tpo -c -o libACE_la-FILE_IO.lo `test -f 'FILE_IO.cpp' || echo '$(srcdir)/'`FILE_IO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-FILE_IO.Tpo $(DEPDIR)/libACE_la-FILE_IO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FILE_IO.cpp' object='libACE_la-FILE_IO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-FILE_IO.lo `test -f 'FILE_IO.cpp' || echo '$(srcdir)/'`FILE_IO.cpp - -libACE_la-File_Lock.lo: File_Lock.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-File_Lock.lo -MD -MP -MF $(DEPDIR)/libACE_la-File_Lock.Tpo -c -o libACE_la-File_Lock.lo `test -f 'File_Lock.cpp' || echo '$(srcdir)/'`File_Lock.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-File_Lock.Tpo $(DEPDIR)/libACE_la-File_Lock.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='File_Lock.cpp' object='libACE_la-File_Lock.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-File_Lock.lo `test -f 'File_Lock.cpp' || echo '$(srcdir)/'`File_Lock.cpp - -libACE_la-Filecache.lo: Filecache.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Filecache.lo -MD -MP -MF $(DEPDIR)/libACE_la-Filecache.Tpo -c -o libACE_la-Filecache.lo `test -f 'Filecache.cpp' || echo '$(srcdir)/'`Filecache.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Filecache.Tpo $(DEPDIR)/libACE_la-Filecache.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Filecache.cpp' object='libACE_la-Filecache.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Filecache.lo `test -f 'Filecache.cpp' || echo '$(srcdir)/'`Filecache.cpp - -libACE_la-Flag_Manip.lo: Flag_Manip.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Flag_Manip.lo -MD -MP -MF $(DEPDIR)/libACE_la-Flag_Manip.Tpo -c -o libACE_la-Flag_Manip.lo `test -f 'Flag_Manip.cpp' || echo '$(srcdir)/'`Flag_Manip.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Flag_Manip.Tpo $(DEPDIR)/libACE_la-Flag_Manip.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Flag_Manip.cpp' object='libACE_la-Flag_Manip.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Flag_Manip.lo `test -f 'Flag_Manip.cpp' || echo '$(srcdir)/'`Flag_Manip.cpp - -libACE_la-Framework_Component.lo: Framework_Component.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Framework_Component.lo -MD -MP -MF $(DEPDIR)/libACE_la-Framework_Component.Tpo -c -o libACE_la-Framework_Component.lo `test -f 'Framework_Component.cpp' || echo '$(srcdir)/'`Framework_Component.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Framework_Component.Tpo $(DEPDIR)/libACE_la-Framework_Component.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Framework_Component.cpp' object='libACE_la-Framework_Component.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Framework_Component.lo `test -f 'Framework_Component.cpp' || echo '$(srcdir)/'`Framework_Component.cpp - -libACE_la-Functor.lo: Functor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Functor.lo -MD -MP -MF $(DEPDIR)/libACE_la-Functor.Tpo -c -o libACE_la-Functor.lo `test -f 'Functor.cpp' || echo '$(srcdir)/'`Functor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Functor.Tpo $(DEPDIR)/libACE_la-Functor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Functor.cpp' object='libACE_la-Functor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Functor.lo `test -f 'Functor.cpp' || echo '$(srcdir)/'`Functor.cpp - -libACE_la-Functor_String.lo: Functor_String.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Functor_String.lo -MD -MP -MF $(DEPDIR)/libACE_la-Functor_String.Tpo -c -o libACE_la-Functor_String.lo `test -f 'Functor_String.cpp' || echo '$(srcdir)/'`Functor_String.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Functor_String.Tpo $(DEPDIR)/libACE_la-Functor_String.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Functor_String.cpp' object='libACE_la-Functor_String.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Functor_String.lo `test -f 'Functor_String.cpp' || echo '$(srcdir)/'`Functor_String.cpp - -libACE_la-Get_Opt.lo: Get_Opt.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Get_Opt.lo -MD -MP -MF $(DEPDIR)/libACE_la-Get_Opt.Tpo -c -o libACE_la-Get_Opt.lo `test -f 'Get_Opt.cpp' || echo '$(srcdir)/'`Get_Opt.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Get_Opt.Tpo $(DEPDIR)/libACE_la-Get_Opt.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Get_Opt.cpp' object='libACE_la-Get_Opt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Get_Opt.lo `test -f 'Get_Opt.cpp' || echo '$(srcdir)/'`Get_Opt.cpp - -libACE_la-Handle_Ops.lo: Handle_Ops.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Handle_Ops.lo -MD -MP -MF $(DEPDIR)/libACE_la-Handle_Ops.Tpo -c -o libACE_la-Handle_Ops.lo `test -f 'Handle_Ops.cpp' || echo '$(srcdir)/'`Handle_Ops.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Handle_Ops.Tpo $(DEPDIR)/libACE_la-Handle_Ops.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Handle_Ops.cpp' object='libACE_la-Handle_Ops.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Handle_Ops.lo `test -f 'Handle_Ops.cpp' || echo '$(srcdir)/'`Handle_Ops.cpp - -libACE_la-Handle_Set.lo: Handle_Set.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Handle_Set.lo -MD -MP -MF $(DEPDIR)/libACE_la-Handle_Set.Tpo -c -o libACE_la-Handle_Set.lo `test -f 'Handle_Set.cpp' || echo '$(srcdir)/'`Handle_Set.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Handle_Set.Tpo $(DEPDIR)/libACE_la-Handle_Set.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Handle_Set.cpp' object='libACE_la-Handle_Set.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Handle_Set.lo `test -f 'Handle_Set.cpp' || echo '$(srcdir)/'`Handle_Set.cpp - -libACE_la-Hashable.lo: Hashable.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Hashable.lo -MD -MP -MF $(DEPDIR)/libACE_la-Hashable.Tpo -c -o libACE_la-Hashable.lo `test -f 'Hashable.cpp' || echo '$(srcdir)/'`Hashable.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Hashable.Tpo $(DEPDIR)/libACE_la-Hashable.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Hashable.cpp' object='libACE_la-Hashable.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Hashable.lo `test -f 'Hashable.cpp' || echo '$(srcdir)/'`Hashable.cpp - -libACE_la-High_Res_Timer.lo: High_Res_Timer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-High_Res_Timer.lo -MD -MP -MF $(DEPDIR)/libACE_la-High_Res_Timer.Tpo -c -o libACE_la-High_Res_Timer.lo `test -f 'High_Res_Timer.cpp' || echo '$(srcdir)/'`High_Res_Timer.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-High_Res_Timer.Tpo $(DEPDIR)/libACE_la-High_Res_Timer.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='High_Res_Timer.cpp' object='libACE_la-High_Res_Timer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-High_Res_Timer.lo `test -f 'High_Res_Timer.cpp' || echo '$(srcdir)/'`High_Res_Timer.cpp - -libACE_la-ICMP_Socket.lo: ICMP_Socket.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ICMP_Socket.lo -MD -MP -MF $(DEPDIR)/libACE_la-ICMP_Socket.Tpo -c -o libACE_la-ICMP_Socket.lo `test -f 'ICMP_Socket.cpp' || echo '$(srcdir)/'`ICMP_Socket.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ICMP_Socket.Tpo $(DEPDIR)/libACE_la-ICMP_Socket.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ICMP_Socket.cpp' object='libACE_la-ICMP_Socket.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ICMP_Socket.lo `test -f 'ICMP_Socket.cpp' || echo '$(srcdir)/'`ICMP_Socket.cpp - -libACE_la-INET_Addr.lo: INET_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-INET_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-INET_Addr.Tpo -c -o libACE_la-INET_Addr.lo `test -f 'INET_Addr.cpp' || echo '$(srcdir)/'`INET_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-INET_Addr.Tpo $(DEPDIR)/libACE_la-INET_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='INET_Addr.cpp' object='libACE_la-INET_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-INET_Addr.lo `test -f 'INET_Addr.cpp' || echo '$(srcdir)/'`INET_Addr.cpp - -libACE_la-IOStream.lo: IOStream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-IOStream.lo -MD -MP -MF $(DEPDIR)/libACE_la-IOStream.Tpo -c -o libACE_la-IOStream.lo `test -f 'IOStream.cpp' || echo '$(srcdir)/'`IOStream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-IOStream.Tpo $(DEPDIR)/libACE_la-IOStream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='IOStream.cpp' object='libACE_la-IOStream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-IOStream.lo `test -f 'IOStream.cpp' || echo '$(srcdir)/'`IOStream.cpp - -libACE_la-IO_Cntl_Msg.lo: IO_Cntl_Msg.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-IO_Cntl_Msg.lo -MD -MP -MF $(DEPDIR)/libACE_la-IO_Cntl_Msg.Tpo -c -o libACE_la-IO_Cntl_Msg.lo `test -f 'IO_Cntl_Msg.cpp' || echo '$(srcdir)/'`IO_Cntl_Msg.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-IO_Cntl_Msg.Tpo $(DEPDIR)/libACE_la-IO_Cntl_Msg.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='IO_Cntl_Msg.cpp' object='libACE_la-IO_Cntl_Msg.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-IO_Cntl_Msg.lo `test -f 'IO_Cntl_Msg.cpp' || echo '$(srcdir)/'`IO_Cntl_Msg.cpp - -libACE_la-IO_SAP.lo: IO_SAP.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-IO_SAP.lo -MD -MP -MF $(DEPDIR)/libACE_la-IO_SAP.Tpo -c -o libACE_la-IO_SAP.lo `test -f 'IO_SAP.cpp' || echo '$(srcdir)/'`IO_SAP.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-IO_SAP.Tpo $(DEPDIR)/libACE_la-IO_SAP.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='IO_SAP.cpp' object='libACE_la-IO_SAP.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-IO_SAP.lo `test -f 'IO_SAP.cpp' || echo '$(srcdir)/'`IO_SAP.cpp - -libACE_la-IPC_SAP.lo: IPC_SAP.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-IPC_SAP.lo -MD -MP -MF $(DEPDIR)/libACE_la-IPC_SAP.Tpo -c -o libACE_la-IPC_SAP.lo `test -f 'IPC_SAP.cpp' || echo '$(srcdir)/'`IPC_SAP.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-IPC_SAP.Tpo $(DEPDIR)/libACE_la-IPC_SAP.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='IPC_SAP.cpp' object='libACE_la-IPC_SAP.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-IPC_SAP.lo `test -f 'IPC_SAP.cpp' || echo '$(srcdir)/'`IPC_SAP.cpp - -libACE_la-Init_ACE.lo: Init_ACE.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Init_ACE.lo -MD -MP -MF $(DEPDIR)/libACE_la-Init_ACE.Tpo -c -o libACE_la-Init_ACE.lo `test -f 'Init_ACE.cpp' || echo '$(srcdir)/'`Init_ACE.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Init_ACE.Tpo $(DEPDIR)/libACE_la-Init_ACE.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Init_ACE.cpp' object='libACE_la-Init_ACE.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Init_ACE.lo `test -f 'Init_ACE.cpp' || echo '$(srcdir)/'`Init_ACE.cpp - -libACE_la-LSOCK.lo: LSOCK.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-LSOCK.lo -MD -MP -MF $(DEPDIR)/libACE_la-LSOCK.Tpo -c -o libACE_la-LSOCK.lo `test -f 'LSOCK.cpp' || echo '$(srcdir)/'`LSOCK.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-LSOCK.Tpo $(DEPDIR)/libACE_la-LSOCK.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='LSOCK.cpp' object='libACE_la-LSOCK.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-LSOCK.lo `test -f 'LSOCK.cpp' || echo '$(srcdir)/'`LSOCK.cpp - -libACE_la-LSOCK_Acceptor.lo: LSOCK_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-LSOCK_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_la-LSOCK_Acceptor.Tpo -c -o libACE_la-LSOCK_Acceptor.lo `test -f 'LSOCK_Acceptor.cpp' || echo '$(srcdir)/'`LSOCK_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-LSOCK_Acceptor.Tpo $(DEPDIR)/libACE_la-LSOCK_Acceptor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='LSOCK_Acceptor.cpp' object='libACE_la-LSOCK_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-LSOCK_Acceptor.lo `test -f 'LSOCK_Acceptor.cpp' || echo '$(srcdir)/'`LSOCK_Acceptor.cpp - -libACE_la-LSOCK_CODgram.lo: LSOCK_CODgram.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-LSOCK_CODgram.lo -MD -MP -MF $(DEPDIR)/libACE_la-LSOCK_CODgram.Tpo -c -o libACE_la-LSOCK_CODgram.lo `test -f 'LSOCK_CODgram.cpp' || echo '$(srcdir)/'`LSOCK_CODgram.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-LSOCK_CODgram.Tpo $(DEPDIR)/libACE_la-LSOCK_CODgram.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='LSOCK_CODgram.cpp' object='libACE_la-LSOCK_CODgram.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-LSOCK_CODgram.lo `test -f 'LSOCK_CODgram.cpp' || echo '$(srcdir)/'`LSOCK_CODgram.cpp - -libACE_la-LSOCK_Connector.lo: LSOCK_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-LSOCK_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-LSOCK_Connector.Tpo -c -o libACE_la-LSOCK_Connector.lo `test -f 'LSOCK_Connector.cpp' || echo '$(srcdir)/'`LSOCK_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-LSOCK_Connector.Tpo $(DEPDIR)/libACE_la-LSOCK_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='LSOCK_Connector.cpp' object='libACE_la-LSOCK_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-LSOCK_Connector.lo `test -f 'LSOCK_Connector.cpp' || echo '$(srcdir)/'`LSOCK_Connector.cpp - -libACE_la-LSOCK_Dgram.lo: LSOCK_Dgram.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-LSOCK_Dgram.lo -MD -MP -MF $(DEPDIR)/libACE_la-LSOCK_Dgram.Tpo -c -o libACE_la-LSOCK_Dgram.lo `test -f 'LSOCK_Dgram.cpp' || echo '$(srcdir)/'`LSOCK_Dgram.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-LSOCK_Dgram.Tpo $(DEPDIR)/libACE_la-LSOCK_Dgram.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='LSOCK_Dgram.cpp' object='libACE_la-LSOCK_Dgram.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-LSOCK_Dgram.lo `test -f 'LSOCK_Dgram.cpp' || echo '$(srcdir)/'`LSOCK_Dgram.cpp - -libACE_la-LSOCK_Stream.lo: LSOCK_Stream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-LSOCK_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_la-LSOCK_Stream.Tpo -c -o libACE_la-LSOCK_Stream.lo `test -f 'LSOCK_Stream.cpp' || echo '$(srcdir)/'`LSOCK_Stream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-LSOCK_Stream.Tpo $(DEPDIR)/libACE_la-LSOCK_Stream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='LSOCK_Stream.cpp' object='libACE_la-LSOCK_Stream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-LSOCK_Stream.lo `test -f 'LSOCK_Stream.cpp' || echo '$(srcdir)/'`LSOCK_Stream.cpp - -libACE_la-Lib_Find.lo: Lib_Find.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Lib_Find.lo -MD -MP -MF $(DEPDIR)/libACE_la-Lib_Find.Tpo -c -o libACE_la-Lib_Find.lo `test -f 'Lib_Find.cpp' || echo '$(srcdir)/'`Lib_Find.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Lib_Find.Tpo $(DEPDIR)/libACE_la-Lib_Find.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Lib_Find.cpp' object='libACE_la-Lib_Find.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Lib_Find.lo `test -f 'Lib_Find.cpp' || echo '$(srcdir)/'`Lib_Find.cpp - -libACE_la-Local_Memory_Pool.lo: Local_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Local_Memory_Pool.lo -MD -MP -MF $(DEPDIR)/libACE_la-Local_Memory_Pool.Tpo -c -o libACE_la-Local_Memory_Pool.lo `test -f 'Local_Memory_Pool.cpp' || echo '$(srcdir)/'`Local_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Local_Memory_Pool.Tpo $(DEPDIR)/libACE_la-Local_Memory_Pool.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Local_Memory_Pool.cpp' object='libACE_la-Local_Memory_Pool.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Local_Memory_Pool.lo `test -f 'Local_Memory_Pool.cpp' || echo '$(srcdir)/'`Local_Memory_Pool.cpp - -libACE_la-Local_Name_Space.lo: Local_Name_Space.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Local_Name_Space.lo -MD -MP -MF $(DEPDIR)/libACE_la-Local_Name_Space.Tpo -c -o libACE_la-Local_Name_Space.lo `test -f 'Local_Name_Space.cpp' || echo '$(srcdir)/'`Local_Name_Space.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Local_Name_Space.Tpo $(DEPDIR)/libACE_la-Local_Name_Space.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Local_Name_Space.cpp' object='libACE_la-Local_Name_Space.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Local_Name_Space.lo `test -f 'Local_Name_Space.cpp' || echo '$(srcdir)/'`Local_Name_Space.cpp - -libACE_la-Local_Tokens.lo: Local_Tokens.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Local_Tokens.lo -MD -MP -MF $(DEPDIR)/libACE_la-Local_Tokens.Tpo -c -o libACE_la-Local_Tokens.lo `test -f 'Local_Tokens.cpp' || echo '$(srcdir)/'`Local_Tokens.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Local_Tokens.Tpo $(DEPDIR)/libACE_la-Local_Tokens.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Local_Tokens.cpp' object='libACE_la-Local_Tokens.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Local_Tokens.lo `test -f 'Local_Tokens.cpp' || echo '$(srcdir)/'`Local_Tokens.cpp - -libACE_la-Lock.lo: Lock.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Lock.lo -MD -MP -MF $(DEPDIR)/libACE_la-Lock.Tpo -c -o libACE_la-Lock.lo `test -f 'Lock.cpp' || echo '$(srcdir)/'`Lock.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Lock.Tpo $(DEPDIR)/libACE_la-Lock.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Lock.cpp' object='libACE_la-Lock.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Lock.lo `test -f 'Lock.cpp' || echo '$(srcdir)/'`Lock.cpp - -libACE_la-Log_Msg.lo: Log_Msg.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Log_Msg.lo -MD -MP -MF $(DEPDIR)/libACE_la-Log_Msg.Tpo -c -o libACE_la-Log_Msg.lo `test -f 'Log_Msg.cpp' || echo '$(srcdir)/'`Log_Msg.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Log_Msg.Tpo $(DEPDIR)/libACE_la-Log_Msg.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Log_Msg.cpp' object='libACE_la-Log_Msg.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Log_Msg.lo `test -f 'Log_Msg.cpp' || echo '$(srcdir)/'`Log_Msg.cpp - -libACE_la-Log_Msg_Backend.lo: Log_Msg_Backend.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Log_Msg_Backend.lo -MD -MP -MF $(DEPDIR)/libACE_la-Log_Msg_Backend.Tpo -c -o libACE_la-Log_Msg_Backend.lo `test -f 'Log_Msg_Backend.cpp' || echo '$(srcdir)/'`Log_Msg_Backend.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Log_Msg_Backend.Tpo $(DEPDIR)/libACE_la-Log_Msg_Backend.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Log_Msg_Backend.cpp' object='libACE_la-Log_Msg_Backend.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Log_Msg_Backend.lo `test -f 'Log_Msg_Backend.cpp' || echo '$(srcdir)/'`Log_Msg_Backend.cpp - -libACE_la-Log_Msg_Callback.lo: Log_Msg_Callback.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Log_Msg_Callback.lo -MD -MP -MF $(DEPDIR)/libACE_la-Log_Msg_Callback.Tpo -c -o libACE_la-Log_Msg_Callback.lo `test -f 'Log_Msg_Callback.cpp' || echo '$(srcdir)/'`Log_Msg_Callback.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Log_Msg_Callback.Tpo $(DEPDIR)/libACE_la-Log_Msg_Callback.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Log_Msg_Callback.cpp' object='libACE_la-Log_Msg_Callback.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Log_Msg_Callback.lo `test -f 'Log_Msg_Callback.cpp' || echo '$(srcdir)/'`Log_Msg_Callback.cpp - -libACE_la-Log_Msg_IPC.lo: Log_Msg_IPC.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Log_Msg_IPC.lo -MD -MP -MF $(DEPDIR)/libACE_la-Log_Msg_IPC.Tpo -c -o libACE_la-Log_Msg_IPC.lo `test -f 'Log_Msg_IPC.cpp' || echo '$(srcdir)/'`Log_Msg_IPC.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Log_Msg_IPC.Tpo $(DEPDIR)/libACE_la-Log_Msg_IPC.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Log_Msg_IPC.cpp' object='libACE_la-Log_Msg_IPC.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Log_Msg_IPC.lo `test -f 'Log_Msg_IPC.cpp' || echo '$(srcdir)/'`Log_Msg_IPC.cpp - -libACE_la-Log_Msg_NT_Event_Log.lo: Log_Msg_NT_Event_Log.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Log_Msg_NT_Event_Log.lo -MD -MP -MF $(DEPDIR)/libACE_la-Log_Msg_NT_Event_Log.Tpo -c -o libACE_la-Log_Msg_NT_Event_Log.lo `test -f 'Log_Msg_NT_Event_Log.cpp' || echo '$(srcdir)/'`Log_Msg_NT_Event_Log.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Log_Msg_NT_Event_Log.Tpo $(DEPDIR)/libACE_la-Log_Msg_NT_Event_Log.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Log_Msg_NT_Event_Log.cpp' object='libACE_la-Log_Msg_NT_Event_Log.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Log_Msg_NT_Event_Log.lo `test -f 'Log_Msg_NT_Event_Log.cpp' || echo '$(srcdir)/'`Log_Msg_NT_Event_Log.cpp - -libACE_la-Log_Msg_UNIX_Syslog.lo: Log_Msg_UNIX_Syslog.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Log_Msg_UNIX_Syslog.lo -MD -MP -MF $(DEPDIR)/libACE_la-Log_Msg_UNIX_Syslog.Tpo -c -o libACE_la-Log_Msg_UNIX_Syslog.lo `test -f 'Log_Msg_UNIX_Syslog.cpp' || echo '$(srcdir)/'`Log_Msg_UNIX_Syslog.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Log_Msg_UNIX_Syslog.Tpo $(DEPDIR)/libACE_la-Log_Msg_UNIX_Syslog.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Log_Msg_UNIX_Syslog.cpp' object='libACE_la-Log_Msg_UNIX_Syslog.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Log_Msg_UNIX_Syslog.lo `test -f 'Log_Msg_UNIX_Syslog.cpp' || echo '$(srcdir)/'`Log_Msg_UNIX_Syslog.cpp - -libACE_la-Log_Record.lo: Log_Record.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Log_Record.lo -MD -MP -MF $(DEPDIR)/libACE_la-Log_Record.Tpo -c -o libACE_la-Log_Record.lo `test -f 'Log_Record.cpp' || echo '$(srcdir)/'`Log_Record.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Log_Record.Tpo $(DEPDIR)/libACE_la-Log_Record.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Log_Record.cpp' object='libACE_la-Log_Record.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Log_Record.lo `test -f 'Log_Record.cpp' || echo '$(srcdir)/'`Log_Record.cpp - -libACE_la-Logging_Strategy.lo: Logging_Strategy.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Logging_Strategy.lo -MD -MP -MF $(DEPDIR)/libACE_la-Logging_Strategy.Tpo -c -o libACE_la-Logging_Strategy.lo `test -f 'Logging_Strategy.cpp' || echo '$(srcdir)/'`Logging_Strategy.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Logging_Strategy.Tpo $(DEPDIR)/libACE_la-Logging_Strategy.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Logging_Strategy.cpp' object='libACE_la-Logging_Strategy.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Logging_Strategy.lo `test -f 'Logging_Strategy.cpp' || echo '$(srcdir)/'`Logging_Strategy.cpp - -libACE_la-MEM_Acceptor.lo: MEM_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-MEM_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_la-MEM_Acceptor.Tpo -c -o libACE_la-MEM_Acceptor.lo `test -f 'MEM_Acceptor.cpp' || echo '$(srcdir)/'`MEM_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-MEM_Acceptor.Tpo $(DEPDIR)/libACE_la-MEM_Acceptor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MEM_Acceptor.cpp' object='libACE_la-MEM_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-MEM_Acceptor.lo `test -f 'MEM_Acceptor.cpp' || echo '$(srcdir)/'`MEM_Acceptor.cpp - -libACE_la-MEM_Addr.lo: MEM_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-MEM_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-MEM_Addr.Tpo -c -o libACE_la-MEM_Addr.lo `test -f 'MEM_Addr.cpp' || echo '$(srcdir)/'`MEM_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-MEM_Addr.Tpo $(DEPDIR)/libACE_la-MEM_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MEM_Addr.cpp' object='libACE_la-MEM_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-MEM_Addr.lo `test -f 'MEM_Addr.cpp' || echo '$(srcdir)/'`MEM_Addr.cpp - -libACE_la-MEM_Connector.lo: MEM_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-MEM_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-MEM_Connector.Tpo -c -o libACE_la-MEM_Connector.lo `test -f 'MEM_Connector.cpp' || echo '$(srcdir)/'`MEM_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-MEM_Connector.Tpo $(DEPDIR)/libACE_la-MEM_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MEM_Connector.cpp' object='libACE_la-MEM_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-MEM_Connector.lo `test -f 'MEM_Connector.cpp' || echo '$(srcdir)/'`MEM_Connector.cpp - -libACE_la-MEM_IO.lo: MEM_IO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-MEM_IO.lo -MD -MP -MF $(DEPDIR)/libACE_la-MEM_IO.Tpo -c -o libACE_la-MEM_IO.lo `test -f 'MEM_IO.cpp' || echo '$(srcdir)/'`MEM_IO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-MEM_IO.Tpo $(DEPDIR)/libACE_la-MEM_IO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MEM_IO.cpp' object='libACE_la-MEM_IO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-MEM_IO.lo `test -f 'MEM_IO.cpp' || echo '$(srcdir)/'`MEM_IO.cpp - -libACE_la-MEM_SAP.lo: MEM_SAP.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-MEM_SAP.lo -MD -MP -MF $(DEPDIR)/libACE_la-MEM_SAP.Tpo -c -o libACE_la-MEM_SAP.lo `test -f 'MEM_SAP.cpp' || echo '$(srcdir)/'`MEM_SAP.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-MEM_SAP.Tpo $(DEPDIR)/libACE_la-MEM_SAP.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MEM_SAP.cpp' object='libACE_la-MEM_SAP.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-MEM_SAP.lo `test -f 'MEM_SAP.cpp' || echo '$(srcdir)/'`MEM_SAP.cpp - -libACE_la-MEM_Stream.lo: MEM_Stream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-MEM_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_la-MEM_Stream.Tpo -c -o libACE_la-MEM_Stream.lo `test -f 'MEM_Stream.cpp' || echo '$(srcdir)/'`MEM_Stream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-MEM_Stream.Tpo $(DEPDIR)/libACE_la-MEM_Stream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MEM_Stream.cpp' object='libACE_la-MEM_Stream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-MEM_Stream.lo `test -f 'MEM_Stream.cpp' || echo '$(srcdir)/'`MEM_Stream.cpp - -libACE_la-MMAP_Memory_Pool.lo: MMAP_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-MMAP_Memory_Pool.lo -MD -MP -MF $(DEPDIR)/libACE_la-MMAP_Memory_Pool.Tpo -c -o libACE_la-MMAP_Memory_Pool.lo `test -f 'MMAP_Memory_Pool.cpp' || echo '$(srcdir)/'`MMAP_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-MMAP_Memory_Pool.Tpo $(DEPDIR)/libACE_la-MMAP_Memory_Pool.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='MMAP_Memory_Pool.cpp' object='libACE_la-MMAP_Memory_Pool.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-MMAP_Memory_Pool.lo `test -f 'MMAP_Memory_Pool.cpp' || echo '$(srcdir)/'`MMAP_Memory_Pool.cpp - -libACE_la-Malloc.lo: Malloc.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Malloc.lo -MD -MP -MF $(DEPDIR)/libACE_la-Malloc.Tpo -c -o libACE_la-Malloc.lo `test -f 'Malloc.cpp' || echo '$(srcdir)/'`Malloc.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Malloc.Tpo $(DEPDIR)/libACE_la-Malloc.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Malloc.cpp' object='libACE_la-Malloc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Malloc.lo `test -f 'Malloc.cpp' || echo '$(srcdir)/'`Malloc.cpp - -libACE_la-Malloc_Allocator.lo: Malloc_Allocator.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Malloc_Allocator.lo -MD -MP -MF $(DEPDIR)/libACE_la-Malloc_Allocator.Tpo -c -o libACE_la-Malloc_Allocator.lo `test -f 'Malloc_Allocator.cpp' || echo '$(srcdir)/'`Malloc_Allocator.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Malloc_Allocator.Tpo $(DEPDIR)/libACE_la-Malloc_Allocator.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Malloc_Allocator.cpp' object='libACE_la-Malloc_Allocator.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Malloc_Allocator.lo `test -f 'Malloc_Allocator.cpp' || echo '$(srcdir)/'`Malloc_Allocator.cpp - -libACE_la-Manual_Event.lo: Manual_Event.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Manual_Event.lo -MD -MP -MF $(DEPDIR)/libACE_la-Manual_Event.Tpo -c -o libACE_la-Manual_Event.lo `test -f 'Manual_Event.cpp' || echo '$(srcdir)/'`Manual_Event.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Manual_Event.Tpo $(DEPDIR)/libACE_la-Manual_Event.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Manual_Event.cpp' object='libACE_la-Manual_Event.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Manual_Event.lo `test -f 'Manual_Event.cpp' || echo '$(srcdir)/'`Manual_Event.cpp - -libACE_la-Mem_Map.lo: Mem_Map.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Mem_Map.lo -MD -MP -MF $(DEPDIR)/libACE_la-Mem_Map.Tpo -c -o libACE_la-Mem_Map.lo `test -f 'Mem_Map.cpp' || echo '$(srcdir)/'`Mem_Map.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Mem_Map.Tpo $(DEPDIR)/libACE_la-Mem_Map.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Mem_Map.cpp' object='libACE_la-Mem_Map.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Mem_Map.lo `test -f 'Mem_Map.cpp' || echo '$(srcdir)/'`Mem_Map.cpp - -libACE_la-Message_Block.lo: Message_Block.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Message_Block.lo -MD -MP -MF $(DEPDIR)/libACE_la-Message_Block.Tpo -c -o libACE_la-Message_Block.lo `test -f 'Message_Block.cpp' || echo '$(srcdir)/'`Message_Block.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Message_Block.Tpo $(DEPDIR)/libACE_la-Message_Block.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Message_Block.cpp' object='libACE_la-Message_Block.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Message_Block.lo `test -f 'Message_Block.cpp' || echo '$(srcdir)/'`Message_Block.cpp - -libACE_la-Message_Queue.lo: Message_Queue.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Message_Queue.lo -MD -MP -MF $(DEPDIR)/libACE_la-Message_Queue.Tpo -c -o libACE_la-Message_Queue.lo `test -f 'Message_Queue.cpp' || echo '$(srcdir)/'`Message_Queue.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Message_Queue.Tpo $(DEPDIR)/libACE_la-Message_Queue.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Message_Queue.cpp' object='libACE_la-Message_Queue.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Message_Queue.lo `test -f 'Message_Queue.cpp' || echo '$(srcdir)/'`Message_Queue.cpp - -libACE_la-Message_Queue_NT.lo: Message_Queue_NT.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Message_Queue_NT.lo -MD -MP -MF $(DEPDIR)/libACE_la-Message_Queue_NT.Tpo -c -o libACE_la-Message_Queue_NT.lo `test -f 'Message_Queue_NT.cpp' || echo '$(srcdir)/'`Message_Queue_NT.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Message_Queue_NT.Tpo $(DEPDIR)/libACE_la-Message_Queue_NT.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Message_Queue_NT.cpp' object='libACE_la-Message_Queue_NT.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Message_Queue_NT.lo `test -f 'Message_Queue_NT.cpp' || echo '$(srcdir)/'`Message_Queue_NT.cpp - -libACE_la-Message_Queue_Vx.lo: Message_Queue_Vx.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Message_Queue_Vx.lo -MD -MP -MF $(DEPDIR)/libACE_la-Message_Queue_Vx.Tpo -c -o libACE_la-Message_Queue_Vx.lo `test -f 'Message_Queue_Vx.cpp' || echo '$(srcdir)/'`Message_Queue_Vx.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Message_Queue_Vx.Tpo $(DEPDIR)/libACE_la-Message_Queue_Vx.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Message_Queue_Vx.cpp' object='libACE_la-Message_Queue_Vx.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Message_Queue_Vx.lo `test -f 'Message_Queue_Vx.cpp' || echo '$(srcdir)/'`Message_Queue_Vx.cpp - -libACE_la-Method_Request.lo: Method_Request.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Method_Request.lo -MD -MP -MF $(DEPDIR)/libACE_la-Method_Request.Tpo -c -o libACE_la-Method_Request.lo `test -f 'Method_Request.cpp' || echo '$(srcdir)/'`Method_Request.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Method_Request.Tpo $(DEPDIR)/libACE_la-Method_Request.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Method_Request.cpp' object='libACE_la-Method_Request.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Method_Request.lo `test -f 'Method_Request.cpp' || echo '$(srcdir)/'`Method_Request.cpp - -libACE_la-Monitor_Admin.lo: Monitor_Admin.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Monitor_Admin.lo -MD -MP -MF $(DEPDIR)/libACE_la-Monitor_Admin.Tpo -c -o libACE_la-Monitor_Admin.lo `test -f 'Monitor_Admin.cpp' || echo '$(srcdir)/'`Monitor_Admin.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Monitor_Admin.Tpo $(DEPDIR)/libACE_la-Monitor_Admin.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Admin.cpp' object='libACE_la-Monitor_Admin.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Monitor_Admin.lo `test -f 'Monitor_Admin.cpp' || echo '$(srcdir)/'`Monitor_Admin.cpp - -libACE_la-Monitor_Admin_Manager.lo: Monitor_Admin_Manager.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Monitor_Admin_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_la-Monitor_Admin_Manager.Tpo -c -o libACE_la-Monitor_Admin_Manager.lo `test -f 'Monitor_Admin_Manager.cpp' || echo '$(srcdir)/'`Monitor_Admin_Manager.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Monitor_Admin_Manager.Tpo $(DEPDIR)/libACE_la-Monitor_Admin_Manager.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Admin_Manager.cpp' object='libACE_la-Monitor_Admin_Manager.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Monitor_Admin_Manager.lo `test -f 'Monitor_Admin_Manager.cpp' || echo '$(srcdir)/'`Monitor_Admin_Manager.cpp - -libACE_la-Monitor_Base.lo: Monitor_Base.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Monitor_Base.lo -MD -MP -MF $(DEPDIR)/libACE_la-Monitor_Base.Tpo -c -o libACE_la-Monitor_Base.lo `test -f 'Monitor_Base.cpp' || echo '$(srcdir)/'`Monitor_Base.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Monitor_Base.Tpo $(DEPDIR)/libACE_la-Monitor_Base.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Base.cpp' object='libACE_la-Monitor_Base.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Monitor_Base.lo `test -f 'Monitor_Base.cpp' || echo '$(srcdir)/'`Monitor_Base.cpp - -libACE_la-Monitor_Control_Action.lo: Monitor_Control_Action.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Monitor_Control_Action.lo -MD -MP -MF $(DEPDIR)/libACE_la-Monitor_Control_Action.Tpo -c -o libACE_la-Monitor_Control_Action.lo `test -f 'Monitor_Control_Action.cpp' || echo '$(srcdir)/'`Monitor_Control_Action.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Monitor_Control_Action.Tpo $(DEPDIR)/libACE_la-Monitor_Control_Action.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Control_Action.cpp' object='libACE_la-Monitor_Control_Action.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Monitor_Control_Action.lo `test -f 'Monitor_Control_Action.cpp' || echo '$(srcdir)/'`Monitor_Control_Action.cpp - -libACE_la-Monitor_Control_Types.lo: Monitor_Control_Types.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Monitor_Control_Types.lo -MD -MP -MF $(DEPDIR)/libACE_la-Monitor_Control_Types.Tpo -c -o libACE_la-Monitor_Control_Types.lo `test -f 'Monitor_Control_Types.cpp' || echo '$(srcdir)/'`Monitor_Control_Types.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Monitor_Control_Types.Tpo $(DEPDIR)/libACE_la-Monitor_Control_Types.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Control_Types.cpp' object='libACE_la-Monitor_Control_Types.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Monitor_Control_Types.lo `test -f 'Monitor_Control_Types.cpp' || echo '$(srcdir)/'`Monitor_Control_Types.cpp - -libACE_la-Monitor_Point_Registry.lo: Monitor_Point_Registry.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Monitor_Point_Registry.lo -MD -MP -MF $(DEPDIR)/libACE_la-Monitor_Point_Registry.Tpo -c -o libACE_la-Monitor_Point_Registry.lo `test -f 'Monitor_Point_Registry.cpp' || echo '$(srcdir)/'`Monitor_Point_Registry.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Monitor_Point_Registry.Tpo $(DEPDIR)/libACE_la-Monitor_Point_Registry.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Point_Registry.cpp' object='libACE_la-Monitor_Point_Registry.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Monitor_Point_Registry.lo `test -f 'Monitor_Point_Registry.cpp' || echo '$(srcdir)/'`Monitor_Point_Registry.cpp - -libACE_la-Monitor_Size.lo: Monitor_Size.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Monitor_Size.lo -MD -MP -MF $(DEPDIR)/libACE_la-Monitor_Size.Tpo -c -o libACE_la-Monitor_Size.lo `test -f 'Monitor_Size.cpp' || echo '$(srcdir)/'`Monitor_Size.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Monitor_Size.Tpo $(DEPDIR)/libACE_la-Monitor_Size.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Size.cpp' object='libACE_la-Monitor_Size.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Monitor_Size.lo `test -f 'Monitor_Size.cpp' || echo '$(srcdir)/'`Monitor_Size.cpp - -libACE_la-Msg_WFMO_Reactor.lo: Msg_WFMO_Reactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Msg_WFMO_Reactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-Msg_WFMO_Reactor.Tpo -c -o libACE_la-Msg_WFMO_Reactor.lo `test -f 'Msg_WFMO_Reactor.cpp' || echo '$(srcdir)/'`Msg_WFMO_Reactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Msg_WFMO_Reactor.Tpo $(DEPDIR)/libACE_la-Msg_WFMO_Reactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Msg_WFMO_Reactor.cpp' object='libACE_la-Msg_WFMO_Reactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Msg_WFMO_Reactor.lo `test -f 'Msg_WFMO_Reactor.cpp' || echo '$(srcdir)/'`Msg_WFMO_Reactor.cpp - -libACE_la-Multihomed_INET_Addr.lo: Multihomed_INET_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Multihomed_INET_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-Multihomed_INET_Addr.Tpo -c -o libACE_la-Multihomed_INET_Addr.lo `test -f 'Multihomed_INET_Addr.cpp' || echo '$(srcdir)/'`Multihomed_INET_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Multihomed_INET_Addr.Tpo $(DEPDIR)/libACE_la-Multihomed_INET_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Multihomed_INET_Addr.cpp' object='libACE_la-Multihomed_INET_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Multihomed_INET_Addr.lo `test -f 'Multihomed_INET_Addr.cpp' || echo '$(srcdir)/'`Multihomed_INET_Addr.cpp - -libACE_la-Mutex.lo: Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-Mutex.Tpo -c -o libACE_la-Mutex.lo `test -f 'Mutex.cpp' || echo '$(srcdir)/'`Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Mutex.Tpo $(DEPDIR)/libACE_la-Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Mutex.cpp' object='libACE_la-Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Mutex.lo `test -f 'Mutex.cpp' || echo '$(srcdir)/'`Mutex.cpp - -libACE_la-NT_Service.lo: NT_Service.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-NT_Service.lo -MD -MP -MF $(DEPDIR)/libACE_la-NT_Service.Tpo -c -o libACE_la-NT_Service.lo `test -f 'NT_Service.cpp' || echo '$(srcdir)/'`NT_Service.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-NT_Service.Tpo $(DEPDIR)/libACE_la-NT_Service.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='NT_Service.cpp' object='libACE_la-NT_Service.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-NT_Service.lo `test -f 'NT_Service.cpp' || echo '$(srcdir)/'`NT_Service.cpp - -libACE_la-Name_Proxy.lo: Name_Proxy.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Name_Proxy.lo -MD -MP -MF $(DEPDIR)/libACE_la-Name_Proxy.Tpo -c -o libACE_la-Name_Proxy.lo `test -f 'Name_Proxy.cpp' || echo '$(srcdir)/'`Name_Proxy.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Name_Proxy.Tpo $(DEPDIR)/libACE_la-Name_Proxy.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Name_Proxy.cpp' object='libACE_la-Name_Proxy.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Name_Proxy.lo `test -f 'Name_Proxy.cpp' || echo '$(srcdir)/'`Name_Proxy.cpp - -libACE_la-Name_Request_Reply.lo: Name_Request_Reply.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Name_Request_Reply.lo -MD -MP -MF $(DEPDIR)/libACE_la-Name_Request_Reply.Tpo -c -o libACE_la-Name_Request_Reply.lo `test -f 'Name_Request_Reply.cpp' || echo '$(srcdir)/'`Name_Request_Reply.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Name_Request_Reply.Tpo $(DEPDIR)/libACE_la-Name_Request_Reply.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Name_Request_Reply.cpp' object='libACE_la-Name_Request_Reply.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Name_Request_Reply.lo `test -f 'Name_Request_Reply.cpp' || echo '$(srcdir)/'`Name_Request_Reply.cpp - -libACE_la-Name_Space.lo: Name_Space.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Name_Space.lo -MD -MP -MF $(DEPDIR)/libACE_la-Name_Space.Tpo -c -o libACE_la-Name_Space.lo `test -f 'Name_Space.cpp' || echo '$(srcdir)/'`Name_Space.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Name_Space.Tpo $(DEPDIR)/libACE_la-Name_Space.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Name_Space.cpp' object='libACE_la-Name_Space.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Name_Space.lo `test -f 'Name_Space.cpp' || echo '$(srcdir)/'`Name_Space.cpp - -libACE_la-Naming_Context.lo: Naming_Context.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Naming_Context.lo -MD -MP -MF $(DEPDIR)/libACE_la-Naming_Context.Tpo -c -o libACE_la-Naming_Context.lo `test -f 'Naming_Context.cpp' || echo '$(srcdir)/'`Naming_Context.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Naming_Context.Tpo $(DEPDIR)/libACE_la-Naming_Context.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Naming_Context.cpp' object='libACE_la-Naming_Context.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Naming_Context.lo `test -f 'Naming_Context.cpp' || echo '$(srcdir)/'`Naming_Context.cpp - -libACE_la-Netlink_Addr.lo: Netlink_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Netlink_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-Netlink_Addr.Tpo -c -o libACE_la-Netlink_Addr.lo `test -f 'Netlink_Addr.cpp' || echo '$(srcdir)/'`Netlink_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Netlink_Addr.Tpo $(DEPDIR)/libACE_la-Netlink_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Netlink_Addr.cpp' object='libACE_la-Netlink_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Netlink_Addr.lo `test -f 'Netlink_Addr.cpp' || echo '$(srcdir)/'`Netlink_Addr.cpp - -libACE_la-Notification_Queue.lo: Notification_Queue.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Notification_Queue.lo -MD -MP -MF $(DEPDIR)/libACE_la-Notification_Queue.Tpo -c -o libACE_la-Notification_Queue.lo `test -f 'Notification_Queue.cpp' || echo '$(srcdir)/'`Notification_Queue.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Notification_Queue.Tpo $(DEPDIR)/libACE_la-Notification_Queue.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Notification_Queue.cpp' object='libACE_la-Notification_Queue.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Notification_Queue.lo `test -f 'Notification_Queue.cpp' || echo '$(srcdir)/'`Notification_Queue.cpp - -libACE_la-Notification_Strategy.lo: Notification_Strategy.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Notification_Strategy.lo -MD -MP -MF $(DEPDIR)/libACE_la-Notification_Strategy.Tpo -c -o libACE_la-Notification_Strategy.lo `test -f 'Notification_Strategy.cpp' || echo '$(srcdir)/'`Notification_Strategy.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Notification_Strategy.Tpo $(DEPDIR)/libACE_la-Notification_Strategy.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Notification_Strategy.cpp' object='libACE_la-Notification_Strategy.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Notification_Strategy.lo `test -f 'Notification_Strategy.cpp' || echo '$(srcdir)/'`Notification_Strategy.cpp - -libACE_la-OS_Errno.lo: OS_Errno.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_Errno.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_Errno.Tpo -c -o libACE_la-OS_Errno.lo `test -f 'OS_Errno.cpp' || echo '$(srcdir)/'`OS_Errno.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_Errno.Tpo $(DEPDIR)/libACE_la-OS_Errno.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_Errno.cpp' object='libACE_la-OS_Errno.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_Errno.lo `test -f 'OS_Errno.cpp' || echo '$(srcdir)/'`OS_Errno.cpp - -libACE_la-OS_Log_Msg_Attributes.lo: OS_Log_Msg_Attributes.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_Log_Msg_Attributes.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_Log_Msg_Attributes.Tpo -c -o libACE_la-OS_Log_Msg_Attributes.lo `test -f 'OS_Log_Msg_Attributes.cpp' || echo '$(srcdir)/'`OS_Log_Msg_Attributes.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_Log_Msg_Attributes.Tpo $(DEPDIR)/libACE_la-OS_Log_Msg_Attributes.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_Log_Msg_Attributes.cpp' object='libACE_la-OS_Log_Msg_Attributes.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_Log_Msg_Attributes.lo `test -f 'OS_Log_Msg_Attributes.cpp' || echo '$(srcdir)/'`OS_Log_Msg_Attributes.cpp - -libACE_la-OS_NS_Thread.lo: OS_NS_Thread.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_Thread.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_Thread.Tpo -c -o libACE_la-OS_NS_Thread.lo `test -f 'OS_NS_Thread.cpp' || echo '$(srcdir)/'`OS_NS_Thread.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_Thread.Tpo $(DEPDIR)/libACE_la-OS_NS_Thread.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_Thread.cpp' object='libACE_la-OS_NS_Thread.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_Thread.lo `test -f 'OS_NS_Thread.cpp' || echo '$(srcdir)/'`OS_NS_Thread.cpp - -libACE_la-OS_NS_arpa_inet.lo: OS_NS_arpa_inet.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_arpa_inet.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_arpa_inet.Tpo -c -o libACE_la-OS_NS_arpa_inet.lo `test -f 'OS_NS_arpa_inet.cpp' || echo '$(srcdir)/'`OS_NS_arpa_inet.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_arpa_inet.Tpo $(DEPDIR)/libACE_la-OS_NS_arpa_inet.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_arpa_inet.cpp' object='libACE_la-OS_NS_arpa_inet.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_arpa_inet.lo `test -f 'OS_NS_arpa_inet.cpp' || echo '$(srcdir)/'`OS_NS_arpa_inet.cpp - -libACE_la-OS_NS_ctype.lo: OS_NS_ctype.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_ctype.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_ctype.Tpo -c -o libACE_la-OS_NS_ctype.lo `test -f 'OS_NS_ctype.cpp' || echo '$(srcdir)/'`OS_NS_ctype.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_ctype.Tpo $(DEPDIR)/libACE_la-OS_NS_ctype.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_ctype.cpp' object='libACE_la-OS_NS_ctype.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_ctype.lo `test -f 'OS_NS_ctype.cpp' || echo '$(srcdir)/'`OS_NS_ctype.cpp - -libACE_la-OS_NS_dirent.lo: OS_NS_dirent.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_dirent.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_dirent.Tpo -c -o libACE_la-OS_NS_dirent.lo `test -f 'OS_NS_dirent.cpp' || echo '$(srcdir)/'`OS_NS_dirent.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_dirent.Tpo $(DEPDIR)/libACE_la-OS_NS_dirent.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_dirent.cpp' object='libACE_la-OS_NS_dirent.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_dirent.lo `test -f 'OS_NS_dirent.cpp' || echo '$(srcdir)/'`OS_NS_dirent.cpp - -libACE_la-OS_NS_dlfcn.lo: OS_NS_dlfcn.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_dlfcn.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_dlfcn.Tpo -c -o libACE_la-OS_NS_dlfcn.lo `test -f 'OS_NS_dlfcn.cpp' || echo '$(srcdir)/'`OS_NS_dlfcn.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_dlfcn.Tpo $(DEPDIR)/libACE_la-OS_NS_dlfcn.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_dlfcn.cpp' object='libACE_la-OS_NS_dlfcn.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_dlfcn.lo `test -f 'OS_NS_dlfcn.cpp' || echo '$(srcdir)/'`OS_NS_dlfcn.cpp - -libACE_la-OS_NS_errno.lo: OS_NS_errno.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_errno.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_errno.Tpo -c -o libACE_la-OS_NS_errno.lo `test -f 'OS_NS_errno.cpp' || echo '$(srcdir)/'`OS_NS_errno.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_errno.Tpo $(DEPDIR)/libACE_la-OS_NS_errno.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_errno.cpp' object='libACE_la-OS_NS_errno.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_errno.lo `test -f 'OS_NS_errno.cpp' || echo '$(srcdir)/'`OS_NS_errno.cpp - -libACE_la-OS_NS_fcntl.lo: OS_NS_fcntl.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_fcntl.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_fcntl.Tpo -c -o libACE_la-OS_NS_fcntl.lo `test -f 'OS_NS_fcntl.cpp' || echo '$(srcdir)/'`OS_NS_fcntl.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_fcntl.Tpo $(DEPDIR)/libACE_la-OS_NS_fcntl.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_fcntl.cpp' object='libACE_la-OS_NS_fcntl.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_fcntl.lo `test -f 'OS_NS_fcntl.cpp' || echo '$(srcdir)/'`OS_NS_fcntl.cpp - -libACE_la-OS_NS_math.lo: OS_NS_math.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_math.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_math.Tpo -c -o libACE_la-OS_NS_math.lo `test -f 'OS_NS_math.cpp' || echo '$(srcdir)/'`OS_NS_math.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_math.Tpo $(DEPDIR)/libACE_la-OS_NS_math.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_math.cpp' object='libACE_la-OS_NS_math.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_math.lo `test -f 'OS_NS_math.cpp' || echo '$(srcdir)/'`OS_NS_math.cpp - -libACE_la-OS_NS_netdb.lo: OS_NS_netdb.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_netdb.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_netdb.Tpo -c -o libACE_la-OS_NS_netdb.lo `test -f 'OS_NS_netdb.cpp' || echo '$(srcdir)/'`OS_NS_netdb.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_netdb.Tpo $(DEPDIR)/libACE_la-OS_NS_netdb.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_netdb.cpp' object='libACE_la-OS_NS_netdb.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_netdb.lo `test -f 'OS_NS_netdb.cpp' || echo '$(srcdir)/'`OS_NS_netdb.cpp - -libACE_la-OS_NS_poll.lo: OS_NS_poll.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_poll.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_poll.Tpo -c -o libACE_la-OS_NS_poll.lo `test -f 'OS_NS_poll.cpp' || echo '$(srcdir)/'`OS_NS_poll.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_poll.Tpo $(DEPDIR)/libACE_la-OS_NS_poll.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_poll.cpp' object='libACE_la-OS_NS_poll.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_poll.lo `test -f 'OS_NS_poll.cpp' || echo '$(srcdir)/'`OS_NS_poll.cpp - -libACE_la-OS_NS_pwd.lo: OS_NS_pwd.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_pwd.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_pwd.Tpo -c -o libACE_la-OS_NS_pwd.lo `test -f 'OS_NS_pwd.cpp' || echo '$(srcdir)/'`OS_NS_pwd.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_pwd.Tpo $(DEPDIR)/libACE_la-OS_NS_pwd.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_pwd.cpp' object='libACE_la-OS_NS_pwd.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_pwd.lo `test -f 'OS_NS_pwd.cpp' || echo '$(srcdir)/'`OS_NS_pwd.cpp - -libACE_la-OS_NS_regex.lo: OS_NS_regex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_regex.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_regex.Tpo -c -o libACE_la-OS_NS_regex.lo `test -f 'OS_NS_regex.cpp' || echo '$(srcdir)/'`OS_NS_regex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_regex.Tpo $(DEPDIR)/libACE_la-OS_NS_regex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_regex.cpp' object='libACE_la-OS_NS_regex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_regex.lo `test -f 'OS_NS_regex.cpp' || echo '$(srcdir)/'`OS_NS_regex.cpp - -libACE_la-OS_NS_signal.lo: OS_NS_signal.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_signal.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_signal.Tpo -c -o libACE_la-OS_NS_signal.lo `test -f 'OS_NS_signal.cpp' || echo '$(srcdir)/'`OS_NS_signal.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_signal.Tpo $(DEPDIR)/libACE_la-OS_NS_signal.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_signal.cpp' object='libACE_la-OS_NS_signal.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_signal.lo `test -f 'OS_NS_signal.cpp' || echo '$(srcdir)/'`OS_NS_signal.cpp - -libACE_la-OS_NS_stdio.lo: OS_NS_stdio.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_stdio.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_stdio.Tpo -c -o libACE_la-OS_NS_stdio.lo `test -f 'OS_NS_stdio.cpp' || echo '$(srcdir)/'`OS_NS_stdio.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_stdio.Tpo $(DEPDIR)/libACE_la-OS_NS_stdio.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_stdio.cpp' object='libACE_la-OS_NS_stdio.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_stdio.lo `test -f 'OS_NS_stdio.cpp' || echo '$(srcdir)/'`OS_NS_stdio.cpp - -libACE_la-OS_NS_stdlib.lo: OS_NS_stdlib.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_stdlib.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_stdlib.Tpo -c -o libACE_la-OS_NS_stdlib.lo `test -f 'OS_NS_stdlib.cpp' || echo '$(srcdir)/'`OS_NS_stdlib.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_stdlib.Tpo $(DEPDIR)/libACE_la-OS_NS_stdlib.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_stdlib.cpp' object='libACE_la-OS_NS_stdlib.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_stdlib.lo `test -f 'OS_NS_stdlib.cpp' || echo '$(srcdir)/'`OS_NS_stdlib.cpp - -libACE_la-OS_NS_string.lo: OS_NS_string.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_string.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_string.Tpo -c -o libACE_la-OS_NS_string.lo `test -f 'OS_NS_string.cpp' || echo '$(srcdir)/'`OS_NS_string.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_string.Tpo $(DEPDIR)/libACE_la-OS_NS_string.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_string.cpp' object='libACE_la-OS_NS_string.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_string.lo `test -f 'OS_NS_string.cpp' || echo '$(srcdir)/'`OS_NS_string.cpp - -libACE_la-OS_NS_strings.lo: OS_NS_strings.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_strings.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_strings.Tpo -c -o libACE_la-OS_NS_strings.lo `test -f 'OS_NS_strings.cpp' || echo '$(srcdir)/'`OS_NS_strings.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_strings.Tpo $(DEPDIR)/libACE_la-OS_NS_strings.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_strings.cpp' object='libACE_la-OS_NS_strings.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_strings.lo `test -f 'OS_NS_strings.cpp' || echo '$(srcdir)/'`OS_NS_strings.cpp - -libACE_la-OS_NS_stropts.lo: OS_NS_stropts.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_stropts.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_stropts.Tpo -c -o libACE_la-OS_NS_stropts.lo `test -f 'OS_NS_stropts.cpp' || echo '$(srcdir)/'`OS_NS_stropts.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_stropts.Tpo $(DEPDIR)/libACE_la-OS_NS_stropts.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_stropts.cpp' object='libACE_la-OS_NS_stropts.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_stropts.lo `test -f 'OS_NS_stropts.cpp' || echo '$(srcdir)/'`OS_NS_stropts.cpp - -libACE_la-OS_NS_sys_mman.lo: OS_NS_sys_mman.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_mman.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_mman.Tpo -c -o libACE_la-OS_NS_sys_mman.lo `test -f 'OS_NS_sys_mman.cpp' || echo '$(srcdir)/'`OS_NS_sys_mman.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_mman.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_mman.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_mman.cpp' object='libACE_la-OS_NS_sys_mman.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_mman.lo `test -f 'OS_NS_sys_mman.cpp' || echo '$(srcdir)/'`OS_NS_sys_mman.cpp - -libACE_la-OS_NS_sys_msg.lo: OS_NS_sys_msg.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_msg.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_msg.Tpo -c -o libACE_la-OS_NS_sys_msg.lo `test -f 'OS_NS_sys_msg.cpp' || echo '$(srcdir)/'`OS_NS_sys_msg.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_msg.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_msg.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_msg.cpp' object='libACE_la-OS_NS_sys_msg.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_msg.lo `test -f 'OS_NS_sys_msg.cpp' || echo '$(srcdir)/'`OS_NS_sys_msg.cpp - -libACE_la-OS_NS_sys_resource.lo: OS_NS_sys_resource.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_resource.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_resource.Tpo -c -o libACE_la-OS_NS_sys_resource.lo `test -f 'OS_NS_sys_resource.cpp' || echo '$(srcdir)/'`OS_NS_sys_resource.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_resource.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_resource.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_resource.cpp' object='libACE_la-OS_NS_sys_resource.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_resource.lo `test -f 'OS_NS_sys_resource.cpp' || echo '$(srcdir)/'`OS_NS_sys_resource.cpp - -libACE_la-OS_NS_sys_select.lo: OS_NS_sys_select.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_select.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_select.Tpo -c -o libACE_la-OS_NS_sys_select.lo `test -f 'OS_NS_sys_select.cpp' || echo '$(srcdir)/'`OS_NS_sys_select.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_select.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_select.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_select.cpp' object='libACE_la-OS_NS_sys_select.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_select.lo `test -f 'OS_NS_sys_select.cpp' || echo '$(srcdir)/'`OS_NS_sys_select.cpp - -libACE_la-OS_NS_sys_sendfile.lo: OS_NS_sys_sendfile.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_sendfile.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_sendfile.Tpo -c -o libACE_la-OS_NS_sys_sendfile.lo `test -f 'OS_NS_sys_sendfile.cpp' || echo '$(srcdir)/'`OS_NS_sys_sendfile.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_sendfile.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_sendfile.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_sendfile.cpp' object='libACE_la-OS_NS_sys_sendfile.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_sendfile.lo `test -f 'OS_NS_sys_sendfile.cpp' || echo '$(srcdir)/'`OS_NS_sys_sendfile.cpp - -libACE_la-OS_NS_sys_shm.lo: OS_NS_sys_shm.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_shm.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_shm.Tpo -c -o libACE_la-OS_NS_sys_shm.lo `test -f 'OS_NS_sys_shm.cpp' || echo '$(srcdir)/'`OS_NS_sys_shm.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_shm.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_shm.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_shm.cpp' object='libACE_la-OS_NS_sys_shm.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_shm.lo `test -f 'OS_NS_sys_shm.cpp' || echo '$(srcdir)/'`OS_NS_sys_shm.cpp - -libACE_la-OS_NS_sys_socket.lo: OS_NS_sys_socket.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_socket.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_socket.Tpo -c -o libACE_la-OS_NS_sys_socket.lo `test -f 'OS_NS_sys_socket.cpp' || echo '$(srcdir)/'`OS_NS_sys_socket.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_socket.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_socket.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_socket.cpp' object='libACE_la-OS_NS_sys_socket.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_socket.lo `test -f 'OS_NS_sys_socket.cpp' || echo '$(srcdir)/'`OS_NS_sys_socket.cpp - -libACE_la-OS_NS_sys_stat.lo: OS_NS_sys_stat.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_stat.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_stat.Tpo -c -o libACE_la-OS_NS_sys_stat.lo `test -f 'OS_NS_sys_stat.cpp' || echo '$(srcdir)/'`OS_NS_sys_stat.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_stat.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_stat.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_stat.cpp' object='libACE_la-OS_NS_sys_stat.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_stat.lo `test -f 'OS_NS_sys_stat.cpp' || echo '$(srcdir)/'`OS_NS_sys_stat.cpp - -libACE_la-OS_NS_sys_time.lo: OS_NS_sys_time.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_time.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_time.Tpo -c -o libACE_la-OS_NS_sys_time.lo `test -f 'OS_NS_sys_time.cpp' || echo '$(srcdir)/'`OS_NS_sys_time.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_time.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_time.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_time.cpp' object='libACE_la-OS_NS_sys_time.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_time.lo `test -f 'OS_NS_sys_time.cpp' || echo '$(srcdir)/'`OS_NS_sys_time.cpp - -libACE_la-OS_NS_sys_uio.lo: OS_NS_sys_uio.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_uio.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_uio.Tpo -c -o libACE_la-OS_NS_sys_uio.lo `test -f 'OS_NS_sys_uio.cpp' || echo '$(srcdir)/'`OS_NS_sys_uio.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_uio.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_uio.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_uio.cpp' object='libACE_la-OS_NS_sys_uio.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_uio.lo `test -f 'OS_NS_sys_uio.cpp' || echo '$(srcdir)/'`OS_NS_sys_uio.cpp - -libACE_la-OS_NS_sys_utsname.lo: OS_NS_sys_utsname.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_utsname.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_utsname.Tpo -c -o libACE_la-OS_NS_sys_utsname.lo `test -f 'OS_NS_sys_utsname.cpp' || echo '$(srcdir)/'`OS_NS_sys_utsname.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_utsname.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_utsname.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_utsname.cpp' object='libACE_la-OS_NS_sys_utsname.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_utsname.lo `test -f 'OS_NS_sys_utsname.cpp' || echo '$(srcdir)/'`OS_NS_sys_utsname.cpp - -libACE_la-OS_NS_sys_wait.lo: OS_NS_sys_wait.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_sys_wait.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_sys_wait.Tpo -c -o libACE_la-OS_NS_sys_wait.lo `test -f 'OS_NS_sys_wait.cpp' || echo '$(srcdir)/'`OS_NS_sys_wait.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_sys_wait.Tpo $(DEPDIR)/libACE_la-OS_NS_sys_wait.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_sys_wait.cpp' object='libACE_la-OS_NS_sys_wait.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_sys_wait.lo `test -f 'OS_NS_sys_wait.cpp' || echo '$(srcdir)/'`OS_NS_sys_wait.cpp - -libACE_la-OS_NS_time.lo: OS_NS_time.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_time.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_time.Tpo -c -o libACE_la-OS_NS_time.lo `test -f 'OS_NS_time.cpp' || echo '$(srcdir)/'`OS_NS_time.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_time.Tpo $(DEPDIR)/libACE_la-OS_NS_time.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_time.cpp' object='libACE_la-OS_NS_time.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_time.lo `test -f 'OS_NS_time.cpp' || echo '$(srcdir)/'`OS_NS_time.cpp - -libACE_la-OS_NS_unistd.lo: OS_NS_unistd.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_unistd.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_unistd.Tpo -c -o libACE_la-OS_NS_unistd.lo `test -f 'OS_NS_unistd.cpp' || echo '$(srcdir)/'`OS_NS_unistd.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_unistd.Tpo $(DEPDIR)/libACE_la-OS_NS_unistd.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_unistd.cpp' object='libACE_la-OS_NS_unistd.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_unistd.lo `test -f 'OS_NS_unistd.cpp' || echo '$(srcdir)/'`OS_NS_unistd.cpp - -libACE_la-OS_NS_wchar.lo: OS_NS_wchar.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_wchar.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_wchar.Tpo -c -o libACE_la-OS_NS_wchar.lo `test -f 'OS_NS_wchar.cpp' || echo '$(srcdir)/'`OS_NS_wchar.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_wchar.Tpo $(DEPDIR)/libACE_la-OS_NS_wchar.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_wchar.cpp' object='libACE_la-OS_NS_wchar.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_wchar.lo `test -f 'OS_NS_wchar.cpp' || echo '$(srcdir)/'`OS_NS_wchar.cpp - -libACE_la-OS_NS_wctype.lo: OS_NS_wctype.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_NS_wctype.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_NS_wctype.Tpo -c -o libACE_la-OS_NS_wctype.lo `test -f 'OS_NS_wctype.cpp' || echo '$(srcdir)/'`OS_NS_wctype.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_NS_wctype.Tpo $(DEPDIR)/libACE_la-OS_NS_wctype.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_NS_wctype.cpp' object='libACE_la-OS_NS_wctype.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_NS_wctype.lo `test -f 'OS_NS_wctype.cpp' || echo '$(srcdir)/'`OS_NS_wctype.cpp - -libACE_la-OS_QoS.lo: OS_QoS.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_QoS.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_QoS.Tpo -c -o libACE_la-OS_QoS.lo `test -f 'OS_QoS.cpp' || echo '$(srcdir)/'`OS_QoS.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_QoS.Tpo $(DEPDIR)/libACE_la-OS_QoS.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_QoS.cpp' object='libACE_la-OS_QoS.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_QoS.lo `test -f 'OS_QoS.cpp' || echo '$(srcdir)/'`OS_QoS.cpp - -libACE_la-OS_TLI.lo: OS_TLI.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_TLI.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_TLI.Tpo -c -o libACE_la-OS_TLI.lo `test -f 'OS_TLI.cpp' || echo '$(srcdir)/'`OS_TLI.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_TLI.Tpo $(DEPDIR)/libACE_la-OS_TLI.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_TLI.cpp' object='libACE_la-OS_TLI.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_TLI.lo `test -f 'OS_TLI.cpp' || echo '$(srcdir)/'`OS_TLI.cpp - -libACE_la-OS_Thread_Adapter.lo: OS_Thread_Adapter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_Thread_Adapter.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_Thread_Adapter.Tpo -c -o libACE_la-OS_Thread_Adapter.lo `test -f 'OS_Thread_Adapter.cpp' || echo '$(srcdir)/'`OS_Thread_Adapter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_Thread_Adapter.Tpo $(DEPDIR)/libACE_la-OS_Thread_Adapter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_Thread_Adapter.cpp' object='libACE_la-OS_Thread_Adapter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_Thread_Adapter.lo `test -f 'OS_Thread_Adapter.cpp' || echo '$(srcdir)/'`OS_Thread_Adapter.cpp - -libACE_la-OS_main.lo: OS_main.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-OS_main.lo -MD -MP -MF $(DEPDIR)/libACE_la-OS_main.Tpo -c -o libACE_la-OS_main.lo `test -f 'OS_main.cpp' || echo '$(srcdir)/'`OS_main.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-OS_main.Tpo $(DEPDIR)/libACE_la-OS_main.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='OS_main.cpp' object='libACE_la-OS_main.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-OS_main.lo `test -f 'OS_main.cpp' || echo '$(srcdir)/'`OS_main.cpp - -libACE_la-Obchunk.lo: Obchunk.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Obchunk.lo -MD -MP -MF $(DEPDIR)/libACE_la-Obchunk.Tpo -c -o libACE_la-Obchunk.lo `test -f 'Obchunk.cpp' || echo '$(srcdir)/'`Obchunk.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Obchunk.Tpo $(DEPDIR)/libACE_la-Obchunk.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Obchunk.cpp' object='libACE_la-Obchunk.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Obchunk.lo `test -f 'Obchunk.cpp' || echo '$(srcdir)/'`Obchunk.cpp - -libACE_la-Object_Manager.lo: Object_Manager.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Object_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_la-Object_Manager.Tpo -c -o libACE_la-Object_Manager.lo `test -f 'Object_Manager.cpp' || echo '$(srcdir)/'`Object_Manager.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Object_Manager.Tpo $(DEPDIR)/libACE_la-Object_Manager.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Object_Manager.cpp' object='libACE_la-Object_Manager.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Object_Manager.lo `test -f 'Object_Manager.cpp' || echo '$(srcdir)/'`Object_Manager.cpp - -libACE_la-Object_Manager_Base.lo: Object_Manager_Base.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Object_Manager_Base.lo -MD -MP -MF $(DEPDIR)/libACE_la-Object_Manager_Base.Tpo -c -o libACE_la-Object_Manager_Base.lo `test -f 'Object_Manager_Base.cpp' || echo '$(srcdir)/'`Object_Manager_Base.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Object_Manager_Base.Tpo $(DEPDIR)/libACE_la-Object_Manager_Base.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Object_Manager_Base.cpp' object='libACE_la-Object_Manager_Base.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Object_Manager_Base.lo `test -f 'Object_Manager_Base.cpp' || echo '$(srcdir)/'`Object_Manager_Base.cpp - -libACE_la-PI_Malloc.lo: PI_Malloc.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-PI_Malloc.lo -MD -MP -MF $(DEPDIR)/libACE_la-PI_Malloc.Tpo -c -o libACE_la-PI_Malloc.lo `test -f 'PI_Malloc.cpp' || echo '$(srcdir)/'`PI_Malloc.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-PI_Malloc.Tpo $(DEPDIR)/libACE_la-PI_Malloc.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='PI_Malloc.cpp' object='libACE_la-PI_Malloc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-PI_Malloc.lo `test -f 'PI_Malloc.cpp' || echo '$(srcdir)/'`PI_Malloc.cpp - -libACE_la-POSIX_Asynch_IO.lo: POSIX_Asynch_IO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-POSIX_Asynch_IO.lo -MD -MP -MF $(DEPDIR)/libACE_la-POSIX_Asynch_IO.Tpo -c -o libACE_la-POSIX_Asynch_IO.lo `test -f 'POSIX_Asynch_IO.cpp' || echo '$(srcdir)/'`POSIX_Asynch_IO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-POSIX_Asynch_IO.Tpo $(DEPDIR)/libACE_la-POSIX_Asynch_IO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='POSIX_Asynch_IO.cpp' object='libACE_la-POSIX_Asynch_IO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-POSIX_Asynch_IO.lo `test -f 'POSIX_Asynch_IO.cpp' || echo '$(srcdir)/'`POSIX_Asynch_IO.cpp - -libACE_la-POSIX_CB_Proactor.lo: POSIX_CB_Proactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-POSIX_CB_Proactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-POSIX_CB_Proactor.Tpo -c -o libACE_la-POSIX_CB_Proactor.lo `test -f 'POSIX_CB_Proactor.cpp' || echo '$(srcdir)/'`POSIX_CB_Proactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-POSIX_CB_Proactor.Tpo $(DEPDIR)/libACE_la-POSIX_CB_Proactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='POSIX_CB_Proactor.cpp' object='libACE_la-POSIX_CB_Proactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-POSIX_CB_Proactor.lo `test -f 'POSIX_CB_Proactor.cpp' || echo '$(srcdir)/'`POSIX_CB_Proactor.cpp - -libACE_la-POSIX_Proactor.lo: POSIX_Proactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-POSIX_Proactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-POSIX_Proactor.Tpo -c -o libACE_la-POSIX_Proactor.lo `test -f 'POSIX_Proactor.cpp' || echo '$(srcdir)/'`POSIX_Proactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-POSIX_Proactor.Tpo $(DEPDIR)/libACE_la-POSIX_Proactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='POSIX_Proactor.cpp' object='libACE_la-POSIX_Proactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-POSIX_Proactor.lo `test -f 'POSIX_Proactor.cpp' || echo '$(srcdir)/'`POSIX_Proactor.cpp - -libACE_la-Pagefile_Memory_Pool.lo: Pagefile_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Pagefile_Memory_Pool.lo -MD -MP -MF $(DEPDIR)/libACE_la-Pagefile_Memory_Pool.Tpo -c -o libACE_la-Pagefile_Memory_Pool.lo `test -f 'Pagefile_Memory_Pool.cpp' || echo '$(srcdir)/'`Pagefile_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Pagefile_Memory_Pool.Tpo $(DEPDIR)/libACE_la-Pagefile_Memory_Pool.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Pagefile_Memory_Pool.cpp' object='libACE_la-Pagefile_Memory_Pool.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Pagefile_Memory_Pool.lo `test -f 'Pagefile_Memory_Pool.cpp' || echo '$(srcdir)/'`Pagefile_Memory_Pool.cpp - -libACE_la-Parse_Node.lo: Parse_Node.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Parse_Node.lo -MD -MP -MF $(DEPDIR)/libACE_la-Parse_Node.Tpo -c -o libACE_la-Parse_Node.lo `test -f 'Parse_Node.cpp' || echo '$(srcdir)/'`Parse_Node.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Parse_Node.Tpo $(DEPDIR)/libACE_la-Parse_Node.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Parse_Node.cpp' object='libACE_la-Parse_Node.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Parse_Node.lo `test -f 'Parse_Node.cpp' || echo '$(srcdir)/'`Parse_Node.cpp - -libACE_la-Ping_Socket.lo: Ping_Socket.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Ping_Socket.lo -MD -MP -MF $(DEPDIR)/libACE_la-Ping_Socket.Tpo -c -o libACE_la-Ping_Socket.lo `test -f 'Ping_Socket.cpp' || echo '$(srcdir)/'`Ping_Socket.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Ping_Socket.Tpo $(DEPDIR)/libACE_la-Ping_Socket.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Ping_Socket.cpp' object='libACE_la-Ping_Socket.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Ping_Socket.lo `test -f 'Ping_Socket.cpp' || echo '$(srcdir)/'`Ping_Socket.cpp - -libACE_la-Pipe.lo: Pipe.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Pipe.lo -MD -MP -MF $(DEPDIR)/libACE_la-Pipe.Tpo -c -o libACE_la-Pipe.lo `test -f 'Pipe.cpp' || echo '$(srcdir)/'`Pipe.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Pipe.Tpo $(DEPDIR)/libACE_la-Pipe.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Pipe.cpp' object='libACE_la-Pipe.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Pipe.lo `test -f 'Pipe.cpp' || echo '$(srcdir)/'`Pipe.cpp - -libACE_la-Priority_Reactor.lo: Priority_Reactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Priority_Reactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-Priority_Reactor.Tpo -c -o libACE_la-Priority_Reactor.lo `test -f 'Priority_Reactor.cpp' || echo '$(srcdir)/'`Priority_Reactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Priority_Reactor.Tpo $(DEPDIR)/libACE_la-Priority_Reactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Priority_Reactor.cpp' object='libACE_la-Priority_Reactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Priority_Reactor.lo `test -f 'Priority_Reactor.cpp' || echo '$(srcdir)/'`Priority_Reactor.cpp - -libACE_la-Proactor.lo: Proactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Proactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-Proactor.Tpo -c -o libACE_la-Proactor.lo `test -f 'Proactor.cpp' || echo '$(srcdir)/'`Proactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Proactor.Tpo $(DEPDIR)/libACE_la-Proactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Proactor.cpp' object='libACE_la-Proactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Proactor.lo `test -f 'Proactor.cpp' || echo '$(srcdir)/'`Proactor.cpp - -libACE_la-Proactor_Impl.lo: Proactor_Impl.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Proactor_Impl.lo -MD -MP -MF $(DEPDIR)/libACE_la-Proactor_Impl.Tpo -c -o libACE_la-Proactor_Impl.lo `test -f 'Proactor_Impl.cpp' || echo '$(srcdir)/'`Proactor_Impl.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Proactor_Impl.Tpo $(DEPDIR)/libACE_la-Proactor_Impl.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Proactor_Impl.cpp' object='libACE_la-Proactor_Impl.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Proactor_Impl.lo `test -f 'Proactor_Impl.cpp' || echo '$(srcdir)/'`Proactor_Impl.cpp - -libACE_la-Process.lo: Process.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Process.lo -MD -MP -MF $(DEPDIR)/libACE_la-Process.Tpo -c -o libACE_la-Process.lo `test -f 'Process.cpp' || echo '$(srcdir)/'`Process.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Process.Tpo $(DEPDIR)/libACE_la-Process.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Process.cpp' object='libACE_la-Process.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Process.lo `test -f 'Process.cpp' || echo '$(srcdir)/'`Process.cpp - -libACE_la-Process_Manager.lo: Process_Manager.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Process_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_la-Process_Manager.Tpo -c -o libACE_la-Process_Manager.lo `test -f 'Process_Manager.cpp' || echo '$(srcdir)/'`Process_Manager.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Process_Manager.Tpo $(DEPDIR)/libACE_la-Process_Manager.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Process_Manager.cpp' object='libACE_la-Process_Manager.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Process_Manager.lo `test -f 'Process_Manager.cpp' || echo '$(srcdir)/'`Process_Manager.cpp - -libACE_la-Process_Mutex.lo: Process_Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Process_Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-Process_Mutex.Tpo -c -o libACE_la-Process_Mutex.lo `test -f 'Process_Mutex.cpp' || echo '$(srcdir)/'`Process_Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Process_Mutex.Tpo $(DEPDIR)/libACE_la-Process_Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Process_Mutex.cpp' object='libACE_la-Process_Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Process_Mutex.lo `test -f 'Process_Mutex.cpp' || echo '$(srcdir)/'`Process_Mutex.cpp - -libACE_la-Process_Semaphore.lo: Process_Semaphore.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Process_Semaphore.lo -MD -MP -MF $(DEPDIR)/libACE_la-Process_Semaphore.Tpo -c -o libACE_la-Process_Semaphore.lo `test -f 'Process_Semaphore.cpp' || echo '$(srcdir)/'`Process_Semaphore.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Process_Semaphore.Tpo $(DEPDIR)/libACE_la-Process_Semaphore.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Process_Semaphore.cpp' object='libACE_la-Process_Semaphore.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Process_Semaphore.lo `test -f 'Process_Semaphore.cpp' || echo '$(srcdir)/'`Process_Semaphore.cpp - -libACE_la-Profile_Timer.lo: Profile_Timer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Profile_Timer.lo -MD -MP -MF $(DEPDIR)/libACE_la-Profile_Timer.Tpo -c -o libACE_la-Profile_Timer.lo `test -f 'Profile_Timer.cpp' || echo '$(srcdir)/'`Profile_Timer.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Profile_Timer.Tpo $(DEPDIR)/libACE_la-Profile_Timer.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Profile_Timer.cpp' object='libACE_la-Profile_Timer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Profile_Timer.lo `test -f 'Profile_Timer.cpp' || echo '$(srcdir)/'`Profile_Timer.cpp - -libACE_la-RW_Mutex.lo: RW_Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-RW_Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-RW_Mutex.Tpo -c -o libACE_la-RW_Mutex.lo `test -f 'RW_Mutex.cpp' || echo '$(srcdir)/'`RW_Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-RW_Mutex.Tpo $(DEPDIR)/libACE_la-RW_Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='RW_Mutex.cpp' object='libACE_la-RW_Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-RW_Mutex.lo `test -f 'RW_Mutex.cpp' || echo '$(srcdir)/'`RW_Mutex.cpp - -libACE_la-RW_Process_Mutex.lo: RW_Process_Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-RW_Process_Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-RW_Process_Mutex.Tpo -c -o libACE_la-RW_Process_Mutex.lo `test -f 'RW_Process_Mutex.cpp' || echo '$(srcdir)/'`RW_Process_Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-RW_Process_Mutex.Tpo $(DEPDIR)/libACE_la-RW_Process_Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='RW_Process_Mutex.cpp' object='libACE_la-RW_Process_Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-RW_Process_Mutex.lo `test -f 'RW_Process_Mutex.cpp' || echo '$(srcdir)/'`RW_Process_Mutex.cpp - -libACE_la-RW_Thread_Mutex.lo: RW_Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-RW_Thread_Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-RW_Thread_Mutex.Tpo -c -o libACE_la-RW_Thread_Mutex.lo `test -f 'RW_Thread_Mutex.cpp' || echo '$(srcdir)/'`RW_Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-RW_Thread_Mutex.Tpo $(DEPDIR)/libACE_la-RW_Thread_Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='RW_Thread_Mutex.cpp' object='libACE_la-RW_Thread_Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-RW_Thread_Mutex.lo `test -f 'RW_Thread_Mutex.cpp' || echo '$(srcdir)/'`RW_Thread_Mutex.cpp - -libACE_la-Reactor.lo: Reactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Reactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-Reactor.Tpo -c -o libACE_la-Reactor.lo `test -f 'Reactor.cpp' || echo '$(srcdir)/'`Reactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Reactor.Tpo $(DEPDIR)/libACE_la-Reactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Reactor.cpp' object='libACE_la-Reactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Reactor.lo `test -f 'Reactor.cpp' || echo '$(srcdir)/'`Reactor.cpp - -libACE_la-Reactor_Impl.lo: Reactor_Impl.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Reactor_Impl.lo -MD -MP -MF $(DEPDIR)/libACE_la-Reactor_Impl.Tpo -c -o libACE_la-Reactor_Impl.lo `test -f 'Reactor_Impl.cpp' || echo '$(srcdir)/'`Reactor_Impl.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Reactor_Impl.Tpo $(DEPDIR)/libACE_la-Reactor_Impl.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Reactor_Impl.cpp' object='libACE_la-Reactor_Impl.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Reactor_Impl.lo `test -f 'Reactor_Impl.cpp' || echo '$(srcdir)/'`Reactor_Impl.cpp - -libACE_la-Reactor_Notification_Strategy.lo: Reactor_Notification_Strategy.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Reactor_Notification_Strategy.lo -MD -MP -MF $(DEPDIR)/libACE_la-Reactor_Notification_Strategy.Tpo -c -o libACE_la-Reactor_Notification_Strategy.lo `test -f 'Reactor_Notification_Strategy.cpp' || echo '$(srcdir)/'`Reactor_Notification_Strategy.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Reactor_Notification_Strategy.Tpo $(DEPDIR)/libACE_la-Reactor_Notification_Strategy.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Reactor_Notification_Strategy.cpp' object='libACE_la-Reactor_Notification_Strategy.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Reactor_Notification_Strategy.lo `test -f 'Reactor_Notification_Strategy.cpp' || echo '$(srcdir)/'`Reactor_Notification_Strategy.cpp - -libACE_la-Reactor_Timer_Interface.lo: Reactor_Timer_Interface.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Reactor_Timer_Interface.lo -MD -MP -MF $(DEPDIR)/libACE_la-Reactor_Timer_Interface.Tpo -c -o libACE_la-Reactor_Timer_Interface.lo `test -f 'Reactor_Timer_Interface.cpp' || echo '$(srcdir)/'`Reactor_Timer_Interface.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Reactor_Timer_Interface.Tpo $(DEPDIR)/libACE_la-Reactor_Timer_Interface.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Reactor_Timer_Interface.cpp' object='libACE_la-Reactor_Timer_Interface.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Reactor_Timer_Interface.lo `test -f 'Reactor_Timer_Interface.cpp' || echo '$(srcdir)/'`Reactor_Timer_Interface.cpp - -libACE_la-Read_Buffer.lo: Read_Buffer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Read_Buffer.lo -MD -MP -MF $(DEPDIR)/libACE_la-Read_Buffer.Tpo -c -o libACE_la-Read_Buffer.lo `test -f 'Read_Buffer.cpp' || echo '$(srcdir)/'`Read_Buffer.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Read_Buffer.Tpo $(DEPDIR)/libACE_la-Read_Buffer.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Read_Buffer.cpp' object='libACE_la-Read_Buffer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Read_Buffer.lo `test -f 'Read_Buffer.cpp' || echo '$(srcdir)/'`Read_Buffer.cpp - -libACE_la-Recursive_Thread_Mutex.lo: Recursive_Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Recursive_Thread_Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-Recursive_Thread_Mutex.Tpo -c -o libACE_la-Recursive_Thread_Mutex.lo `test -f 'Recursive_Thread_Mutex.cpp' || echo '$(srcdir)/'`Recursive_Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Recursive_Thread_Mutex.Tpo $(DEPDIR)/libACE_la-Recursive_Thread_Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Recursive_Thread_Mutex.cpp' object='libACE_la-Recursive_Thread_Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Recursive_Thread_Mutex.lo `test -f 'Recursive_Thread_Mutex.cpp' || echo '$(srcdir)/'`Recursive_Thread_Mutex.cpp - -libACE_la-Recyclable.lo: Recyclable.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Recyclable.lo -MD -MP -MF $(DEPDIR)/libACE_la-Recyclable.Tpo -c -o libACE_la-Recyclable.lo `test -f 'Recyclable.cpp' || echo '$(srcdir)/'`Recyclable.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Recyclable.Tpo $(DEPDIR)/libACE_la-Recyclable.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Recyclable.cpp' object='libACE_la-Recyclable.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Recyclable.lo `test -f 'Recyclable.cpp' || echo '$(srcdir)/'`Recyclable.cpp - -libACE_la-Registry.lo: Registry.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Registry.lo -MD -MP -MF $(DEPDIR)/libACE_la-Registry.Tpo -c -o libACE_la-Registry.lo `test -f 'Registry.cpp' || echo '$(srcdir)/'`Registry.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Registry.Tpo $(DEPDIR)/libACE_la-Registry.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Registry.cpp' object='libACE_la-Registry.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Registry.lo `test -f 'Registry.cpp' || echo '$(srcdir)/'`Registry.cpp - -libACE_la-Registry_Name_Space.lo: Registry_Name_Space.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Registry_Name_Space.lo -MD -MP -MF $(DEPDIR)/libACE_la-Registry_Name_Space.Tpo -c -o libACE_la-Registry_Name_Space.lo `test -f 'Registry_Name_Space.cpp' || echo '$(srcdir)/'`Registry_Name_Space.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Registry_Name_Space.Tpo $(DEPDIR)/libACE_la-Registry_Name_Space.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Registry_Name_Space.cpp' object='libACE_la-Registry_Name_Space.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Registry_Name_Space.lo `test -f 'Registry_Name_Space.cpp' || echo '$(srcdir)/'`Registry_Name_Space.cpp - -libACE_la-Remote_Name_Space.lo: Remote_Name_Space.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Remote_Name_Space.lo -MD -MP -MF $(DEPDIR)/libACE_la-Remote_Name_Space.Tpo -c -o libACE_la-Remote_Name_Space.lo `test -f 'Remote_Name_Space.cpp' || echo '$(srcdir)/'`Remote_Name_Space.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Remote_Name_Space.Tpo $(DEPDIR)/libACE_la-Remote_Name_Space.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Remote_Name_Space.cpp' object='libACE_la-Remote_Name_Space.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Remote_Name_Space.lo `test -f 'Remote_Name_Space.cpp' || echo '$(srcdir)/'`Remote_Name_Space.cpp - -libACE_la-Remote_Tokens.lo: Remote_Tokens.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Remote_Tokens.lo -MD -MP -MF $(DEPDIR)/libACE_la-Remote_Tokens.Tpo -c -o libACE_la-Remote_Tokens.lo `test -f 'Remote_Tokens.cpp' || echo '$(srcdir)/'`Remote_Tokens.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Remote_Tokens.Tpo $(DEPDIR)/libACE_la-Remote_Tokens.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Remote_Tokens.cpp' object='libACE_la-Remote_Tokens.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Remote_Tokens.lo `test -f 'Remote_Tokens.cpp' || echo '$(srcdir)/'`Remote_Tokens.cpp - -libACE_la-SOCK.lo: SOCK.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK.Tpo -c -o libACE_la-SOCK.lo `test -f 'SOCK.cpp' || echo '$(srcdir)/'`SOCK.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK.Tpo $(DEPDIR)/libACE_la-SOCK.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK.cpp' object='libACE_la-SOCK.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK.lo `test -f 'SOCK.cpp' || echo '$(srcdir)/'`SOCK.cpp - -libACE_la-SOCK_Acceptor.lo: SOCK_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_Acceptor.Tpo -c -o libACE_la-SOCK_Acceptor.lo `test -f 'SOCK_Acceptor.cpp' || echo '$(srcdir)/'`SOCK_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_Acceptor.Tpo $(DEPDIR)/libACE_la-SOCK_Acceptor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_Acceptor.cpp' object='libACE_la-SOCK_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_Acceptor.lo `test -f 'SOCK_Acceptor.cpp' || echo '$(srcdir)/'`SOCK_Acceptor.cpp - -libACE_la-SOCK_CODgram.lo: SOCK_CODgram.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_CODgram.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_CODgram.Tpo -c -o libACE_la-SOCK_CODgram.lo `test -f 'SOCK_CODgram.cpp' || echo '$(srcdir)/'`SOCK_CODgram.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_CODgram.Tpo $(DEPDIR)/libACE_la-SOCK_CODgram.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_CODgram.cpp' object='libACE_la-SOCK_CODgram.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_CODgram.lo `test -f 'SOCK_CODgram.cpp' || echo '$(srcdir)/'`SOCK_CODgram.cpp - -libACE_la-SOCK_Connector.lo: SOCK_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_Connector.Tpo -c -o libACE_la-SOCK_Connector.lo `test -f 'SOCK_Connector.cpp' || echo '$(srcdir)/'`SOCK_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_Connector.Tpo $(DEPDIR)/libACE_la-SOCK_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_Connector.cpp' object='libACE_la-SOCK_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_Connector.lo `test -f 'SOCK_Connector.cpp' || echo '$(srcdir)/'`SOCK_Connector.cpp - -libACE_la-SOCK_Dgram.lo: SOCK_Dgram.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_Dgram.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_Dgram.Tpo -c -o libACE_la-SOCK_Dgram.lo `test -f 'SOCK_Dgram.cpp' || echo '$(srcdir)/'`SOCK_Dgram.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_Dgram.Tpo $(DEPDIR)/libACE_la-SOCK_Dgram.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_Dgram.cpp' object='libACE_la-SOCK_Dgram.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_Dgram.lo `test -f 'SOCK_Dgram.cpp' || echo '$(srcdir)/'`SOCK_Dgram.cpp - -libACE_la-SOCK_Dgram_Bcast.lo: SOCK_Dgram_Bcast.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_Dgram_Bcast.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_Dgram_Bcast.Tpo -c -o libACE_la-SOCK_Dgram_Bcast.lo `test -f 'SOCK_Dgram_Bcast.cpp' || echo '$(srcdir)/'`SOCK_Dgram_Bcast.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_Dgram_Bcast.Tpo $(DEPDIR)/libACE_la-SOCK_Dgram_Bcast.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_Dgram_Bcast.cpp' object='libACE_la-SOCK_Dgram_Bcast.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_Dgram_Bcast.lo `test -f 'SOCK_Dgram_Bcast.cpp' || echo '$(srcdir)/'`SOCK_Dgram_Bcast.cpp - -libACE_la-SOCK_Dgram_Mcast.lo: SOCK_Dgram_Mcast.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_Dgram_Mcast.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_Dgram_Mcast.Tpo -c -o libACE_la-SOCK_Dgram_Mcast.lo `test -f 'SOCK_Dgram_Mcast.cpp' || echo '$(srcdir)/'`SOCK_Dgram_Mcast.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_Dgram_Mcast.Tpo $(DEPDIR)/libACE_la-SOCK_Dgram_Mcast.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_Dgram_Mcast.cpp' object='libACE_la-SOCK_Dgram_Mcast.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_Dgram_Mcast.lo `test -f 'SOCK_Dgram_Mcast.cpp' || echo '$(srcdir)/'`SOCK_Dgram_Mcast.cpp - -libACE_la-SOCK_IO.lo: SOCK_IO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_IO.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_IO.Tpo -c -o libACE_la-SOCK_IO.lo `test -f 'SOCK_IO.cpp' || echo '$(srcdir)/'`SOCK_IO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_IO.Tpo $(DEPDIR)/libACE_la-SOCK_IO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_IO.cpp' object='libACE_la-SOCK_IO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_IO.lo `test -f 'SOCK_IO.cpp' || echo '$(srcdir)/'`SOCK_IO.cpp - -libACE_la-SOCK_Netlink.lo: SOCK_Netlink.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_Netlink.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_Netlink.Tpo -c -o libACE_la-SOCK_Netlink.lo `test -f 'SOCK_Netlink.cpp' || echo '$(srcdir)/'`SOCK_Netlink.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_Netlink.Tpo $(DEPDIR)/libACE_la-SOCK_Netlink.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_Netlink.cpp' object='libACE_la-SOCK_Netlink.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_Netlink.lo `test -f 'SOCK_Netlink.cpp' || echo '$(srcdir)/'`SOCK_Netlink.cpp - -libACE_la-SOCK_SEQPACK_Acceptor.lo: SOCK_SEQPACK_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_SEQPACK_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_SEQPACK_Acceptor.Tpo -c -o libACE_la-SOCK_SEQPACK_Acceptor.lo `test -f 'SOCK_SEQPACK_Acceptor.cpp' || echo '$(srcdir)/'`SOCK_SEQPACK_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_SEQPACK_Acceptor.Tpo $(DEPDIR)/libACE_la-SOCK_SEQPACK_Acceptor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_SEQPACK_Acceptor.cpp' object='libACE_la-SOCK_SEQPACK_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_SEQPACK_Acceptor.lo `test -f 'SOCK_SEQPACK_Acceptor.cpp' || echo '$(srcdir)/'`SOCK_SEQPACK_Acceptor.cpp - -libACE_la-SOCK_SEQPACK_Association.lo: SOCK_SEQPACK_Association.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_SEQPACK_Association.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_SEQPACK_Association.Tpo -c -o libACE_la-SOCK_SEQPACK_Association.lo `test -f 'SOCK_SEQPACK_Association.cpp' || echo '$(srcdir)/'`SOCK_SEQPACK_Association.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_SEQPACK_Association.Tpo $(DEPDIR)/libACE_la-SOCK_SEQPACK_Association.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_SEQPACK_Association.cpp' object='libACE_la-SOCK_SEQPACK_Association.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_SEQPACK_Association.lo `test -f 'SOCK_SEQPACK_Association.cpp' || echo '$(srcdir)/'`SOCK_SEQPACK_Association.cpp - -libACE_la-SOCK_SEQPACK_Connector.lo: SOCK_SEQPACK_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_SEQPACK_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_SEQPACK_Connector.Tpo -c -o libACE_la-SOCK_SEQPACK_Connector.lo `test -f 'SOCK_SEQPACK_Connector.cpp' || echo '$(srcdir)/'`SOCK_SEQPACK_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_SEQPACK_Connector.Tpo $(DEPDIR)/libACE_la-SOCK_SEQPACK_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_SEQPACK_Connector.cpp' object='libACE_la-SOCK_SEQPACK_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_SEQPACK_Connector.lo `test -f 'SOCK_SEQPACK_Connector.cpp' || echo '$(srcdir)/'`SOCK_SEQPACK_Connector.cpp - -libACE_la-SOCK_Stream.lo: SOCK_Stream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SOCK_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_la-SOCK_Stream.Tpo -c -o libACE_la-SOCK_Stream.lo `test -f 'SOCK_Stream.cpp' || echo '$(srcdir)/'`SOCK_Stream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SOCK_Stream.Tpo $(DEPDIR)/libACE_la-SOCK_Stream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_Stream.cpp' object='libACE_la-SOCK_Stream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SOCK_Stream.lo `test -f 'SOCK_Stream.cpp' || echo '$(srcdir)/'`SOCK_Stream.cpp - -libACE_la-SPIPE.lo: SPIPE.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SPIPE.lo -MD -MP -MF $(DEPDIR)/libACE_la-SPIPE.Tpo -c -o libACE_la-SPIPE.lo `test -f 'SPIPE.cpp' || echo '$(srcdir)/'`SPIPE.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SPIPE.Tpo $(DEPDIR)/libACE_la-SPIPE.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SPIPE.cpp' object='libACE_la-SPIPE.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SPIPE.lo `test -f 'SPIPE.cpp' || echo '$(srcdir)/'`SPIPE.cpp - -libACE_la-SPIPE_Acceptor.lo: SPIPE_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SPIPE_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_la-SPIPE_Acceptor.Tpo -c -o libACE_la-SPIPE_Acceptor.lo `test -f 'SPIPE_Acceptor.cpp' || echo '$(srcdir)/'`SPIPE_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SPIPE_Acceptor.Tpo $(DEPDIR)/libACE_la-SPIPE_Acceptor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SPIPE_Acceptor.cpp' object='libACE_la-SPIPE_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SPIPE_Acceptor.lo `test -f 'SPIPE_Acceptor.cpp' || echo '$(srcdir)/'`SPIPE_Acceptor.cpp - -libACE_la-SPIPE_Addr.lo: SPIPE_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SPIPE_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-SPIPE_Addr.Tpo -c -o libACE_la-SPIPE_Addr.lo `test -f 'SPIPE_Addr.cpp' || echo '$(srcdir)/'`SPIPE_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SPIPE_Addr.Tpo $(DEPDIR)/libACE_la-SPIPE_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SPIPE_Addr.cpp' object='libACE_la-SPIPE_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SPIPE_Addr.lo `test -f 'SPIPE_Addr.cpp' || echo '$(srcdir)/'`SPIPE_Addr.cpp - -libACE_la-SPIPE_Connector.lo: SPIPE_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SPIPE_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-SPIPE_Connector.Tpo -c -o libACE_la-SPIPE_Connector.lo `test -f 'SPIPE_Connector.cpp' || echo '$(srcdir)/'`SPIPE_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SPIPE_Connector.Tpo $(DEPDIR)/libACE_la-SPIPE_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SPIPE_Connector.cpp' object='libACE_la-SPIPE_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SPIPE_Connector.lo `test -f 'SPIPE_Connector.cpp' || echo '$(srcdir)/'`SPIPE_Connector.cpp - -libACE_la-SPIPE_Stream.lo: SPIPE_Stream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SPIPE_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_la-SPIPE_Stream.Tpo -c -o libACE_la-SPIPE_Stream.lo `test -f 'SPIPE_Stream.cpp' || echo '$(srcdir)/'`SPIPE_Stream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SPIPE_Stream.Tpo $(DEPDIR)/libACE_la-SPIPE_Stream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SPIPE_Stream.cpp' object='libACE_la-SPIPE_Stream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SPIPE_Stream.lo `test -f 'SPIPE_Stream.cpp' || echo '$(srcdir)/'`SPIPE_Stream.cpp - -libACE_la-SString.lo: SString.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SString.lo -MD -MP -MF $(DEPDIR)/libACE_la-SString.Tpo -c -o libACE_la-SString.lo `test -f 'SString.cpp' || echo '$(srcdir)/'`SString.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SString.Tpo $(DEPDIR)/libACE_la-SString.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SString.cpp' object='libACE_la-SString.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SString.lo `test -f 'SString.cpp' || echo '$(srcdir)/'`SString.cpp - -libACE_la-Stack_Trace.lo: Stack_Trace.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Stack_Trace.lo -MD -MP -MF $(DEPDIR)/libACE_la-Stack_Trace.Tpo -c -o libACE_la-Stack_Trace.lo `test -f 'Stack_Trace.cpp' || echo '$(srcdir)/'`Stack_Trace.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Stack_Trace.Tpo $(DEPDIR)/libACE_la-Stack_Trace.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Stack_Trace.cpp' object='libACE_la-Stack_Trace.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Stack_Trace.lo `test -f 'Stack_Trace.cpp' || echo '$(srcdir)/'`Stack_Trace.cpp - -libACE_la-SUN_Proactor.lo: SUN_Proactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SUN_Proactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-SUN_Proactor.Tpo -c -o libACE_la-SUN_Proactor.lo `test -f 'SUN_Proactor.cpp' || echo '$(srcdir)/'`SUN_Proactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SUN_Proactor.Tpo $(DEPDIR)/libACE_la-SUN_Proactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SUN_Proactor.cpp' object='libACE_la-SUN_Proactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SUN_Proactor.lo `test -f 'SUN_Proactor.cpp' || echo '$(srcdir)/'`SUN_Proactor.cpp - -libACE_la-SV_Message.lo: SV_Message.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SV_Message.lo -MD -MP -MF $(DEPDIR)/libACE_la-SV_Message.Tpo -c -o libACE_la-SV_Message.lo `test -f 'SV_Message.cpp' || echo '$(srcdir)/'`SV_Message.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SV_Message.Tpo $(DEPDIR)/libACE_la-SV_Message.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SV_Message.cpp' object='libACE_la-SV_Message.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SV_Message.lo `test -f 'SV_Message.cpp' || echo '$(srcdir)/'`SV_Message.cpp - -libACE_la-SV_Message_Queue.lo: SV_Message_Queue.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SV_Message_Queue.lo -MD -MP -MF $(DEPDIR)/libACE_la-SV_Message_Queue.Tpo -c -o libACE_la-SV_Message_Queue.lo `test -f 'SV_Message_Queue.cpp' || echo '$(srcdir)/'`SV_Message_Queue.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SV_Message_Queue.Tpo $(DEPDIR)/libACE_la-SV_Message_Queue.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SV_Message_Queue.cpp' object='libACE_la-SV_Message_Queue.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SV_Message_Queue.lo `test -f 'SV_Message_Queue.cpp' || echo '$(srcdir)/'`SV_Message_Queue.cpp - -libACE_la-SV_Semaphore_Complex.lo: SV_Semaphore_Complex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SV_Semaphore_Complex.lo -MD -MP -MF $(DEPDIR)/libACE_la-SV_Semaphore_Complex.Tpo -c -o libACE_la-SV_Semaphore_Complex.lo `test -f 'SV_Semaphore_Complex.cpp' || echo '$(srcdir)/'`SV_Semaphore_Complex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SV_Semaphore_Complex.Tpo $(DEPDIR)/libACE_la-SV_Semaphore_Complex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SV_Semaphore_Complex.cpp' object='libACE_la-SV_Semaphore_Complex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SV_Semaphore_Complex.lo `test -f 'SV_Semaphore_Complex.cpp' || echo '$(srcdir)/'`SV_Semaphore_Complex.cpp - -libACE_la-SV_Semaphore_Simple.lo: SV_Semaphore_Simple.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SV_Semaphore_Simple.lo -MD -MP -MF $(DEPDIR)/libACE_la-SV_Semaphore_Simple.Tpo -c -o libACE_la-SV_Semaphore_Simple.lo `test -f 'SV_Semaphore_Simple.cpp' || echo '$(srcdir)/'`SV_Semaphore_Simple.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SV_Semaphore_Simple.Tpo $(DEPDIR)/libACE_la-SV_Semaphore_Simple.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SV_Semaphore_Simple.cpp' object='libACE_la-SV_Semaphore_Simple.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SV_Semaphore_Simple.lo `test -f 'SV_Semaphore_Simple.cpp' || echo '$(srcdir)/'`SV_Semaphore_Simple.cpp - -libACE_la-SV_Shared_Memory.lo: SV_Shared_Memory.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-SV_Shared_Memory.lo -MD -MP -MF $(DEPDIR)/libACE_la-SV_Shared_Memory.Tpo -c -o libACE_la-SV_Shared_Memory.lo `test -f 'SV_Shared_Memory.cpp' || echo '$(srcdir)/'`SV_Shared_Memory.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-SV_Shared_Memory.Tpo $(DEPDIR)/libACE_la-SV_Shared_Memory.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SV_Shared_Memory.cpp' object='libACE_la-SV_Shared_Memory.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-SV_Shared_Memory.lo `test -f 'SV_Shared_Memory.cpp' || echo '$(srcdir)/'`SV_Shared_Memory.cpp - -libACE_la-Sample_History.lo: Sample_History.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Sample_History.lo -MD -MP -MF $(DEPDIR)/libACE_la-Sample_History.Tpo -c -o libACE_la-Sample_History.lo `test -f 'Sample_History.cpp' || echo '$(srcdir)/'`Sample_History.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Sample_History.Tpo $(DEPDIR)/libACE_la-Sample_History.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Sample_History.cpp' object='libACE_la-Sample_History.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Sample_History.lo `test -f 'Sample_History.cpp' || echo '$(srcdir)/'`Sample_History.cpp - -libACE_la-Sbrk_Memory_Pool.lo: Sbrk_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Sbrk_Memory_Pool.lo -MD -MP -MF $(DEPDIR)/libACE_la-Sbrk_Memory_Pool.Tpo -c -o libACE_la-Sbrk_Memory_Pool.lo `test -f 'Sbrk_Memory_Pool.cpp' || echo '$(srcdir)/'`Sbrk_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Sbrk_Memory_Pool.Tpo $(DEPDIR)/libACE_la-Sbrk_Memory_Pool.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Sbrk_Memory_Pool.cpp' object='libACE_la-Sbrk_Memory_Pool.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Sbrk_Memory_Pool.lo `test -f 'Sbrk_Memory_Pool.cpp' || echo '$(srcdir)/'`Sbrk_Memory_Pool.cpp - -libACE_la-Sched_Params.lo: Sched_Params.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Sched_Params.lo -MD -MP -MF $(DEPDIR)/libACE_la-Sched_Params.Tpo -c -o libACE_la-Sched_Params.lo `test -f 'Sched_Params.cpp' || echo '$(srcdir)/'`Sched_Params.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Sched_Params.Tpo $(DEPDIR)/libACE_la-Sched_Params.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Sched_Params.cpp' object='libACE_la-Sched_Params.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Sched_Params.lo `test -f 'Sched_Params.cpp' || echo '$(srcdir)/'`Sched_Params.cpp - -libACE_la-Select_Reactor_Base.lo: Select_Reactor_Base.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Select_Reactor_Base.lo -MD -MP -MF $(DEPDIR)/libACE_la-Select_Reactor_Base.Tpo -c -o libACE_la-Select_Reactor_Base.lo `test -f 'Select_Reactor_Base.cpp' || echo '$(srcdir)/'`Select_Reactor_Base.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Select_Reactor_Base.Tpo $(DEPDIR)/libACE_la-Select_Reactor_Base.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Select_Reactor_Base.cpp' object='libACE_la-Select_Reactor_Base.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Select_Reactor_Base.lo `test -f 'Select_Reactor_Base.cpp' || echo '$(srcdir)/'`Select_Reactor_Base.cpp - -libACE_la-Semaphore.lo: Semaphore.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Semaphore.lo -MD -MP -MF $(DEPDIR)/libACE_la-Semaphore.Tpo -c -o libACE_la-Semaphore.lo `test -f 'Semaphore.cpp' || echo '$(srcdir)/'`Semaphore.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Semaphore.Tpo $(DEPDIR)/libACE_la-Semaphore.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Semaphore.cpp' object='libACE_la-Semaphore.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Semaphore.lo `test -f 'Semaphore.cpp' || echo '$(srcdir)/'`Semaphore.cpp - -libACE_la-Service_Config.lo: Service_Config.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Service_Config.lo -MD -MP -MF $(DEPDIR)/libACE_la-Service_Config.Tpo -c -o libACE_la-Service_Config.lo `test -f 'Service_Config.cpp' || echo '$(srcdir)/'`Service_Config.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Service_Config.Tpo $(DEPDIR)/libACE_la-Service_Config.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Service_Config.cpp' object='libACE_la-Service_Config.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Service_Config.lo `test -f 'Service_Config.cpp' || echo '$(srcdir)/'`Service_Config.cpp - -libACE_la-Service_Gestalt.lo: Service_Gestalt.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Service_Gestalt.lo -MD -MP -MF $(DEPDIR)/libACE_la-Service_Gestalt.Tpo -c -o libACE_la-Service_Gestalt.lo `test -f 'Service_Gestalt.cpp' || echo '$(srcdir)/'`Service_Gestalt.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Service_Gestalt.Tpo $(DEPDIR)/libACE_la-Service_Gestalt.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Service_Gestalt.cpp' object='libACE_la-Service_Gestalt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Service_Gestalt.lo `test -f 'Service_Gestalt.cpp' || echo '$(srcdir)/'`Service_Gestalt.cpp - -libACE_la-Service_Manager.lo: Service_Manager.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Service_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_la-Service_Manager.Tpo -c -o libACE_la-Service_Manager.lo `test -f 'Service_Manager.cpp' || echo '$(srcdir)/'`Service_Manager.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Service_Manager.Tpo $(DEPDIR)/libACE_la-Service_Manager.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Service_Manager.cpp' object='libACE_la-Service_Manager.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Service_Manager.lo `test -f 'Service_Manager.cpp' || echo '$(srcdir)/'`Service_Manager.cpp - -libACE_la-Service_Object.lo: Service_Object.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Service_Object.lo -MD -MP -MF $(DEPDIR)/libACE_la-Service_Object.Tpo -c -o libACE_la-Service_Object.lo `test -f 'Service_Object.cpp' || echo '$(srcdir)/'`Service_Object.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Service_Object.Tpo $(DEPDIR)/libACE_la-Service_Object.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Service_Object.cpp' object='libACE_la-Service_Object.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Service_Object.lo `test -f 'Service_Object.cpp' || echo '$(srcdir)/'`Service_Object.cpp - -libACE_la-Service_Repository.lo: Service_Repository.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Service_Repository.lo -MD -MP -MF $(DEPDIR)/libACE_la-Service_Repository.Tpo -c -o libACE_la-Service_Repository.lo `test -f 'Service_Repository.cpp' || echo '$(srcdir)/'`Service_Repository.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Service_Repository.Tpo $(DEPDIR)/libACE_la-Service_Repository.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Service_Repository.cpp' object='libACE_la-Service_Repository.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Service_Repository.lo `test -f 'Service_Repository.cpp' || echo '$(srcdir)/'`Service_Repository.cpp - -libACE_la-Service_Types.lo: Service_Types.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Service_Types.lo -MD -MP -MF $(DEPDIR)/libACE_la-Service_Types.Tpo -c -o libACE_la-Service_Types.lo `test -f 'Service_Types.cpp' || echo '$(srcdir)/'`Service_Types.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Service_Types.Tpo $(DEPDIR)/libACE_la-Service_Types.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Service_Types.cpp' object='libACE_la-Service_Types.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Service_Types.lo `test -f 'Service_Types.cpp' || echo '$(srcdir)/'`Service_Types.cpp - -libACE_la-Shared_Memory.lo: Shared_Memory.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Shared_Memory.lo -MD -MP -MF $(DEPDIR)/libACE_la-Shared_Memory.Tpo -c -o libACE_la-Shared_Memory.lo `test -f 'Shared_Memory.cpp' || echo '$(srcdir)/'`Shared_Memory.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Shared_Memory.Tpo $(DEPDIR)/libACE_la-Shared_Memory.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Shared_Memory.cpp' object='libACE_la-Shared_Memory.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Shared_Memory.lo `test -f 'Shared_Memory.cpp' || echo '$(srcdir)/'`Shared_Memory.cpp - -libACE_la-Shared_Memory_MM.lo: Shared_Memory_MM.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Shared_Memory_MM.lo -MD -MP -MF $(DEPDIR)/libACE_la-Shared_Memory_MM.Tpo -c -o libACE_la-Shared_Memory_MM.lo `test -f 'Shared_Memory_MM.cpp' || echo '$(srcdir)/'`Shared_Memory_MM.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Shared_Memory_MM.Tpo $(DEPDIR)/libACE_la-Shared_Memory_MM.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Shared_Memory_MM.cpp' object='libACE_la-Shared_Memory_MM.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Shared_Memory_MM.lo `test -f 'Shared_Memory_MM.cpp' || echo '$(srcdir)/'`Shared_Memory_MM.cpp - -libACE_la-Shared_Memory_Pool.lo: Shared_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Shared_Memory_Pool.lo -MD -MP -MF $(DEPDIR)/libACE_la-Shared_Memory_Pool.Tpo -c -o libACE_la-Shared_Memory_Pool.lo `test -f 'Shared_Memory_Pool.cpp' || echo '$(srcdir)/'`Shared_Memory_Pool.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Shared_Memory_Pool.Tpo $(DEPDIR)/libACE_la-Shared_Memory_Pool.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Shared_Memory_Pool.cpp' object='libACE_la-Shared_Memory_Pool.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Shared_Memory_Pool.lo `test -f 'Shared_Memory_Pool.cpp' || echo '$(srcdir)/'`Shared_Memory_Pool.cpp - -libACE_la-Shared_Memory_SV.lo: Shared_Memory_SV.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Shared_Memory_SV.lo -MD -MP -MF $(DEPDIR)/libACE_la-Shared_Memory_SV.Tpo -c -o libACE_la-Shared_Memory_SV.lo `test -f 'Shared_Memory_SV.cpp' || echo '$(srcdir)/'`Shared_Memory_SV.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Shared_Memory_SV.Tpo $(DEPDIR)/libACE_la-Shared_Memory_SV.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Shared_Memory_SV.cpp' object='libACE_la-Shared_Memory_SV.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Shared_Memory_SV.lo `test -f 'Shared_Memory_SV.cpp' || echo '$(srcdir)/'`Shared_Memory_SV.cpp - -libACE_la-Shared_Object.lo: Shared_Object.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Shared_Object.lo -MD -MP -MF $(DEPDIR)/libACE_la-Shared_Object.Tpo -c -o libACE_la-Shared_Object.lo `test -f 'Shared_Object.cpp' || echo '$(srcdir)/'`Shared_Object.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Shared_Object.Tpo $(DEPDIR)/libACE_la-Shared_Object.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Shared_Object.cpp' object='libACE_la-Shared_Object.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Shared_Object.lo `test -f 'Shared_Object.cpp' || echo '$(srcdir)/'`Shared_Object.cpp - -libACE_la-Sig_Adapter.lo: Sig_Adapter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Sig_Adapter.lo -MD -MP -MF $(DEPDIR)/libACE_la-Sig_Adapter.Tpo -c -o libACE_la-Sig_Adapter.lo `test -f 'Sig_Adapter.cpp' || echo '$(srcdir)/'`Sig_Adapter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Sig_Adapter.Tpo $(DEPDIR)/libACE_la-Sig_Adapter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Sig_Adapter.cpp' object='libACE_la-Sig_Adapter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Sig_Adapter.lo `test -f 'Sig_Adapter.cpp' || echo '$(srcdir)/'`Sig_Adapter.cpp - -libACE_la-Sig_Handler.lo: Sig_Handler.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Sig_Handler.lo -MD -MP -MF $(DEPDIR)/libACE_la-Sig_Handler.Tpo -c -o libACE_la-Sig_Handler.lo `test -f 'Sig_Handler.cpp' || echo '$(srcdir)/'`Sig_Handler.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Sig_Handler.Tpo $(DEPDIR)/libACE_la-Sig_Handler.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Sig_Handler.cpp' object='libACE_la-Sig_Handler.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Sig_Handler.lo `test -f 'Sig_Handler.cpp' || echo '$(srcdir)/'`Sig_Handler.cpp - -libACE_la-Signal.lo: Signal.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Signal.lo -MD -MP -MF $(DEPDIR)/libACE_la-Signal.Tpo -c -o libACE_la-Signal.lo `test -f 'Signal.cpp' || echo '$(srcdir)/'`Signal.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Signal.Tpo $(DEPDIR)/libACE_la-Signal.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Signal.cpp' object='libACE_la-Signal.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Signal.lo `test -f 'Signal.cpp' || echo '$(srcdir)/'`Signal.cpp - -libACE_la-Sock_Connect.lo: Sock_Connect.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Sock_Connect.lo -MD -MP -MF $(DEPDIR)/libACE_la-Sock_Connect.Tpo -c -o libACE_la-Sock_Connect.lo `test -f 'Sock_Connect.cpp' || echo '$(srcdir)/'`Sock_Connect.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Sock_Connect.Tpo $(DEPDIR)/libACE_la-Sock_Connect.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Sock_Connect.cpp' object='libACE_la-Sock_Connect.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Sock_Connect.lo `test -f 'Sock_Connect.cpp' || echo '$(srcdir)/'`Sock_Connect.cpp - -libACE_la-Stats.lo: Stats.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Stats.lo -MD -MP -MF $(DEPDIR)/libACE_la-Stats.Tpo -c -o libACE_la-Stats.lo `test -f 'Stats.cpp' || echo '$(srcdir)/'`Stats.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Stats.Tpo $(DEPDIR)/libACE_la-Stats.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Stats.cpp' object='libACE_la-Stats.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Stats.lo `test -f 'Stats.cpp' || echo '$(srcdir)/'`Stats.cpp - -libACE_la-String_Base_Const.lo: String_Base_Const.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-String_Base_Const.lo -MD -MP -MF $(DEPDIR)/libACE_la-String_Base_Const.Tpo -c -o libACE_la-String_Base_Const.lo `test -f 'String_Base_Const.cpp' || echo '$(srcdir)/'`String_Base_Const.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-String_Base_Const.Tpo $(DEPDIR)/libACE_la-String_Base_Const.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='String_Base_Const.cpp' object='libACE_la-String_Base_Const.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-String_Base_Const.lo `test -f 'String_Base_Const.cpp' || echo '$(srcdir)/'`String_Base_Const.cpp - -libACE_la-Svc_Conf_Lexer.lo: Svc_Conf_Lexer.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Svc_Conf_Lexer.lo -MD -MP -MF $(DEPDIR)/libACE_la-Svc_Conf_Lexer.Tpo -c -o libACE_la-Svc_Conf_Lexer.lo `test -f 'Svc_Conf_Lexer.cpp' || echo '$(srcdir)/'`Svc_Conf_Lexer.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Svc_Conf_Lexer.Tpo $(DEPDIR)/libACE_la-Svc_Conf_Lexer.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Svc_Conf_Lexer.cpp' object='libACE_la-Svc_Conf_Lexer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Svc_Conf_Lexer.lo `test -f 'Svc_Conf_Lexer.cpp' || echo '$(srcdir)/'`Svc_Conf_Lexer.cpp - -libACE_la-Svc_Conf_y.lo: Svc_Conf_y.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Svc_Conf_y.lo -MD -MP -MF $(DEPDIR)/libACE_la-Svc_Conf_y.Tpo -c -o libACE_la-Svc_Conf_y.lo `test -f 'Svc_Conf_y.cpp' || echo '$(srcdir)/'`Svc_Conf_y.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Svc_Conf_y.Tpo $(DEPDIR)/libACE_la-Svc_Conf_y.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Svc_Conf_y.cpp' object='libACE_la-Svc_Conf_y.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Svc_Conf_y.lo `test -f 'Svc_Conf_y.cpp' || echo '$(srcdir)/'`Svc_Conf_y.cpp - -libACE_la-Synch_Options.lo: Synch_Options.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Synch_Options.lo -MD -MP -MF $(DEPDIR)/libACE_la-Synch_Options.Tpo -c -o libACE_la-Synch_Options.lo `test -f 'Synch_Options.cpp' || echo '$(srcdir)/'`Synch_Options.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Synch_Options.Tpo $(DEPDIR)/libACE_la-Synch_Options.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Synch_Options.cpp' object='libACE_la-Synch_Options.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Synch_Options.lo `test -f 'Synch_Options.cpp' || echo '$(srcdir)/'`Synch_Options.cpp - -libACE_la-System_Time.lo: System_Time.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-System_Time.lo -MD -MP -MF $(DEPDIR)/libACE_la-System_Time.Tpo -c -o libACE_la-System_Time.lo `test -f 'System_Time.cpp' || echo '$(srcdir)/'`System_Time.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-System_Time.Tpo $(DEPDIR)/libACE_la-System_Time.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='System_Time.cpp' object='libACE_la-System_Time.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-System_Time.lo `test -f 'System_Time.cpp' || echo '$(srcdir)/'`System_Time.cpp - -libACE_la-TLI.lo: TLI.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-TLI.lo -MD -MP -MF $(DEPDIR)/libACE_la-TLI.Tpo -c -o libACE_la-TLI.lo `test -f 'TLI.cpp' || echo '$(srcdir)/'`TLI.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-TLI.Tpo $(DEPDIR)/libACE_la-TLI.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='TLI.cpp' object='libACE_la-TLI.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-TLI.lo `test -f 'TLI.cpp' || echo '$(srcdir)/'`TLI.cpp - -libACE_la-TLI_Acceptor.lo: TLI_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-TLI_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_la-TLI_Acceptor.Tpo -c -o libACE_la-TLI_Acceptor.lo `test -f 'TLI_Acceptor.cpp' || echo '$(srcdir)/'`TLI_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-TLI_Acceptor.Tpo $(DEPDIR)/libACE_la-TLI_Acceptor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='TLI_Acceptor.cpp' object='libACE_la-TLI_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-TLI_Acceptor.lo `test -f 'TLI_Acceptor.cpp' || echo '$(srcdir)/'`TLI_Acceptor.cpp - -libACE_la-TLI_Connector.lo: TLI_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-TLI_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-TLI_Connector.Tpo -c -o libACE_la-TLI_Connector.lo `test -f 'TLI_Connector.cpp' || echo '$(srcdir)/'`TLI_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-TLI_Connector.Tpo $(DEPDIR)/libACE_la-TLI_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='TLI_Connector.cpp' object='libACE_la-TLI_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-TLI_Connector.lo `test -f 'TLI_Connector.cpp' || echo '$(srcdir)/'`TLI_Connector.cpp - -libACE_la-TLI_Stream.lo: TLI_Stream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-TLI_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_la-TLI_Stream.Tpo -c -o libACE_la-TLI_Stream.lo `test -f 'TLI_Stream.cpp' || echo '$(srcdir)/'`TLI_Stream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-TLI_Stream.Tpo $(DEPDIR)/libACE_la-TLI_Stream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='TLI_Stream.cpp' object='libACE_la-TLI_Stream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-TLI_Stream.lo `test -f 'TLI_Stream.cpp' || echo '$(srcdir)/'`TLI_Stream.cpp - -libACE_la-TP_Reactor.lo: TP_Reactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-TP_Reactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-TP_Reactor.Tpo -c -o libACE_la-TP_Reactor.lo `test -f 'TP_Reactor.cpp' || echo '$(srcdir)/'`TP_Reactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-TP_Reactor.Tpo $(DEPDIR)/libACE_la-TP_Reactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='TP_Reactor.cpp' object='libACE_la-TP_Reactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-TP_Reactor.lo `test -f 'TP_Reactor.cpp' || echo '$(srcdir)/'`TP_Reactor.cpp - -libACE_la-TSS_Adapter.lo: TSS_Adapter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-TSS_Adapter.lo -MD -MP -MF $(DEPDIR)/libACE_la-TSS_Adapter.Tpo -c -o libACE_la-TSS_Adapter.lo `test -f 'TSS_Adapter.cpp' || echo '$(srcdir)/'`TSS_Adapter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-TSS_Adapter.Tpo $(DEPDIR)/libACE_la-TSS_Adapter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='TSS_Adapter.cpp' object='libACE_la-TSS_Adapter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-TSS_Adapter.lo `test -f 'TSS_Adapter.cpp' || echo '$(srcdir)/'`TSS_Adapter.cpp - -libACE_la-TTY_IO.lo: TTY_IO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-TTY_IO.lo -MD -MP -MF $(DEPDIR)/libACE_la-TTY_IO.Tpo -c -o libACE_la-TTY_IO.lo `test -f 'TTY_IO.cpp' || echo '$(srcdir)/'`TTY_IO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-TTY_IO.Tpo $(DEPDIR)/libACE_la-TTY_IO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='TTY_IO.cpp' object='libACE_la-TTY_IO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-TTY_IO.lo `test -f 'TTY_IO.cpp' || echo '$(srcdir)/'`TTY_IO.cpp - -libACE_la-Task.lo: Task.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Task.lo -MD -MP -MF $(DEPDIR)/libACE_la-Task.Tpo -c -o libACE_la-Task.lo `test -f 'Task.cpp' || echo '$(srcdir)/'`Task.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Task.Tpo $(DEPDIR)/libACE_la-Task.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Task.cpp' object='libACE_la-Task.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Task.lo `test -f 'Task.cpp' || echo '$(srcdir)/'`Task.cpp - -libACE_la-Thread.lo: Thread.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Thread.lo -MD -MP -MF $(DEPDIR)/libACE_la-Thread.Tpo -c -o libACE_la-Thread.lo `test -f 'Thread.cpp' || echo '$(srcdir)/'`Thread.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Thread.Tpo $(DEPDIR)/libACE_la-Thread.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Thread.cpp' object='libACE_la-Thread.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Thread.lo `test -f 'Thread.cpp' || echo '$(srcdir)/'`Thread.cpp - -libACE_la-Thread_Adapter.lo: Thread_Adapter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Thread_Adapter.lo -MD -MP -MF $(DEPDIR)/libACE_la-Thread_Adapter.Tpo -c -o libACE_la-Thread_Adapter.lo `test -f 'Thread_Adapter.cpp' || echo '$(srcdir)/'`Thread_Adapter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Thread_Adapter.Tpo $(DEPDIR)/libACE_la-Thread_Adapter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Thread_Adapter.cpp' object='libACE_la-Thread_Adapter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Thread_Adapter.lo `test -f 'Thread_Adapter.cpp' || echo '$(srcdir)/'`Thread_Adapter.cpp - -libACE_la-Thread_Control.lo: Thread_Control.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Thread_Control.lo -MD -MP -MF $(DEPDIR)/libACE_la-Thread_Control.Tpo -c -o libACE_la-Thread_Control.lo `test -f 'Thread_Control.cpp' || echo '$(srcdir)/'`Thread_Control.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Thread_Control.Tpo $(DEPDIR)/libACE_la-Thread_Control.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Thread_Control.cpp' object='libACE_la-Thread_Control.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Thread_Control.lo `test -f 'Thread_Control.cpp' || echo '$(srcdir)/'`Thread_Control.cpp - -libACE_la-Thread_Exit.lo: Thread_Exit.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Thread_Exit.lo -MD -MP -MF $(DEPDIR)/libACE_la-Thread_Exit.Tpo -c -o libACE_la-Thread_Exit.lo `test -f 'Thread_Exit.cpp' || echo '$(srcdir)/'`Thread_Exit.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Thread_Exit.Tpo $(DEPDIR)/libACE_la-Thread_Exit.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Thread_Exit.cpp' object='libACE_la-Thread_Exit.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Thread_Exit.lo `test -f 'Thread_Exit.cpp' || echo '$(srcdir)/'`Thread_Exit.cpp - -libACE_la-Thread_Hook.lo: Thread_Hook.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Thread_Hook.lo -MD -MP -MF $(DEPDIR)/libACE_la-Thread_Hook.Tpo -c -o libACE_la-Thread_Hook.lo `test -f 'Thread_Hook.cpp' || echo '$(srcdir)/'`Thread_Hook.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Thread_Hook.Tpo $(DEPDIR)/libACE_la-Thread_Hook.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Thread_Hook.cpp' object='libACE_la-Thread_Hook.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Thread_Hook.lo `test -f 'Thread_Hook.cpp' || echo '$(srcdir)/'`Thread_Hook.cpp - -libACE_la-Thread_Manager.lo: Thread_Manager.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Thread_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_la-Thread_Manager.Tpo -c -o libACE_la-Thread_Manager.lo `test -f 'Thread_Manager.cpp' || echo '$(srcdir)/'`Thread_Manager.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Thread_Manager.Tpo $(DEPDIR)/libACE_la-Thread_Manager.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Thread_Manager.cpp' object='libACE_la-Thread_Manager.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Thread_Manager.lo `test -f 'Thread_Manager.cpp' || echo '$(srcdir)/'`Thread_Manager.cpp - -libACE_la-Thread_Mutex.lo: Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Thread_Mutex.lo -MD -MP -MF $(DEPDIR)/libACE_la-Thread_Mutex.Tpo -c -o libACE_la-Thread_Mutex.lo `test -f 'Thread_Mutex.cpp' || echo '$(srcdir)/'`Thread_Mutex.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Thread_Mutex.Tpo $(DEPDIR)/libACE_la-Thread_Mutex.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Thread_Mutex.cpp' object='libACE_la-Thread_Mutex.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Thread_Mutex.lo `test -f 'Thread_Mutex.cpp' || echo '$(srcdir)/'`Thread_Mutex.cpp - -libACE_la-Thread_Semaphore.lo: Thread_Semaphore.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Thread_Semaphore.lo -MD -MP -MF $(DEPDIR)/libACE_la-Thread_Semaphore.Tpo -c -o libACE_la-Thread_Semaphore.lo `test -f 'Thread_Semaphore.cpp' || echo '$(srcdir)/'`Thread_Semaphore.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Thread_Semaphore.Tpo $(DEPDIR)/libACE_la-Thread_Semaphore.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Thread_Semaphore.cpp' object='libACE_la-Thread_Semaphore.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Thread_Semaphore.lo `test -f 'Thread_Semaphore.cpp' || echo '$(srcdir)/'`Thread_Semaphore.cpp - -libACE_la-Throughput_Stats.lo: Throughput_Stats.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Throughput_Stats.lo -MD -MP -MF $(DEPDIR)/libACE_la-Throughput_Stats.Tpo -c -o libACE_la-Throughput_Stats.lo `test -f 'Throughput_Stats.cpp' || echo '$(srcdir)/'`Throughput_Stats.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Throughput_Stats.Tpo $(DEPDIR)/libACE_la-Throughput_Stats.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Throughput_Stats.cpp' object='libACE_la-Throughput_Stats.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Throughput_Stats.lo `test -f 'Throughput_Stats.cpp' || echo '$(srcdir)/'`Throughput_Stats.cpp - -libACE_la-Time_Value.lo: Time_Value.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Time_Value.lo -MD -MP -MF $(DEPDIR)/libACE_la-Time_Value.Tpo -c -o libACE_la-Time_Value.lo `test -f 'Time_Value.cpp' || echo '$(srcdir)/'`Time_Value.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Time_Value.Tpo $(DEPDIR)/libACE_la-Time_Value.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Time_Value.cpp' object='libACE_la-Time_Value.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Time_Value.lo `test -f 'Time_Value.cpp' || echo '$(srcdir)/'`Time_Value.cpp - -libACE_la-Timeprobe.lo: Timeprobe.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Timeprobe.lo -MD -MP -MF $(DEPDIR)/libACE_la-Timeprobe.Tpo -c -o libACE_la-Timeprobe.lo `test -f 'Timeprobe.cpp' || echo '$(srcdir)/'`Timeprobe.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Timeprobe.Tpo $(DEPDIR)/libACE_la-Timeprobe.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Timeprobe.cpp' object='libACE_la-Timeprobe.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Timeprobe.lo `test -f 'Timeprobe.cpp' || echo '$(srcdir)/'`Timeprobe.cpp - -libACE_la-Token.lo: Token.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Token.lo -MD -MP -MF $(DEPDIR)/libACE_la-Token.Tpo -c -o libACE_la-Token.lo `test -f 'Token.cpp' || echo '$(srcdir)/'`Token.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Token.Tpo $(DEPDIR)/libACE_la-Token.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Token.cpp' object='libACE_la-Token.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Token.lo `test -f 'Token.cpp' || echo '$(srcdir)/'`Token.cpp - -libACE_la-Token_Collection.lo: Token_Collection.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Token_Collection.lo -MD -MP -MF $(DEPDIR)/libACE_la-Token_Collection.Tpo -c -o libACE_la-Token_Collection.lo `test -f 'Token_Collection.cpp' || echo '$(srcdir)/'`Token_Collection.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Token_Collection.Tpo $(DEPDIR)/libACE_la-Token_Collection.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Token_Collection.cpp' object='libACE_la-Token_Collection.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Token_Collection.lo `test -f 'Token_Collection.cpp' || echo '$(srcdir)/'`Token_Collection.cpp - -libACE_la-Token_Invariants.lo: Token_Invariants.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Token_Invariants.lo -MD -MP -MF $(DEPDIR)/libACE_la-Token_Invariants.Tpo -c -o libACE_la-Token_Invariants.lo `test -f 'Token_Invariants.cpp' || echo '$(srcdir)/'`Token_Invariants.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Token_Invariants.Tpo $(DEPDIR)/libACE_la-Token_Invariants.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Token_Invariants.cpp' object='libACE_la-Token_Invariants.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Token_Invariants.lo `test -f 'Token_Invariants.cpp' || echo '$(srcdir)/'`Token_Invariants.cpp - -libACE_la-Token_Manager.lo: Token_Manager.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Token_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_la-Token_Manager.Tpo -c -o libACE_la-Token_Manager.lo `test -f 'Token_Manager.cpp' || echo '$(srcdir)/'`Token_Manager.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Token_Manager.Tpo $(DEPDIR)/libACE_la-Token_Manager.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Token_Manager.cpp' object='libACE_la-Token_Manager.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Token_Manager.lo `test -f 'Token_Manager.cpp' || echo '$(srcdir)/'`Token_Manager.cpp - -libACE_la-Token_Request_Reply.lo: Token_Request_Reply.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Token_Request_Reply.lo -MD -MP -MF $(DEPDIR)/libACE_la-Token_Request_Reply.Tpo -c -o libACE_la-Token_Request_Reply.lo `test -f 'Token_Request_Reply.cpp' || echo '$(srcdir)/'`Token_Request_Reply.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Token_Request_Reply.Tpo $(DEPDIR)/libACE_la-Token_Request_Reply.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Token_Request_Reply.cpp' object='libACE_la-Token_Request_Reply.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Token_Request_Reply.lo `test -f 'Token_Request_Reply.cpp' || echo '$(srcdir)/'`Token_Request_Reply.cpp - -libACE_la-Trace.lo: Trace.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-Trace.lo -MD -MP -MF $(DEPDIR)/libACE_la-Trace.Tpo -c -o libACE_la-Trace.lo `test -f 'Trace.cpp' || echo '$(srcdir)/'`Trace.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-Trace.Tpo $(DEPDIR)/libACE_la-Trace.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Trace.cpp' object='libACE_la-Trace.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-Trace.lo `test -f 'Trace.cpp' || echo '$(srcdir)/'`Trace.cpp - -libACE_la-UNIX_Addr.lo: UNIX_Addr.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-UNIX_Addr.lo -MD -MP -MF $(DEPDIR)/libACE_la-UNIX_Addr.Tpo -c -o libACE_la-UNIX_Addr.lo `test -f 'UNIX_Addr.cpp' || echo '$(srcdir)/'`UNIX_Addr.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-UNIX_Addr.Tpo $(DEPDIR)/libACE_la-UNIX_Addr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='UNIX_Addr.cpp' object='libACE_la-UNIX_Addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-UNIX_Addr.lo `test -f 'UNIX_Addr.cpp' || echo '$(srcdir)/'`UNIX_Addr.cpp - -libACE_la-UPIPE_Acceptor.lo: UPIPE_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-UPIPE_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_la-UPIPE_Acceptor.Tpo -c -o libACE_la-UPIPE_Acceptor.lo `test -f 'UPIPE_Acceptor.cpp' || echo '$(srcdir)/'`UPIPE_Acceptor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-UPIPE_Acceptor.Tpo $(DEPDIR)/libACE_la-UPIPE_Acceptor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='UPIPE_Acceptor.cpp' object='libACE_la-UPIPE_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-UPIPE_Acceptor.lo `test -f 'UPIPE_Acceptor.cpp' || echo '$(srcdir)/'`UPIPE_Acceptor.cpp - -libACE_la-UPIPE_Connector.lo: UPIPE_Connector.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-UPIPE_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_la-UPIPE_Connector.Tpo -c -o libACE_la-UPIPE_Connector.lo `test -f 'UPIPE_Connector.cpp' || echo '$(srcdir)/'`UPIPE_Connector.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-UPIPE_Connector.Tpo $(DEPDIR)/libACE_la-UPIPE_Connector.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='UPIPE_Connector.cpp' object='libACE_la-UPIPE_Connector.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-UPIPE_Connector.lo `test -f 'UPIPE_Connector.cpp' || echo '$(srcdir)/'`UPIPE_Connector.cpp - -libACE_la-UPIPE_Stream.lo: UPIPE_Stream.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-UPIPE_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_la-UPIPE_Stream.Tpo -c -o libACE_la-UPIPE_Stream.lo `test -f 'UPIPE_Stream.cpp' || echo '$(srcdir)/'`UPIPE_Stream.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-UPIPE_Stream.Tpo $(DEPDIR)/libACE_la-UPIPE_Stream.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='UPIPE_Stream.cpp' object='libACE_la-UPIPE_Stream.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-UPIPE_Stream.lo `test -f 'UPIPE_Stream.cpp' || echo '$(srcdir)/'`UPIPE_Stream.cpp - -libACE_la-UTF16_Encoding_Converter.lo: UTF16_Encoding_Converter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-UTF16_Encoding_Converter.lo -MD -MP -MF $(DEPDIR)/libACE_la-UTF16_Encoding_Converter.Tpo -c -o libACE_la-UTF16_Encoding_Converter.lo `test -f 'UTF16_Encoding_Converter.cpp' || echo '$(srcdir)/'`UTF16_Encoding_Converter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-UTF16_Encoding_Converter.Tpo $(DEPDIR)/libACE_la-UTF16_Encoding_Converter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='UTF16_Encoding_Converter.cpp' object='libACE_la-UTF16_Encoding_Converter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-UTF16_Encoding_Converter.lo `test -f 'UTF16_Encoding_Converter.cpp' || echo '$(srcdir)/'`UTF16_Encoding_Converter.cpp - -libACE_la-UTF32_Encoding_Converter.lo: UTF32_Encoding_Converter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-UTF32_Encoding_Converter.lo -MD -MP -MF $(DEPDIR)/libACE_la-UTF32_Encoding_Converter.Tpo -c -o libACE_la-UTF32_Encoding_Converter.lo `test -f 'UTF32_Encoding_Converter.cpp' || echo '$(srcdir)/'`UTF32_Encoding_Converter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-UTF32_Encoding_Converter.Tpo $(DEPDIR)/libACE_la-UTF32_Encoding_Converter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='UTF32_Encoding_Converter.cpp' object='libACE_la-UTF32_Encoding_Converter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-UTF32_Encoding_Converter.lo `test -f 'UTF32_Encoding_Converter.cpp' || echo '$(srcdir)/'`UTF32_Encoding_Converter.cpp - -libACE_la-UTF8_Encoding_Converter.lo: UTF8_Encoding_Converter.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-UTF8_Encoding_Converter.lo -MD -MP -MF $(DEPDIR)/libACE_la-UTF8_Encoding_Converter.Tpo -c -o libACE_la-UTF8_Encoding_Converter.lo `test -f 'UTF8_Encoding_Converter.cpp' || echo '$(srcdir)/'`UTF8_Encoding_Converter.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-UTF8_Encoding_Converter.Tpo $(DEPDIR)/libACE_la-UTF8_Encoding_Converter.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='UTF8_Encoding_Converter.cpp' object='libACE_la-UTF8_Encoding_Converter.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-UTF8_Encoding_Converter.lo `test -f 'UTF8_Encoding_Converter.cpp' || echo '$(srcdir)/'`UTF8_Encoding_Converter.cpp - -libACE_la-UUID.lo: UUID.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-UUID.lo -MD -MP -MF $(DEPDIR)/libACE_la-UUID.Tpo -c -o libACE_la-UUID.lo `test -f 'UUID.cpp' || echo '$(srcdir)/'`UUID.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-UUID.Tpo $(DEPDIR)/libACE_la-UUID.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='UUID.cpp' object='libACE_la-UUID.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-UUID.lo `test -f 'UUID.cpp' || echo '$(srcdir)/'`UUID.cpp - -libACE_la-WFMO_Reactor.lo: WFMO_Reactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-WFMO_Reactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-WFMO_Reactor.Tpo -c -o libACE_la-WFMO_Reactor.lo `test -f 'WFMO_Reactor.cpp' || echo '$(srcdir)/'`WFMO_Reactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-WFMO_Reactor.Tpo $(DEPDIR)/libACE_la-WFMO_Reactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='WFMO_Reactor.cpp' object='libACE_la-WFMO_Reactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-WFMO_Reactor.lo `test -f 'WFMO_Reactor.cpp' || echo '$(srcdir)/'`WFMO_Reactor.cpp - -libACE_la-WIN32_Asynch_IO.lo: WIN32_Asynch_IO.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-WIN32_Asynch_IO.lo -MD -MP -MF $(DEPDIR)/libACE_la-WIN32_Asynch_IO.Tpo -c -o libACE_la-WIN32_Asynch_IO.lo `test -f 'WIN32_Asynch_IO.cpp' || echo '$(srcdir)/'`WIN32_Asynch_IO.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-WIN32_Asynch_IO.Tpo $(DEPDIR)/libACE_la-WIN32_Asynch_IO.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='WIN32_Asynch_IO.cpp' object='libACE_la-WIN32_Asynch_IO.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-WIN32_Asynch_IO.lo `test -f 'WIN32_Asynch_IO.cpp' || echo '$(srcdir)/'`WIN32_Asynch_IO.cpp - -libACE_la-WIN32_Proactor.lo: WIN32_Proactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-WIN32_Proactor.lo -MD -MP -MF $(DEPDIR)/libACE_la-WIN32_Proactor.Tpo -c -o libACE_la-WIN32_Proactor.lo `test -f 'WIN32_Proactor.cpp' || echo '$(srcdir)/'`WIN32_Proactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-WIN32_Proactor.Tpo $(DEPDIR)/libACE_la-WIN32_Proactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='WIN32_Proactor.cpp' object='libACE_la-WIN32_Proactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-WIN32_Proactor.lo `test -f 'WIN32_Proactor.cpp' || echo '$(srcdir)/'`WIN32_Proactor.cpp - -libACE_la-XML_Svc_Conf.lo: XML_Svc_Conf.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-XML_Svc_Conf.lo -MD -MP -MF $(DEPDIR)/libACE_la-XML_Svc_Conf.Tpo -c -o libACE_la-XML_Svc_Conf.lo `test -f 'XML_Svc_Conf.cpp' || echo '$(srcdir)/'`XML_Svc_Conf.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-XML_Svc_Conf.Tpo $(DEPDIR)/libACE_la-XML_Svc_Conf.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='XML_Svc_Conf.cpp' object='libACE_la-XML_Svc_Conf.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-XML_Svc_Conf.lo `test -f 'XML_Svc_Conf.cpp' || echo '$(srcdir)/'`XML_Svc_Conf.cpp - -libACE_la-XTI_ATM_Mcast.lo: XTI_ATM_Mcast.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-XTI_ATM_Mcast.lo -MD -MP -MF $(DEPDIR)/libACE_la-XTI_ATM_Mcast.Tpo -c -o libACE_la-XTI_ATM_Mcast.lo `test -f 'XTI_ATM_Mcast.cpp' || echo '$(srcdir)/'`XTI_ATM_Mcast.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-XTI_ATM_Mcast.Tpo $(DEPDIR)/libACE_la-XTI_ATM_Mcast.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='XTI_ATM_Mcast.cpp' object='libACE_la-XTI_ATM_Mcast.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-XTI_ATM_Mcast.lo `test -f 'XTI_ATM_Mcast.cpp' || echo '$(srcdir)/'`XTI_ATM_Mcast.cpp - -libACE_la-ace_wchar.lo: ace_wchar.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-ace_wchar.lo -MD -MP -MF $(DEPDIR)/libACE_la-ace_wchar.Tpo -c -o libACE_la-ace_wchar.lo `test -f 'ace_wchar.cpp' || echo '$(srcdir)/'`ace_wchar.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-ace_wchar.Tpo $(DEPDIR)/libACE_la-ace_wchar.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ace_wchar.cpp' object='libACE_la-ace_wchar.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-ace_wchar.lo `test -f 'ace_wchar.cpp' || echo '$(srcdir)/'`ace_wchar.cpp - -libACE_la-gethrtime.lo: gethrtime.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_la-gethrtime.lo -MD -MP -MF $(DEPDIR)/libACE_la-gethrtime.Tpo -c -o libACE_la-gethrtime.lo `test -f 'gethrtime.cpp' || echo '$(srcdir)/'`gethrtime.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_la-gethrtime.Tpo $(DEPDIR)/libACE_la-gethrtime.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='gethrtime.cpp' object='libACE_la-gethrtime.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_la-gethrtime.lo `test -f 'gethrtime.cpp' || echo '$(srcdir)/'`gethrtime.cpp - -libACE_FlReactor_la-FlReactor.lo: FlReactor/FlReactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_FlReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_FlReactor_la-FlReactor.lo -MD -MP -MF $(DEPDIR)/libACE_FlReactor_la-FlReactor.Tpo -c -o libACE_FlReactor_la-FlReactor.lo `test -f 'FlReactor/FlReactor.cpp' || echo '$(srcdir)/'`FlReactor/FlReactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_FlReactor_la-FlReactor.Tpo $(DEPDIR)/libACE_FlReactor_la-FlReactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FlReactor/FlReactor.cpp' object='libACE_FlReactor_la-FlReactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_FlReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_FlReactor_la-FlReactor.lo `test -f 'FlReactor/FlReactor.cpp' || echo '$(srcdir)/'`FlReactor/FlReactor.cpp - -libACE_QtReactor_la-QtReactor.lo: QtReactor/QtReactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QtReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_QtReactor_la-QtReactor.lo -MD -MP -MF $(DEPDIR)/libACE_QtReactor_la-QtReactor.Tpo -c -o libACE_QtReactor_la-QtReactor.lo `test -f 'QtReactor/QtReactor.cpp' || echo '$(srcdir)/'`QtReactor/QtReactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_QtReactor_la-QtReactor.Tpo $(DEPDIR)/libACE_QtReactor_la-QtReactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='QtReactor/QtReactor.cpp' object='libACE_QtReactor_la-QtReactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QtReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_QtReactor_la-QtReactor.lo `test -f 'QtReactor/QtReactor.cpp' || echo '$(srcdir)/'`QtReactor/QtReactor.cpp - -libACE_QtReactor_la-QtReactor_moc.lo: QtReactor/QtReactor_moc.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QtReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_QtReactor_la-QtReactor_moc.lo -MD -MP -MF $(DEPDIR)/libACE_QtReactor_la-QtReactor_moc.Tpo -c -o libACE_QtReactor_la-QtReactor_moc.lo `test -f 'QtReactor/QtReactor_moc.cpp' || echo '$(srcdir)/'`QtReactor/QtReactor_moc.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_QtReactor_la-QtReactor_moc.Tpo $(DEPDIR)/libACE_QtReactor_la-QtReactor_moc.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='QtReactor/QtReactor_moc.cpp' object='libACE_QtReactor_la-QtReactor_moc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QtReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_QtReactor_la-QtReactor_moc.lo `test -f 'QtReactor/QtReactor_moc.cpp' || echo '$(srcdir)/'`QtReactor/QtReactor_moc.cpp - -libACE_TkReactor_la-TkReactor.lo: TkReactor/TkReactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_TkReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_TkReactor_la-TkReactor.lo -MD -MP -MF $(DEPDIR)/libACE_TkReactor_la-TkReactor.Tpo -c -o libACE_TkReactor_la-TkReactor.lo `test -f 'TkReactor/TkReactor.cpp' || echo '$(srcdir)/'`TkReactor/TkReactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_TkReactor_la-TkReactor.Tpo $(DEPDIR)/libACE_TkReactor_la-TkReactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='TkReactor/TkReactor.cpp' object='libACE_TkReactor_la-TkReactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_TkReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_TkReactor_la-TkReactor.lo `test -f 'TkReactor/TkReactor.cpp' || echo '$(srcdir)/'`TkReactor/TkReactor.cpp - -libACE_XtReactor_la-XtReactor.lo: XtReactor/XtReactor.cpp -@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_XtReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_XtReactor_la-XtReactor.lo -MD -MP -MF $(DEPDIR)/libACE_XtReactor_la-XtReactor.Tpo -c -o libACE_XtReactor_la-XtReactor.lo `test -f 'XtReactor/XtReactor.cpp' || echo '$(srcdir)/'`XtReactor/XtReactor.cpp -@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_XtReactor_la-XtReactor.Tpo $(DEPDIR)/libACE_XtReactor_la-XtReactor.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='XtReactor/XtReactor.cpp' object='libACE_XtReactor_la-XtReactor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_XtReactor_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_XtReactor_la-XtReactor.lo `test -f 'XtReactor/XtReactor.cpp' || echo '$(srcdir)/'`XtReactor/XtReactor.cpp - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-pkgconfigDATA: $(pkgconfig_DATA) - @$(NORMAL_INSTALL) - test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" - @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ - done - -uninstall-pkgconfigDATA: - @$(NORMAL_UNINSTALL) - @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files -install-nobase_includeHEADERS: $(nobase_include_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)" - @list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \ - $(am__nobase_list) | while read dir files; do \ - xfiles=; for file in $$files; do \ - if test -f "$$file"; then xfiles="$$xfiles $$file"; \ - else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \ - test -z "$$xfiles" || { \ - test "x$$dir" = x. || { \ - echo "$(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \ - $(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \ - echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \ - $(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \ - done - -uninstall-nobase_includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \ - $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(includedir)" && rm -f $$files - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) check-recursive -all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) config.h -installdirs: installdirs-recursive -installdirs-am: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(includedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." - -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -clean: clean-recursive - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \ - mostlyclean-am - -distclean: distclean-recursive - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-hdr distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: install-nobase_includeHEADERS install-pkgconfigDATA - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES uninstall-nobase_includeHEADERS \ - uninstall-pkgconfigDATA - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \ - ctags-recursive install install-am install-strip \ - tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool clean-local ctags \ - ctags-recursive distclean distclean-compile distclean-generic \ - distclean-hdr distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-libLTLIBRARIES \ - install-man install-nobase_includeHEADERS install-pdf \ - install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ - uninstall uninstall-am uninstall-libLTLIBRARIES \ - uninstall-nobase_includeHEADERS uninstall-pkgconfigDATA - - -@BUILD_ACE_FOR_TAO_FALSE@ACE.pc: ${top_builddir}/config.status ${srcdir}/ACE.pc.in -@BUILD_ACE_FOR_TAO_FALSE@ ${top_builddir}/config.status --file $@:${srcdir}/ACE.pc.in - -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ACE_FlReactor.pc: ${top_builddir}/config.status ${srcdir}/FlReactor/ACE_FlReactor.pc.in -@BUILD_FL_TRUE@@BUILD_GL_TRUE@@BUILD_X11_TRUE@ ${top_builddir}/config.status --file $@:${srcdir}/FlReactor/ACE_FlReactor.pc.in - -@BUILD_QT_TRUE@QtReactor/QtReactor_moc.cpp: $(srcdir)/QtReactor/QtReactor.h -@BUILD_QT_TRUE@ $(QTDIR)/bin/moc $(srcdir)/QtReactor/QtReactor.h -o QtReactor/QtReactor_moc.cpp - -@BUILD_QT_TRUE@ACE_QtReactor.pc: ${top_builddir}/config.status ${srcdir}/QtReactor/ACE_QtReactor.pc.in -@BUILD_QT_TRUE@ ${top_builddir}/config.status --file $@:${srcdir}/QtReactor/ACE_QtReactor.pc.in - -@BUILD_TK_TRUE@ACE_TkReactor.pc: ${top_builddir}/config.status ${srcdir}/TkReactor/ACE_TkReactor.pc.in -@BUILD_TK_TRUE@ ${top_builddir}/config.status --file $@:${srcdir}/TkReactor/ACE_TkReactor.pc.in - -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ACE_XtReactor.pc: ${top_builddir}/config.status ${srcdir}/XtReactor/ACE_XtReactor.pc.in -@BUILD_X11_TRUE@@BUILD_XT_TRUE@ ${top_builddir}/config.status --file $@:${srcdir}/XtReactor/ACE_XtReactor.pc.in - -clean-local: - -rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.* - -rm -f gcctemp.c gcctemp so_locations *.ics - -rm -rf cxx_repository ptrepository ti_files - -rm -rf templateregistry ir.out - -rm -rf ptrepository SunWS_cache Templates.DB - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/dep/acelite/ace/Malloc.cpp b/dep/acelite/ace/Malloc.cpp index b742e92c83b..c332dde808f 100644 --- a/dep/acelite/ace/Malloc.cpp +++ b/dep/acelite/ace/Malloc.cpp @@ -1,4 +1,4 @@ -// $Id: Malloc.cpp 84282 2009-01-30 15:04:29Z msmit $ +// $Id: Malloc.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Malloc.h" @@ -11,11 +11,6 @@ #include "ace/OS_NS_string.h" -ACE_RCSID (ace, - Malloc, - "$Id: Malloc.cpp 84282 2009-01-30 15:04:29Z msmit $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Process-wide ACE_Allocator. diff --git a/dep/acelite/ace/Malloc_Allocator.cpp b/dep/acelite/ace/Malloc_Allocator.cpp index 4da0e5f8fef..53a81d0d3c7 100644 --- a/dep/acelite/ace/Malloc_Allocator.cpp +++ b/dep/acelite/ace/Malloc_Allocator.cpp @@ -1,4 +1,4 @@ -// $Id: Malloc_Allocator.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Malloc_Allocator.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Malloc_Allocator.h" #include "ace/Object_Manager.h" @@ -12,8 +12,6 @@ #include "ace/Log_Msg.h" // for ACE_ASSERT #include "ace/OS_NS_string.h" -ACE_RCSID (ace, Malloc_Allocator, "$Id: Malloc_Allocator.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Allocator * diff --git a/dep/acelite/ace/Malloc_Base.h b/dep/acelite/ace/Malloc_Base.h index d800c7fe544..35e46685126 100644 --- a/dep/acelite/ace/Malloc_Base.h +++ b/dep/acelite/ace/Malloc_Base.h @@ -4,7 +4,7 @@ /** * @file Malloc_Base.h * - * $Id: Malloc_Base.h 91058 2010-07-12 08:20:09Z johnnyw $ + * $Id: Malloc_Base.h 92085 2010-09-29 12:23:13Z johnnyw $ * * @author Doug Schmidt and Irfan Pyarali */ @@ -85,7 +85,7 @@ public: * Associate @a name with @a pointer. If @a duplicates == 0 then do * not allow duplicate @a name/@a pointer associations, else if * @a duplicates != 0 then allow duplicate @a name/@a pointer - * assocations. Returns 0 if successfully binds (1) a previously + * associations. Returns 0 if successfully binds (1) a previously * unbound @a name or (2) @a duplicates != 0, returns 1 if trying to * bind a previously bound @a name and @a duplicates == 0, else * returns -1 if a resource failure occurs. diff --git a/dep/acelite/ace/Malloc_T.cpp b/dep/acelite/ace/Malloc_T.cpp index 5a2a1852b95..88b456d66e2 100644 --- a/dep/acelite/ace/Malloc_T.cpp +++ b/dep/acelite/ace/Malloc_T.cpp @@ -1,4 +1,4 @@ -// $Id: Malloc_T.cpp 84282 2009-01-30 15:04:29Z msmit $ +// $Id: Malloc_T.cpp 91809 2010-09-17 07:20:41Z johnnyw $ #ifndef ACE_MALLOC_T_CPP #define ACE_MALLOC_T_CPP @@ -299,6 +299,18 @@ ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter (const char *pool_name) ACE_TRACE ("ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter"); } +template <class MALLOC> +ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter ( + const char *pool_name, + const char *lock_name, + MEMORY_POOL_OPTIONS options) + : allocator_ (ACE_TEXT_CHAR_TO_TCHAR (pool_name), + ACE_TEXT_CHAR_TO_TCHAR (lock_name), + options) +{ + ACE_TRACE ("ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter"); +} + #if defined (ACE_HAS_WCHAR) template <class MALLOC> ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter (const wchar_t *pool_name) @@ -306,6 +318,18 @@ ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter (const wchar_t *pool_name) { ACE_TRACE ("ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter"); } + +template <class MALLOC> +ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter ( + const wchar_t *pool_name, + const wchar_t *lock_name, + MEMORY_POOL_OPTIONS options) + : allocator_ (ACE_TEXT_WCHAR_TO_TCHAR (pool_name), + ACE_TEXT_WCHAR_TO_TCHAR (lock_name), + options) +{ + ACE_TRACE ("ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter"); +} #endif /* ACE_HAS_WCHAR */ template <class MALLOC> @@ -544,32 +568,6 @@ ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::ACE_Malloc_T (const ACE_TCHAR *p ACE_TEXT ("ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::ACE_Malloc_T"))); } -#if !defined (ACE_HAS_TEMPLATE_TYPEDEFS) -template <ACE_MEM_POOL_1, class ACE_LOCK, class ACE_CB> -ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::ACE_Malloc_T (const ACE_TCHAR *pool_name, - const ACE_TCHAR *lock_name, - const void *options) - : cb_ptr_ (0), - memory_pool_ (pool_name, - (const ACE_MEM_POOL_OPTIONS *) options), - bad_flag_ (0) -{ - ACE_TRACE ("ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::ACE_Malloc_T"); - - this->lock_ = ACE_Malloc_Lock_Adapter_T<ACE_LOCK> ()(lock_name); - if (this->lock_ == 0) - return; - - this->delete_lock_ = true; - this->bad_flag_ = this->open (); - if (this->bad_flag_ == -1) - ACE_ERROR ((LM_ERROR, - ACE_TEXT ("%p\n"), - ACE_TEXT ("ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::ACE_Malloc_T"))); -} -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ - - template <ACE_MEM_POOL_1, class ACE_LOCK, class ACE_CB> ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::~ACE_Malloc_T (void) { diff --git a/dep/acelite/ace/Malloc_T.h b/dep/acelite/ace/Malloc_T.h index 2d610eb5915..3d170b722f3 100644 --- a/dep/acelite/ace/Malloc_T.h +++ b/dep/acelite/ace/Malloc_T.h @@ -4,7 +4,7 @@ /** * @file Malloc_T.h * - * $Id: Malloc_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Malloc_T.h 92085 2010-09-29 12:23:13Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> and * Irfan Pyarali <irfan@cs.wustl.edu> @@ -213,14 +213,7 @@ class ACE_Allocator_Adapter : public ACE_Allocator public: // Trait. typedef MALLOC ALLOCATOR; - -#if defined (ACE_HAS_TEMPLATE_TYPEDEFS) - // The following code will break C++ compilers that don't support - // template typedefs correctly. typedef const typename MALLOC::MEMORY_POOL_OPTIONS *MEMORY_POOL_OPTIONS; -#else - typedef const void *MEMORY_POOL_OPTIONS; -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ // = Initialization. /** @@ -233,17 +226,10 @@ public: * Note that @a pool_name should be located in * a directory with the appropriate visibility and protection so * that all processes that need to access it can do so. - * This constructor must be inline to avoid bugs with some C++ - * compilers. */ + */ ACE_Allocator_Adapter (const char *pool_name, const char *lock_name, - MEMORY_POOL_OPTIONS options = 0) - : allocator_ (ACE_TEXT_CHAR_TO_TCHAR (pool_name), - ACE_TEXT_CHAR_TO_TCHAR (lock_name), - options) - { - ACE_TRACE ("ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter"); - } + MEMORY_POOL_OPTIONS options = 0); #if defined (ACE_HAS_WCHAR) /** @@ -256,17 +242,10 @@ public: * Note that @a pool_name should be located in * a directory with the appropriate visibility and protection so * that all processes that need to access it can do so. - * This constructor must be inline to avoid bugs with some C++ - * compilers. */ + */ ACE_Allocator_Adapter (const wchar_t *pool_name, const wchar_t *lock_name, - MEMORY_POOL_OPTIONS options = 0) - : allocator_ (ACE_TEXT_WCHAR_TO_TCHAR (pool_name), - ACE_TEXT_WCHAR_TO_TCHAR (lock_name), - options) - { - ACE_TRACE ("ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter"); - } + MEMORY_POOL_OPTIONS options = 0); #endif /* ACE_HAS_WCHAR */ /// Destructor. @@ -298,7 +277,7 @@ public: * Associate @a name with @a pointer. If @a duplicates == 0 then do * not allow duplicate @a name/pointer associations, else if * @a duplicates != 0 then allow duplicate @a name/pointer - * assocations. Returns 0 if successfully binds (1) a previously + * associations. Returns 0 if successfully binds (1) a previously * unbound @a name or (2) @a duplicates != 0, returns 1 if trying to * bind a previously bound @a name and @a duplicates == 0, else * returns -1 if a resource failure occurs. @@ -497,14 +476,6 @@ public: const ACE_MEM_POOL_OPTIONS *options, ACE_LOCK *lock); -#if !defined (ACE_HAS_TEMPLATE_TYPEDEFS) - /// This is necessary to work around template bugs with certain C++ - /// compilers. - ACE_Malloc_T (const ACE_TCHAR *pool_name, - const ACE_TCHAR *lock_name, - const void *options = 0); -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ - /// Destructor ~ACE_Malloc_T (void); @@ -544,7 +515,7 @@ public: * Associate @a name with @a pointer. If @a duplicates == 0 then do * not allow duplicate name/pointer associations, else if * @a duplicates != 0 then allow duplicate name/pointer - * assocations. Returns 0 if successfully binds (1) a previously + * associations. Returns 0 if successfully binds (1) a previously * unbound @a name or (2) @a duplicates != 0, returns 1 if trying to * bind a previously bound @a name and @a duplicates == 0, else * returns -1 if a resource failure occurs. @@ -747,8 +718,7 @@ public: * the set that hasn't yet been visited. Returns 0 when all items * have been seen, else 1. */ - int next (void *&next_entry, - const char *&name); + int next (void *&next_entry, const char *&name); /// Move forward by one element in the set. Returns 0 when all the /// items in the set have been seen, else 1. @@ -767,8 +737,10 @@ private: /// Keeps track of how far we've advanced... NAME_NODE *curr_; +// FUZZ: disable check_for_ACE_Guard /// Lock Malloc for the lifetime of the iterator. ACE_Read_Guard<ACE_LOCK> guard_; +// FUZZ: enable check_for_ACE_Guard /// Name that we are searching for. const char *name_; @@ -792,7 +764,6 @@ public: typedef typename ACE_CB::ACE_Name_Node NAME_NODE; typedef typename ACE_CB::ACE_Malloc_Header MALLOC_HEADER; - // = Initialization method. /// If @a name = 0 it will iterate through everything else only /// through those entries whose @a name match. ACE_Malloc_FIFO_Iterator_T (ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB> &malloc, @@ -815,8 +786,7 @@ public: * the set that hasn't yet been visited. Returns 0 when all items * have been seen, else 1. */ - int next (void *&next_entry, - const char *&name); + int next (void *&next_entry, const char *&name); /// Move forward by one element in the set. Returns 0 when all the /// items in the set have been seen, else 1. @@ -839,8 +809,10 @@ private: /// Keeps track of how far we've advanced... NAME_NODE *curr_; +// FUZZ: disable check_for_ACE_Guard /// Lock Malloc for the lifetime of the iterator. ACE_Read_Guard<ACE_LOCK> guard_; +// FUZZ: enable check_for_ACE_Guard /// Name that we are searching for. const char *name_; @@ -874,21 +846,12 @@ public: ACE_Malloc (const ACE_TCHAR *pool_name, const ACE_TCHAR *lock_name, const ACE_MEM_POOL_OPTIONS *options = 0); - -#if !defined (ACE_HAS_TEMPLATE_TYPEDEFS) - /// This is necessary to work around template bugs with certain C++ - /// compilers. - ACE_Malloc (const ACE_TCHAR *pool_name, - const ACE_TCHAR *lock_name, - const void *options = 0); -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ }; template <ACE_MEM_POOL_1, class ACE_LOCK> class ACE_Malloc_LIFO_Iterator : public ACE_Malloc_LIFO_Iterator_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_Control_Block> { public: - // = Initialization method. /// If @a name = 0 it will iterate through everything else only /// through those entries whose @a name match. ACE_Malloc_LIFO_Iterator (ACE_Malloc<ACE_MEM_POOL_2, ACE_LOCK> &malloc, @@ -899,7 +862,6 @@ template <ACE_MEM_POOL_1, class ACE_LOCK> class ACE_Malloc_FIFO_Iterator : public ACE_Malloc_FIFO_Iterator_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_Control_Block> { public: - // = Initialization method. /// If @a name = 0 it will iterate through everything else only /// through those entries whose @a name match. ACE_Malloc_FIFO_Iterator (ACE_Malloc<ACE_MEM_POOL_2, ACE_LOCK> &malloc, diff --git a/dep/acelite/ace/Malloc_T.inl b/dep/acelite/ace/Malloc_T.inl index 46f6c0c146b..af4c491f747 100644 --- a/dep/acelite/ace/Malloc_T.inl +++ b/dep/acelite/ace/Malloc_T.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Malloc_T.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Malloc_T.inl 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/OS_NS_string.h" @@ -63,10 +63,6 @@ ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::release (int close) { int const retv = --this->cb_ptr_->ref_counter_; -#if 0 - ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%P) ACE_Malloc_T::release ->%d\n"), - this->cb_ptr_->ref_counter_ - 1)); -#endif /* 0 */ if (close) this->memory_pool_.release (0); @@ -144,16 +140,6 @@ ACE_Malloc<ACE_MEM_POOL_2, ACE_LOCK>::ACE_Malloc (const ACE_TCHAR *pool_name, { } -#if !defined (ACE_HAS_TEMPLATE_TYPEDEFS) -template <ACE_MEM_POOL_1, class ACE_LOCK> ACE_INLINE -ACE_Malloc<ACE_MEM_POOL_2, ACE_LOCK>::ACE_Malloc (const ACE_TCHAR *pool_name, - const ACE_TCHAR *lock_name, - const void *options) - : ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_Control_Block> (pool_name, lock_name, options) -{ -} -#endif /* !ACE_HAS_TEMPLATE_TYPEDEFS */ - template <ACE_MEM_POOL_1, class ACE_LOCK> ACE_INLINE ACE_Malloc_LIFO_Iterator<ACE_MEM_POOL_2, ACE_LOCK>::ACE_Malloc_LIFO_Iterator (ACE_Malloc<ACE_MEM_POOL_2, ACE_LOCK> &malloc, const char *name) @@ -168,17 +154,4 @@ ACE_Malloc_FIFO_Iterator<ACE_MEM_POOL_2, ACE_LOCK>::ACE_Malloc_FIFO_Iterator (AC { } - -#if 0 -template <ACE_MEM_POOL_1, class ACE_LOCK, class ACE_CB> ACE_INLINE void -ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::init_malloc_header_ptr (void* ptr) -{ -#if (ACE_HAS_POSITION_INDEPENDENT_POINTERS == 1) - new (ptr) ACE_MALLOC_HEADER_PTR (this->cb_ptr_, 0); -#else - ACE_UNUSED_ARG (ptr); -#endif /* ACE_HAS_POSITION_INDEPENDENT_POINTERS == 1 */ -} -#endif /* 0 */ - ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Manual_Event.cpp b/dep/acelite/ace/Manual_Event.cpp index 0b3caead8ec..5fb4a84c917 100644 --- a/dep/acelite/ace/Manual_Event.cpp +++ b/dep/acelite/ace/Manual_Event.cpp @@ -1,4 +1,4 @@ -// $Id: Manual_Event.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Manual_Event.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Manual_Event.h" @@ -7,7 +7,7 @@ #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Manual_Event, "$Id: Manual_Event.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Map.h b/dep/acelite/ace/Map.h deleted file mode 100644 index ec675fb1fed..00000000000 --- a/dep/acelite/ace/Map.h +++ /dev/null @@ -1,32 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file Map.h - * - * $Id: Map.h 80826 2008-03-04 14:51:23Z wotte $ - * - * Backward compatibility header. - * - * @author Irfan Pyarali - */ -//============================================================================= - - -#ifndef ACE_MAP_H -#define ACE_MAP_H - -#include /**/ "ace/pre.h" - -#include /**/ "ace/config-all.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -// Include the templates here. -#include "ace/Map_T.h" - -#include /**/ "ace/post.h" - -#endif /* ACE_MAP_H */ diff --git a/dep/acelite/ace/Map_Manager.cpp b/dep/acelite/ace/Map_Manager.cpp index f1c8fbd63fb..54b7faf95b0 100644 --- a/dep/acelite/ace/Map_Manager.cpp +++ b/dep/acelite/ace/Map_Manager.cpp @@ -1,4 +1,4 @@ -// $Id: Map_Manager.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Map_Manager.cpp 91809 2010-09-17 07:20:41Z johnnyw $ #ifndef ACE_MAP_MANAGER_CPP #define ACE_MAP_MANAGER_CPP @@ -640,38 +640,6 @@ ACE_Map_Const_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::dump_i (void) const #endif /* ACE_HAS_DUMP */ } -template <class EXT_ID, class INT_ID, class ACE_LOCK> -ACE_Map_Entry<EXT_ID, INT_ID>& -ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::operator* (void) const -{ - // @@ This function should be inlined. We moved it here to avoid a - // compiler bug in SunCC 4.2. Once we know the correct patch to fix - // the compiler problem, it should be moved back to .i file again. - ACE_Map_Entry<EXT_ID, INT_ID> *retv = 0; - - int result = this->next (retv); - ACE_ASSERT (result != 0); - ACE_UNUSED_ARG (result); - - return *retv; -} - -template <class EXT_ID, class INT_ID, class ACE_LOCK> -ACE_Map_Entry<EXT_ID, INT_ID>& -ACE_Map_Const_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::operator* (void) const -{ - // @@ This function should be inlined. We moved it here to avoid a - // compiler bug in SunCC 4.2. Once we know the correct patch to fix - // the compiler problem, it should be moved back to .i file again. - ACE_Map_Entry<EXT_ID, INT_ID> *retv = 0; - - int result = this->next (retv); - ACE_ASSERT (result != 0); - ACE_UNUSED_ARG (result); - - return *retv; -} - template <class EXT_ID, class INT_ID, class ACE_LOCK> void ACE_Map_Iterator<EXT_ID, INT_ID, ACE_LOCK>::dump (void) const { diff --git a/dep/acelite/ace/Map_Manager.h b/dep/acelite/ace/Map_Manager.h index 23fd343c2fd..4423fa026ba 100644 --- a/dep/acelite/ace/Map_Manager.h +++ b/dep/acelite/ace/Map_Manager.h @@ -4,7 +4,7 @@ /** * @file Map_Manager.h * - * $Id: Map_Manager.h 91066 2010-07-12 11:05:04Z johnnyw $ + * $Id: Map_Manager.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -569,8 +569,8 @@ protected: * ACE_Map_Manager it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * ACE_Guard or ACE_Read_Guard on the ACE_Map_Manager's - * internal lock, which is accessible via its <mutex> method. + * ACE_GUARD or ACE_READ_GUARD on the ACE_Map_Manager's + * internal lock, which is accessible via its mutex() method. */ template <class EXT_ID, class INT_ID, class ACE_LOCK> class ACE_Map_Iterator : public ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> @@ -616,8 +616,8 @@ public: * ACE_Map_Manager it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * ACE_Guard or ACE_Read_Guard on the ACE_Map_Manager's - * internal lock, which is accessible via its <mutex> method. + * ACE_GUARD or ACE_READ_GUARD on the ACE_Map_Manager's + * internal lock, which is accessible via its mutex() method. */ template <class EXT_ID, class INT_ID, class ACE_LOCK> class ACE_Map_Const_Iterator : public ACE_Map_Const_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> @@ -663,8 +663,8 @@ public: * ACE_Map_Manager it is iterating upon since locking is * inherently inefficient and/or error-prone within an STL-style * iterator. If you require locking, you can explicitly use an - * ACE_Guard or ACE_Read_Guard on the ACE_Map_Manager's - * internal lock, which is accessible via its <mutex> method. + * ACE_GUARD or ACE_READ_GUARD on the ACE_Map_Manager's + * internal lock, which is accessible via its mutex() method. */ template <class EXT_ID, class INT_ID, class ACE_LOCK> class ACE_Map_Reverse_Iterator : public ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> diff --git a/dep/acelite/ace/Map_Manager.inl b/dep/acelite/ace/Map_Manager.inl index 62502c1c4d5..9aafdd8545d 100644 --- a/dep/acelite/ace/Map_Manager.inl +++ b/dep/acelite/ace/Map_Manager.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Map_Manager.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Map_Manager.inl 91809 2010-09-17 07:20:41Z johnnyw $ #include "ace/Guard_T.h" #include "ace/Log_Msg.h" @@ -726,4 +726,31 @@ ACE_Map_Reverse_Iterator<EXT_ID, INT_ID, ACE_LOCK>::operator-- (int) return retv; } +template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE +ACE_Map_Entry<EXT_ID, INT_ID>& +ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::operator* (void) const +{ + ACE_Map_Entry<EXT_ID, INT_ID> *retv = 0; + + int const result = this->next (retv); + ACE_ASSERT (result != 0); + ACE_UNUSED_ARG (result); + + return *retv; +} + +template <class EXT_ID, class INT_ID, class ACE_LOCK> ACE_INLINE +ACE_Map_Entry<EXT_ID, INT_ID>& +ACE_Map_Const_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK>::operator* (void) const +{ + ACE_Map_Entry<EXT_ID, INT_ID> *retv = 0; + + int const result = this->next (retv); + ACE_ASSERT (result != 0); + ACE_UNUSED_ARG (result); + + return *retv; +} + + ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Map_T.cpp b/dep/acelite/ace/Map_T.cpp index ef3184c5c2e..ff22dfa74f3 100644 --- a/dep/acelite/ace/Map_T.cpp +++ b/dep/acelite/ace/Map_T.cpp @@ -1,4 +1,4 @@ -// $Id: Map_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Map_T.cpp 92097 2010-09-30 05:41:49Z msmit $ #ifndef ACE_MAP_T_CPP #define ACE_MAP_T_CPP @@ -340,8 +340,8 @@ ACE_Active_Map_Manager_Iterator_Adapter<T, VALUE>::dereference () const { // The following syntax is necessary to work around certain broken compilers. // In particular, please do not prefix implementation_ with this-> - return T ((*implementation_).int_id_.first (), - (*implementation_).int_id_.second ()); + return T ((*implementation_).int_id_.first, + (*implementation_).int_id_.second); } template <class T, class VALUE> void @@ -386,8 +386,8 @@ ACE_Active_Map_Manager_Reverse_Iterator_Adapter<T, VALUE>::dereference () const { // The following syntax is necessary to work around certain broken compilers. // In particular, please do not prefix implementation_ with this-> - return T ((*implementation_).int_id_.first (), - (*implementation_).int_id_.second ()); + return T ((*implementation_).int_id_.first, + (*implementation_).int_id_.second); } template <class T, class VALUE> void @@ -443,13 +443,13 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::bind_modify_key (const // of <expanded_value>. result = this->key_adapter_.encode (key, active_key, - internal_value->first ()); + internal_value->first); if (result == 0) { // Copy user value into <expanded_value>. - internal_value->second (value); + internal_value->second = value; // Copy new, modified key back to the user key. - key = internal_value->first (); + key = internal_value->first; } else { @@ -479,15 +479,15 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::bind_create_key (const if (result == 0) { // Encode the active key into key part of <expanded_value>. - result = this->key_adapter_.encode (internal_value->first (), + result = this->key_adapter_.encode (internal_value->first, active_key, - internal_value->first ()); + internal_value->first); if (result == 0) { // Copy user value into <expanded_value>. - internal_value->second (value); + internal_value->second = value; // Copy new, modified key to the user key. - key = internal_value->first (); + key = internal_value->first; } else { @@ -510,13 +510,13 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::bind_create_key (const if (result == 0) { // Encode the active key into key part of <expanded_value>. - result = this->key_adapter_.encode (internal_value->first (), + result = this->key_adapter_.encode (internal_value->first, active_key, - internal_value->first ()); + internal_value->first); if (result == 0) { // Copy user value into <expanded_value>. - internal_value->second (value); + internal_value->second = value; } else { @@ -567,7 +567,7 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::find (const KEY &key, if (result == 0) { // Copy value. - value = internal_value->second (); + value = internal_value->second; } return result; @@ -592,7 +592,7 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::rebind (const KEY &key, if (result == 0) { // Reset value. - internal_value->second (value); + internal_value->second = value; } return result; @@ -610,10 +610,10 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::rebind (const KEY &key, if (result == 0) { // Copy old value. - old_value = internal_value->second (); + old_value = internal_value->second; // Reset to new value. - internal_value->second (value); + internal_value->second = value; } return result; @@ -632,11 +632,11 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::rebind (const KEY &key, if (result == 0) { // Copy old key and value. - old_key = internal_value->first (); - old_value = internal_value->second (); + old_key = internal_value->first; + old_value = internal_value->second; // Reset to new value. - internal_value->second (value); + internal_value->second = value; } return result; @@ -686,7 +686,7 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::unbind (const KEY &key, if (result == 0) { // Copy value. - value = internal_value->second (); + value = internal_value->second; } return result; diff --git a/dep/acelite/ace/Map_T.h b/dep/acelite/ace/Map_T.h index 0b400e20bde..bb5965a76d3 100644 --- a/dep/acelite/ace/Map_T.h +++ b/dep/acelite/ace/Map_T.h @@ -4,7 +4,7 @@ /** * @file Map_T.h * - * $Id: Map_T.h 84316 2009-02-03 19:46:05Z johnnyw $ + * $Id: Map_T.h 92097 2010-09-30 05:41:49Z msmit $ * * @author Irfan Pyarali <irfan@cs.wustl.edu> */ @@ -14,10 +14,10 @@ #define ACE_MAP_T_H #include /**/ "ace/pre.h" -#include "ace/Pair_T.h" #include "ace/Map_Manager.h" #include "ace/Hash_Map_Manager_T.h" #include "ace/Active_Map_Manager.h" +#include "ace/Pair_T.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once @@ -830,7 +830,7 @@ class ACE_Active_Map_Manager_Adapter : public ACE_Map<KEY, VALUE> public: // = Traits. - typedef ACE_Pair<KEY, VALUE> + typedef std::pair<KEY, VALUE> expanded_value; typedef ACE_Active_Map_Manager_Iterator_Adapter<ACE_Reference_Pair<const KEY, VALUE>, expanded_value> iterator_impl; @@ -983,7 +983,7 @@ public: virtual void dump (void) const; /// Accessor to implementation object. - ACE_Active_Map_Manager<ACE_Pair<KEY, VALUE> > &impl (void); + ACE_Active_Map_Manager<std::pair<KEY, VALUE> > &impl (void); /// Accessor to key adapter. KEY_ADAPTER &key_adapter (void); @@ -999,7 +999,7 @@ protected: expanded_value *&internal_value); /// All implementation details are forwarded to this class. - ACE_Active_Map_Manager<ACE_Pair<KEY, VALUE> > implementation_; + ACE_Active_Map_Manager<std::pair<KEY, VALUE> > implementation_; /// Adapts between the user key and the Active_Map_Manager_Key. KEY_ADAPTER key_adapter_; diff --git a/dep/acelite/ace/Map_T.inl b/dep/acelite/ace/Map_T.inl index adf32eb91c9..a9a0eb7966f 100644 --- a/dep/acelite/ace/Map_T.inl +++ b/dep/acelite/ace/Map_T.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Map_T.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Map_T.inl 92097 2010-09-30 05:41:49Z msmit $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -300,7 +300,7 @@ ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::ACE_Active_Map_Manager_ { } -template <class KEY, class VALUE, class KEY_ADAPTER> ACE_INLINE ACE_Active_Map_Manager<ACE_Pair<KEY, VALUE> > & +template <class KEY, class VALUE, class KEY_ADAPTER> ACE_INLINE ACE_Active_Map_Manager<std::pair<KEY, VALUE> > & ACE_Active_Map_Manager_Adapter<KEY, VALUE, KEY_ADAPTER>::impl (void) { return this->implementation_; diff --git a/dep/acelite/ace/Mem_Map.cpp b/dep/acelite/ace/Mem_Map.cpp index 15b20ec2024..baf9ce36189 100644 --- a/dep/acelite/ace/Mem_Map.cpp +++ b/dep/acelite/ace/Mem_Map.cpp @@ -1,4 +1,4 @@ -// $Id: Mem_Map.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Mem_Map.cpp 91286 2010-08-05 09:04:31Z johnnyw $ // Defines the member functions for the memory mapping facility. @@ -13,7 +13,7 @@ #include "ace/Log_Msg.h" #include "ace/Truncate.h" -ACE_RCSID(ace, Mem_Map, "Mem_Map.cpp,v 4.39 2003/11/01 11:15:13 dhinton Exp") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Message_Block.cpp b/dep/acelite/ace/Message_Block.cpp index 5afc4ba9004..0265fa11f1c 100644 --- a/dep/acelite/ace/Message_Block.cpp +++ b/dep/acelite/ace/Message_Block.cpp @@ -1,3 +1,4 @@ +// $Id: Message_Block.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Message_Block.h" #if !defined (__ACE_INLINE__) @@ -12,10 +13,6 @@ //#define ACE_ENABLE_TIMEPROBES #include "ace/Timeprobe.h" -ACE_RCSID (ace, - Message_Block, - "$Id: Message_Block.cpp 84527 2009-02-19 14:01:42Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE (ACE_Message_Block) diff --git a/dep/acelite/ace/Message_Queue.cpp b/dep/acelite/ace/Message_Queue.cpp index fefd67e6797..ff781d0971d 100644 --- a/dep/acelite/ace/Message_Queue.cpp +++ b/dep/acelite/ace/Message_Queue.cpp @@ -1,4 +1,4 @@ -// $Id: Message_Queue.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Message_Queue.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Message_Queue.h" #include "ace/Log_Msg.h" @@ -7,10 +7,6 @@ #include "ace/Message_Queue.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Message_Queue, - "$Id: Message_Queue.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Message_Queue_Base::~ACE_Message_Queue_Base (void) diff --git a/dep/acelite/ace/Message_Queue.h b/dep/acelite/ace/Message_Queue.h index 348cccfaf86..eca4a37606c 100644 --- a/dep/acelite/ace/Message_Queue.h +++ b/dep/acelite/ace/Message_Queue.h @@ -4,7 +4,7 @@ /** * @file Message_Queue.h * - * $Id: Message_Queue.h 88560 2010-01-15 05:02:05Z schmidt $ + * $Id: Message_Queue.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -64,13 +64,9 @@ public: // and WAS_INACTIVE are defined to match previous semantics for // applications that don't use the PULSED state. - /// @deprecated Use ACTIVATED instead. - WAS_ACTIVE = 1, /// Message queue is active and processing normally ACTIVATED = 1, - /// @deprecated Use DEACTIVATED instead. - WAS_INACTIVE = 2, /// Queue is deactivated; no enqueue or dequeue operations allowed. DEACTIVATED = 2, diff --git a/dep/acelite/ace/Message_Queue_NT.cpp b/dep/acelite/ace/Message_Queue_NT.cpp index 6f828db2378..085282e2039 100644 --- a/dep/acelite/ace/Message_Queue_NT.cpp +++ b/dep/acelite/ace/Message_Queue_NT.cpp @@ -1,4 +1,4 @@ -// $Id: Message_Queue_NT.cpp 88560 2010-01-15 05:02:05Z schmidt $ +// $Id: Message_Queue_NT.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Message_Queue.h" #include "ace/Message_Queue_NT.h" @@ -8,10 +8,6 @@ #include "ace/Message_Queue_NT.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Message_Queue_NT, - "$Id: Message_Queue_NT.cpp 88560 2010-01-15 05:02:05Z schmidt $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) diff --git a/dep/acelite/ace/Message_Queue_T.cpp b/dep/acelite/ace/Message_Queue_T.cpp index a33bac23e71..922c5ab83d6 100644 --- a/dep/acelite/ace/Message_Queue_T.cpp +++ b/dep/acelite/ace/Message_Queue_T.cpp @@ -1,4 +1,4 @@ -// $Id: Message_Queue_T.cpp 91016 2010-07-06 11:29:50Z johnnyw $ +// $Id: Message_Queue_T.cpp 91633 2010-09-07 14:27:13Z johnnyw $ #ifndef ACE_MESSAGE_QUEUE_T_CPP #define ACE_MESSAGE_QUEUE_T_CPP @@ -1699,7 +1699,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::peek_dequeue_head (ACE_Message_Block *&first_i // Wait for at least one item to become available. - if (this->wait_not_empty_cond (ace_mon, timeout) == -1) + if (this->wait_not_empty_cond (timeout) == -1) return -1; first_item = this->head_; @@ -1707,8 +1707,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::peek_dequeue_head (ACE_Message_Block *&first_i } template <ACE_SYNCH_DECL> int -ACE_Message_Queue<ACE_SYNCH_USE>::wait_not_full_cond (ACE_Guard<ACE_SYNCH_MUTEX_T> &, - ACE_Time_Value *timeout) +ACE_Message_Queue<ACE_SYNCH_USE>::wait_not_full_cond (ACE_Time_Value *timeout) { int result = 0; @@ -1734,8 +1733,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::wait_not_full_cond (ACE_Guard<ACE_SYNCH_MUTEX_ } template <ACE_SYNCH_DECL> int -ACE_Message_Queue<ACE_SYNCH_USE>::wait_not_empty_cond - (ACE_Guard<ACE_SYNCH_MUTEX_T> &, ACE_Time_Value *timeout) +ACE_Message_Queue<ACE_SYNCH_USE>::wait_not_empty_cond (ACE_Time_Value *timeout) { int result = 0; @@ -1779,7 +1777,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::enqueue_head (ACE_Message_Block *new_item, return -1; } - if (this->wait_not_full_cond (ace_mon, timeout) == -1) + if (this->wait_not_full_cond (timeout) == -1) return -1; queue_count = this->enqueue_head_i (new_item); @@ -1817,7 +1815,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::enqueue_prio (ACE_Message_Block *new_item, return -1; } - if (this->wait_not_full_cond (ace_mon, timeout) == -1) + if (this->wait_not_full_cond (timeout) == -1) return -1; queue_count = this->enqueue_i (new_item); @@ -1855,7 +1853,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::enqueue_deadline (ACE_Message_Block *new_item, return -1; } - if (this->wait_not_full_cond (ace_mon, timeout) == -1) + if (this->wait_not_full_cond (timeout) == -1) return -1; queue_count = this->enqueue_deadline_i (new_item); @@ -1900,7 +1898,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::enqueue_tail (ACE_Message_Block *new_item, return -1; } - if (this->wait_not_full_cond (ace_mon, timeout) == -1) + if (this->wait_not_full_cond (timeout) == -1) return -1; queue_count = this->enqueue_tail_i (new_item); @@ -1935,7 +1933,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::dequeue_head (ACE_Message_Block *&first_item, return -1; } - if (this->wait_not_empty_cond (ace_mon, timeout) == -1) + if (this->wait_not_empty_cond (timeout) == -1) return -1; return this->dequeue_head_i (first_item); @@ -1958,7 +1956,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::dequeue_prio (ACE_Message_Block *&dequeued, return -1; } - if (this->wait_not_empty_cond (ace_mon, timeout) == -1) + if (this->wait_not_empty_cond (timeout) == -1) return -1; return this->dequeue_prio_i (dequeued); @@ -1981,7 +1979,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::dequeue_tail (ACE_Message_Block *&dequeued, return -1; } - if (this->wait_not_empty_cond (ace_mon, timeout) == -1) + if (this->wait_not_empty_cond (timeout) == -1) return -1; return this->dequeue_tail_i (dequeued); @@ -2004,7 +2002,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::dequeue_deadline (ACE_Message_Block *&dequeued return -1; } - if (this->wait_not_empty_cond (ace_mon, timeout) == -1) + if (this->wait_not_empty_cond (timeout) == -1) return -1; return this->dequeue_deadline_i (dequeued); @@ -2215,7 +2213,7 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::dequeue_head (ACE_Message_Block *&firs return result; // *now* it's appropriate to wait for an enqueued item - result = this->wait_not_empty_cond (ace_mon, timeout); + result = this->wait_not_empty_cond (timeout); if (result == -1) return result; diff --git a/dep/acelite/ace/Message_Queue_T.h b/dep/acelite/ace/Message_Queue_T.h index e1e9953e892..73e4626766c 100644 --- a/dep/acelite/ace/Message_Queue_T.h +++ b/dep/acelite/ace/Message_Queue_T.h @@ -4,7 +4,7 @@ /** * @file Message_Queue_T.h * - * $Id: Message_Queue_T.h 82289 2008-07-11 08:12:09Z hillj $ + * $Id: Message_Queue_T.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -557,12 +557,10 @@ protected: // = Helper methods to factor out common #ifdef code. /// Wait for the queue to become non-full. - virtual int wait_not_full_cond (ACE_Guard<ACE_SYNCH_MUTEX_T> &mon, - ACE_Time_Value *timeout); + virtual int wait_not_full_cond (ACE_Time_Value *timeout); /// Wait for the queue to become non-empty. - virtual int wait_not_empty_cond (ACE_Guard<ACE_SYNCH_MUTEX_T> &mon, - ACE_Time_Value *timeout); + virtual int wait_not_empty_cond (ACE_Time_Value *timeout); /// Inform any threads waiting to enqueue that they can procede. virtual int signal_enqueue_waiters (void); diff --git a/dep/acelite/ace/Message_Queue_Vx.cpp b/dep/acelite/ace/Message_Queue_Vx.cpp index 9aa465d36e5..0c680b0353e 100644 --- a/dep/acelite/ace/Message_Queue_Vx.cpp +++ b/dep/acelite/ace/Message_Queue_Vx.cpp @@ -1,4 +1,4 @@ -// $Id: Message_Queue_Vx.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Message_Queue_Vx.cpp 91626 2010-09-07 10:59:20Z johnnyw $ #include "ace/Message_Queue_Vx.h" #include "ace/Log_Msg.h" @@ -7,11 +7,6 @@ #include "ace/Message_Queue_Vx.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Message_Queue_Vx, - "$Id: Message_Queue_Vx.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL #if defined (ACE_VXWORKS) @@ -333,24 +328,16 @@ ACE_Message_Queue_Vx::dequeue_deadline_i (ACE_Message_Block *& /*dequeued*/) // Take a look at the first item without removing it. int -ACE_Message_Queue_Vx::wait_not_full_cond (ACE_Guard<ACE_Null_Mutex> &mon, - ACE_Time_Value *tv) +ACE_Message_Queue_Vx::wait_not_full_cond (ACE_Time_Value *) { // Always return here, and let the VxWorks message queue handle blocking. - ACE_UNUSED_ARG (mon); - ACE_UNUSED_ARG (tv); - return 0; } int -ACE_Message_Queue_Vx::wait_not_empty_cond (ACE_Guard<ACE_Null_Mutex> &mon, - ACE_Time_Value *tv) +ACE_Message_Queue_Vx::wait_not_empty_cond (ACE_Time_Value *) { // Always return here, and let the VxWorks message queue handle blocking. - ACE_UNUSED_ARG (mon); - ACE_UNUSED_ARG (tv); - return 0; } diff --git a/dep/acelite/ace/Message_Queue_Vx.h b/dep/acelite/ace/Message_Queue_Vx.h index 5dd65c12478..39dac132159 100644 --- a/dep/acelite/ace/Message_Queue_Vx.h +++ b/dep/acelite/ace/Message_Queue_Vx.h @@ -4,7 +4,7 @@ /** * @file Message_Queue_Vx.h * - * $Id: Message_Queue_Vx.h 85579 2009-06-08 18:46:54Z mitza $ + * $Id: Message_Queue_Vx.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -107,6 +107,7 @@ public: * the message block sizes. */ virtual void message_bytes (size_t new_size); + /** * New value of the number of total length on the queue, i.e., sum * of the message block lengths. @@ -136,10 +137,10 @@ public: ACE_ALLOC_HOOK_DECLARE; protected: - /// Enqueue an <ACE_Message_Block *> in accordance with its priority. + /// Enqueue an ACE_Message_Block * in accordance with its priority. virtual int enqueue_i (ACE_Message_Block *new_item); - /// Enqueue an <ACE_Message_Block *> in accordance with its deadline time. + /// Enqueue an ACE_Message_Block * in accordance with its deadline time. virtual int enqueue_deadline_i (ACE_Message_Block *new_item); /// Enqueue an <ACE_Message_Block *> at the end of the queue. @@ -177,12 +178,10 @@ protected: // = Helper methods to factor out common #ifdef code. /// Wait for the queue to become non-full. - virtual int wait_not_full_cond (ACE_Guard<ACE_Null_Mutex> &mon, - ACE_Time_Value *tv); + virtual int wait_not_full_cond (ACE_Time_Value *tv); /// Wait for the queue to become non-empty. - virtual int wait_not_empty_cond (ACE_Guard<ACE_Null_Mutex> &mon, - ACE_Time_Value *tv); + virtual int wait_not_empty_cond (ACE_Time_Value *tv); /// Inform any threads waiting to enqueue that they can procede. virtual int signal_enqueue_waiters (void); diff --git a/dep/acelite/ace/Method_Object.h b/dep/acelite/ace/Method_Object.h deleted file mode 100644 index 5af98f531a3..00000000000 --- a/dep/acelite/ace/Method_Object.h +++ /dev/null @@ -1,38 +0,0 @@ -/* -*- C++ -*- */ - -//============================================================================= -/** - * @file Method_Object.h - * - * $Id: Method_Object.h 80826 2008-03-04 14:51:23Z wotte $ - * - * This file just #includes "ace/Method_Request.h" and is just here - * for backwards compatibility with earlier versions of ACE. - * Please don't use it directly since it may go away at some point. - * - * - * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> - */ -//============================================================================= - - -#ifndef ACE_METHOD_OBJECT_H -#define ACE_METHOD_OBJECT_H -#include /**/ "ace/pre.h" - -#include "ace/Method_Request.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -// Maintain backwards compatibility so that Steve Huston doesn't go -// postal... ;-) -typedef ACE_Method_Request ACE_Method_Object; - -ACE_END_VERSIONED_NAMESPACE_DECL - -#include /**/ "ace/post.h" -#endif /* ACE_METHOD_OBJECT_H */ diff --git a/dep/acelite/ace/Method_Request.cpp b/dep/acelite/ace/Method_Request.cpp index 972087c5d8b..f9927f7770b 100644 --- a/dep/acelite/ace/Method_Request.cpp +++ b/dep/acelite/ace/Method_Request.cpp @@ -1,9 +1,6 @@ +// $Id: Method_Request.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Method_Request.h" -ACE_RCSID (ace, - Method_Request, - "$Id: Method_Request.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Method_Request::ACE_Method_Request (unsigned long prio) diff --git a/dep/acelite/ace/Metrics_Cache_T.cpp b/dep/acelite/ace/Metrics_Cache_T.cpp index f94c3f06309..a1bca24d76b 100644 --- a/dep/acelite/ace/Metrics_Cache_T.cpp +++ b/dep/acelite/ace/Metrics_Cache_T.cpp @@ -1,4 +1,4 @@ -// $Id: Metrics_Cache_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Metrics_Cache_T.cpp 92090 2010-09-29 14:10:45Z johnnyw $ #ifndef ACE_METRICS_CACHE_CPP #define ACE_METRICS_CACHE_CPP @@ -15,8 +15,7 @@ #include "ace/Metrics_Cache_T.inl" #endif /* __ACE_INLINE__ */ -// Const strings for timeprobe event type descriptions. - +/// Const strings for timeprobe event type descriptions. static const char * event_description_strings [] = { "start", @@ -169,7 +168,7 @@ flush_ACE_Metrics_Timeprobe () template <class ACE_LOCK, class ALLOCATOR> ACE_Metrics_Cache<ACE_LOCK, ALLOCATOR>:: ACE_Metrics_Cache (u_long table_size, - u_long number_of_probes, + u_long, ALLOCATOR *alloc) : probe_set_size_ (0), enqueue_names_ (0), @@ -183,7 +182,6 @@ ACE_Metrics_Cache (u_long table_size, metrics_enabled_(1), allocator_ (alloc) { - ACE_UNUSED_ARG(number_of_probes); // Initialize probe and count arrays. // Ensure that the high res timer global scale factor @@ -207,7 +205,6 @@ ACE_Metrics_Cache<ACE_LOCK, ALLOCATOR>::~ACE_Metrics_Cache () { } - // Obtain an allocator pointer correctly thunked for the current // address space. If there is no allocator stored in the instance, // the singleton allocator in the current process is used. diff --git a/dep/acelite/ace/Metrics_Cache_T.h b/dep/acelite/ace/Metrics_Cache_T.h index dba5c961ca3..5cf438a13a0 100644 --- a/dep/acelite/ace/Metrics_Cache_T.h +++ b/dep/acelite/ace/Metrics_Cache_T.h @@ -4,7 +4,7 @@ /** * @file Metrics_Cache_T.h * - * $Id: Metrics_Cache_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Metrics_Cache_T.h 92090 2010-09-29 14:10:45Z johnnyw $ * * @author Chris Gill <cdgill@cse.wustl.edu> */ @@ -64,43 +64,43 @@ public: WORK_RESUME = 3 }; - // Default constructor: plugs in the above event descriptions. + /// Default constructor: plugs in the above event descriptions. ACE_Metrics_Timeprobe (u_int id = 0, const char *name = 0, u_long size = METRICS_DEFAULT_TIMEPROBE_TABLE_SIZE); - // Constructor with allocator: plugs in the above event descriptions. + /// Constructor with allocator: plugs in the above event descriptions. ACE_Metrics_Timeprobe (ALLOCATOR *allocatorPtr, u_int id = 0, const char *name = 0, u_long size = METRICS_DEFAULT_TIMEPROBE_TABLE_SIZE); - // Destructor. + /// Destructor. virtual ~ACE_Metrics_Timeprobe (); - // Returns true if a timeprobe event matches the passed id. + /// Returns true if a timeprobe event matches the passed id. int is_event (const ACE_METRICS_TIMEPROBE_DATA_TYPE &t, ACE_Metrics_Timeprobe<ACE_LOCK, ALLOCATOR>::event_id id); - // Accessor and mutator for probe name. + /// Accessor and mutator for probe name. const char * probe_name (void); void probe_name (char * name); - // Accessor for probe id. + /// Accessor for probe id. u_int probe_id (void); - // Mutator for probe id. + /// Mutator for probe id. void probe_id (u_int id); - // Flush the ACE metrics timeprobe into shared memory. + /// Flush the ACE metrics timeprobe into shared memory. void flush_ACE_Metrics_Timeprobe (); protected: - // Identifier for the timeprobe. + /// Identifier for the timeprobe. u_int id_; - // Name of the timeprobe. + /// Name of the timeprobe. char* name_; private: @@ -125,98 +125,98 @@ public: typedef ACE_Metrics_Cache <ACE_LOCK, ALLOCATOR> ACE_METRICS_CACHE_TYPE; - // Default constructor. + /// Default constructor. ACE_Metrics_Cache (u_long table_size = METRICS_DEFAULT_TIMEPROBE_TABLE_SIZE, u_long number_of_probes = METRICS_DEFAULT_TIMEPROBE_COUNT, ALLOCATOR * allocatorPtr = (ALLOCATOR*)ALLOCATOR::instance()); - // Destructor. + /// Destructor. ~ACE_Metrics_Cache (); // = Dispatching metrics. - // Report start, stop, suspend, and resume times of a dispatch - // enqueue: stores data metrics on the supplier side. + /// Report start, stop, suspend, and resume times of a dispatch + /// enqueue: stores data metrics on the supplier side. void report_enqueue_start (u_long i); void report_enqueue_stop (u_long i); void report_enqueue_suspend (u_long i); void report_enqueue_resume (u_long i); - // Report start, stop, suspend, and resume times of a dispatch - // dequeue: stores data metrics on the supplier side.. + /// Report start, stop, suspend, and resume times of a dispatch + /// dequeue: stores data metrics on the supplier side.. void report_dequeue_start (u_long i); void report_dequeue_stop (u_long i); void report_dequeue_suspend (u_long i); void report_dequeue_resume (u_long i); - // Reset the metrics data on the consumer side. + /// Reset the metrics data on the consumer side. void reset_base_statistics (); - // Flips the supplier and consumer sides. + /// Flips the supplier and consumer sides. void flip_supplier_and_consumer (); - // Flush the ACE metrics cache into shared memory. + /// Flush the ACE metrics cache into shared memory. void flush_ACE_Metrics_Cache (); - // Set the enable state for metrics collection. + /// Set the enable state for metrics collection. void metrics_enabled(int enabled); - // Return the enable state for metrics collection. + /// Return the enable state for metrics collection. int metrics_enabled(void) const; protected: - // Obtain an allocator pointer correctly thunked for the current - // address space. If there is no allocator stored in the instance, - // the singleton allocator in the current process is used. + /// Obtain an allocator pointer correctly thunked for the current + /// address space. If there is no allocator stored in the instance, + /// the singleton allocator in the current process is used. ALLOCATOR * allocator (void); // = Implementation members. - // Number of probes in each supplier/consumer set. + /// Number of probes in each supplier/consumer set. u_long probe_set_size_; - // Probe data counts for each supplier/consumer set. + /// Probe data counts for each supplier/consumer set. u_long * enqueue_count_ [2]; u_long * dequeue_count_ [2]; - // Probes for each supplier/consumer set. + /// Probes for each supplier/consumer set. ACE_Metrics_Timeprobe<ACE_LOCK, ALLOCATOR> ** enqueue_probes_ [2]; ACE_Metrics_Timeprobe<ACE_LOCK, ALLOCATOR> ** dequeue_probes_ [2]; - // Names for the probes. + /// Names for the probes. char ** enqueue_names_; char ** dequeue_names_; - // Index from which probe events are being consumed. - // for WSOA, it's the data being sent to the logger + /// Index from which probe events are being consumed. + /// for WSOA, it's the data being sent to the logger int consumer_index_; - // Index to which probe events are being supplied. - // for WSOA, it's the data being recorded from the probes + /// Index to which probe events are being supplied. + /// for WSOA, it's the data being recorded from the probes int supplier_index_; - // Size of the timestamp table in each probe. + /// Size of the timestamp table in each probe. u_long table_size_; - // Interval start and stop timestamps. + /// Interval start and stop timestamps. ACE_Time_Value interval_start_; - // Interval start and stop timestamps. + /// Interval start and stop timestamps. ACE_Time_Value interval_end_; - // Flag to indicate whether or not start time of interval has been - // initialized since the last reset. + /// Flag to indicate whether or not start time of interval has been + /// initialized since the last reset. int interval_initialized_; - // Indicator of whether metrics is enabled. + /// Indicator of whether metrics is enabled. int metrics_enabled_; private: - // Allocation strategy object. + /// Allocation strategy object. ALLOCATOR* allocator_; // Declare but do not define. diff --git a/dep/acelite/ace/Metrics_Cache_T.inl b/dep/acelite/ace/Metrics_Cache_T.inl index 790aa3db04a..d96df13f973 100644 --- a/dep/acelite/ace/Metrics_Cache_T.inl +++ b/dep/acelite/ace/Metrics_Cache_T.inl @@ -1,10 +1,12 @@ // -*- C++ -*- // -// $Id: Metrics_Cache_T.inl 83735 2008-11-14 09:41:52Z johnnyw $ +// $Id: Metrics_Cache_T.inl 92090 2010-09-29 14:10:45Z johnnyw $ #ifndef ACE_METRICS_CACHE_T_INL #define ACE_METRICS_CACHE_T_INL +#if defined (ACE_COMPILE_TIMEPROBES) + ACE_BEGIN_VERSIONED_NAMESPACE_DECL ///////////////////////////// @@ -237,4 +239,6 @@ ACE_Metrics_Cache<ACE_LOCK, ALLOCATOR>::metrics_enabled(void) const ACE_END_VERSIONED_NAMESPACE_DECL +#endif + #endif /* ACE_METRICS_CACHE_T_INL */ diff --git a/dep/acelite/ace/Module.h b/dep/acelite/ace/Module.h index 4ae5c285d89..a7e4575e5f3 100644 --- a/dep/acelite/ace/Module.h +++ b/dep/acelite/ace/Module.h @@ -4,7 +4,7 @@ /** * @file Module.h * - * $Id: Module.h 85417 2009-05-22 08:31:42Z johnnyw $ + * $Id: Module.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -43,22 +43,22 @@ public: /// Indicates that the flags have not been set M_FLAGS_NOT_SET = 0, - /// Indicates that <close> should delete the writer Task. + /// Indicates that close() should delete the writer Task. M_DELETE_READER = 1, - /// Indicates that <close> should delete the reader Task. + /// Indicates that close() should delete the reader Task. M_DELETE_WRITER = 2, - /// Indicates that <close> deletes the Tasks. + /// Indicates that close() deletes the Tasks. /** * Don't change this value without updating the same enum in class * ACE_Stream... - * The <M_DELETE_READER> and <M_DELETE_WRITER> flags may be or'ed + * The M_DELETE_READER and M_DELETE_WRITER flags may be or'ed * together. */ M_DELETE = 3, - /// Indicates that <close> should not delete any Tasks. + /// Indicates that close() should not delete any Tasks. M_DELETE_NONE = 4 }; }; diff --git a/dep/acelite/ace/Monitor_Point_Registry.cpp b/dep/acelite/ace/Monitor_Point_Registry.cpp index 4c3844f7ea5..81764432afa 100644 --- a/dep/acelite/ace/Monitor_Point_Registry.cpp +++ b/dep/acelite/ace/Monitor_Point_Registry.cpp @@ -1,4 +1,4 @@ -// $Id: Monitor_Point_Registry.cpp 81833 2008-06-04 14:44:53Z parsons $ +// $Id: Monitor_Point_Registry.cpp 91813 2010-09-17 07:52:52Z johnnyw $ #include "ace/Monitor_Point_Registry.h" @@ -42,7 +42,7 @@ namespace ACE type->add_ref (); status = this->map_.bind (type->name (), type); - + /// Temporary debugging code. // ACE_DEBUG ((LM_DEBUG, "adding %s\n", type->name ())); } @@ -75,7 +75,7 @@ namespace ACE ACE_CString name_str (name, 0, false); status = this->map_.unbind (name_str, mp); - + /// Temporary debugging code. // ACE_DEBUG ((LM_DEBUG, "removing %s\n", name_str.c_str ())); } diff --git a/dep/acelite/ace/Msg_WFMO_Reactor.cpp b/dep/acelite/ace/Msg_WFMO_Reactor.cpp index e06b698169f..dafda96f30e 100644 --- a/dep/acelite/ace/Msg_WFMO_Reactor.cpp +++ b/dep/acelite/ace/Msg_WFMO_Reactor.cpp @@ -1,8 +1,8 @@ -// $Id: Msg_WFMO_Reactor.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Msg_WFMO_Reactor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Msg_WFMO_Reactor.h" -ACE_RCSID(ace, Msg_WFMO_Reactor, "$Id: Msg_WFMO_Reactor.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if defined (ACE_WIN32) && !defined (ACE_LACKS_MSG_WFMO) diff --git a/dep/acelite/ace/Multihomed_INET_Addr.cpp b/dep/acelite/ace/Multihomed_INET_Addr.cpp index 2f861a0398c..b8b76965226 100644 --- a/dep/acelite/ace/Multihomed_INET_Addr.cpp +++ b/dep/acelite/ace/Multihomed_INET_Addr.cpp @@ -1,4 +1,4 @@ -// $Id: Multihomed_INET_Addr.cpp 83170 2008-10-13 07:21:38Z johnnyw $ +// $Id: Multihomed_INET_Addr.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ // Extends ACE_INET_Addr with support for multi-homed addresses. @@ -9,10 +9,6 @@ # include "ace/Multihomed_INET_Addr.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Multihomed_INET_Addr, - "$Id: Multihomed_INET_Addr.cpp 83170 2008-10-13 07:21:38Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Multihomed_INET_Addr) diff --git a/dep/acelite/ace/Multihomed_INET_Addr.h b/dep/acelite/ace/Multihomed_INET_Addr.h index 976ee813e9f..6be07a9103c 100644 --- a/dep/acelite/ace/Multihomed_INET_Addr.h +++ b/dep/acelite/ace/Multihomed_INET_Addr.h @@ -4,7 +4,7 @@ /** * @file Multihomed_INET_Addr.h * - * $Id: Multihomed_INET_Addr.h 84325 2009-02-04 22:46:30Z shuston $ + * $Id: Multihomed_INET_Addr.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Edward R. Mulholland <emulholl@atl.lmco.com> */ @@ -51,7 +51,7 @@ public: /** * Constructs an ACE_Multihomed_INET_Addr from a @a port_number, a - * @a primary_host_name, and an array of <secondary_host_names>. + * @a primary_host_name, and an array of @a secondary_host_names. * @a size is taken to be the length of the array. If @a encode is * non-zero, then @a port_number is converted into network byte * order; otherwise it is assumed to be in network byte order @@ -105,7 +105,7 @@ public: /// Use compiler-generated assignment operator. - /// Default dtor. + /// Default destructor. ~ACE_Multihomed_INET_Addr (void); // = Direct initialization methods. @@ -114,7 +114,7 @@ public: /** * Initializes an ACE_Multihomed_INET_Addr from a @a port_number, a - * @a primary_host_name, and an array of <secondary_host_names>. + * @a primary_host_name, and an array of @a secondary_host_names. * @a size is taken to be the length of the array. If @a encode is * non-zero, then @a port_number is converted into network byte * order; otherwise it is assumed to be in network byte order @@ -174,14 +174,12 @@ public: * primary and secondary addresses. @a size is taken as the size of * this array. */ - void get_addresses(sockaddr_in *addrs, - size_t size) const; + void get_addresses(sockaddr_in *addrs, size_t size) const; #if defined (ACE_HAS_IPV6) /// IPV6 version of the above. - void get_addresses(sockaddr_in6 *addrs, - size_t size) const; + void get_addresses(sockaddr_in6 *addrs, size_t size) const; #endif /* ACE_HAS_IPV6 */ private: diff --git a/dep/acelite/ace/Mutex.cpp b/dep/acelite/ace/Mutex.cpp index 65a477f455b..5106f027274 100644 --- a/dep/acelite/ace/Mutex.cpp +++ b/dep/acelite/ace/Mutex.cpp @@ -1,4 +1,4 @@ -// $Id: Mutex.cpp 84282 2009-01-30 15:04:29Z msmit $ +// $Id: Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Mutex.h" @@ -10,11 +10,6 @@ #include "ace/OS_NS_string.h" #include "ace/os_include/sys/os_mman.h" - -ACE_RCSID (ace, - Mutex, - "$Id: Mutex.cpp 84282 2009-01-30 15:04:29Z msmit $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Mutex) diff --git a/dep/acelite/ace/Mutex.h b/dep/acelite/ace/Mutex.h index e738745940a..7183a2db3f2 100644 --- a/dep/acelite/ace/Mutex.h +++ b/dep/acelite/ace/Mutex.h @@ -4,7 +4,7 @@ /** * @file Mutex.h * - * $Id: Mutex.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Mutex.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -144,6 +144,7 @@ public: /// Return the underlying mutex. const ACE_mutex_t &lock (void) const; + ACE_mutex_t &lock (void); /// Dump the state of an object. void dump (void) const; diff --git a/dep/acelite/ace/Mutex.inl b/dep/acelite/ace/Mutex.inl index 8c6c73c8667..5942808bd4f 100644 --- a/dep/acelite/ace/Mutex.inl +++ b/dep/acelite/ace/Mutex.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Mutex.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Mutex.inl 91626 2010-09-07 10:59:20Z johnnyw $ #include "ace/OS_NS_sys_mman.h" @@ -51,6 +51,17 @@ ACE_Mutex::lock (void) const return this->lock_; } +ACE_INLINE ACE_mutex_t & +ACE_Mutex::lock (void) +{ +// ACE_TRACE ("ACE_Mutex::lock"); +#if defined (ACE_HAS_PTHREADS) || defined(ACE_HAS_STHREADS) + if (this->process_lock_) + return *this->process_lock_; +#endif /* ACE_HAS_PTHREADS || ACE_HAS_STHREADS */ + return this->lock_; +} + ACE_INLINE int ACE_Mutex::tryacquire_write (void) { diff --git a/dep/acelite/ace/Name_Proxy.cpp b/dep/acelite/ace/Name_Proxy.cpp index 5755e971eec..b96bb02196a 100644 --- a/dep/acelite/ace/Name_Proxy.cpp +++ b/dep/acelite/ace/Name_Proxy.cpp @@ -1,10 +1,10 @@ -// $Id: Name_Proxy.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Name_Proxy.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Name_Proxy.h" #include "ace/Log_Msg.h" #include "ace/os_include/arpa/os_inet.h" -ACE_RCSID(ace, Name_Proxy, "$Id: Name_Proxy.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Name_Request_Reply.cpp b/dep/acelite/ace/Name_Request_Reply.cpp index 18329ab9df0..2d57818f97f 100644 --- a/dep/acelite/ace/Name_Request_Reply.cpp +++ b/dep/acelite/ace/Name_Request_Reply.cpp @@ -1,3 +1,5 @@ +// $Id: Name_Request_Reply.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ + #include "ace/Name_Request_Reply.h" #include "ace/Basic_Types.h" #include "ace/CDR_Base.h" @@ -7,10 +9,6 @@ #include "ace/OS_NS_string.h" #include "ace/os_include/arpa/os_inet.h" -ACE_RCSID (ace, - Name_Request_Reply, - "$Id: Name_Request_Reply.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Default "do nothing" constructor. diff --git a/dep/acelite/ace/Name_Space.cpp b/dep/acelite/ace/Name_Space.cpp index 9fe88795038..7e8f01decde 100644 --- a/dep/acelite/ace/Name_Space.cpp +++ b/dep/acelite/ace/Name_Space.cpp @@ -1,11 +1,11 @@ // Name_Space.cpp -// $Id: Name_Space.cpp 84834 2009-03-16 12:28:51Z johnnyw $ +// $Id: Name_Space.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Name_Space.h" #include "ace/OS_NS_string.h" #include "ace/OS_NS_stdlib.h" -ACE_RCSID(ace, Name_Space, "$Id: Name_Space.cpp 84834 2009-03-16 12:28:51Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Naming_Context.cpp b/dep/acelite/ace/Naming_Context.cpp index 103d9d79352..4bf312e8ad8 100644 --- a/dep/acelite/ace/Naming_Context.cpp +++ b/dep/acelite/ace/Naming_Context.cpp @@ -1,4 +1,4 @@ -// $Id: Naming_Context.cpp 84565 2009-02-23 08:20:39Z johnnyw $ +// $Id: Naming_Context.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Get_Opt.h" #include "ace/Naming_Context.h" @@ -14,7 +14,7 @@ # include "ace/Trace.h" #endif /* ACE_HAS_TRACE */ -ACE_RCSID(ace, Naming_Context, "$Id: Naming_Context.cpp 84565 2009-02-23 08:20:39Z johnnyw $") + #if !defined (__ACE_INLINE__) #include "ace/Naming_Context.inl" diff --git a/dep/acelite/ace/Notification_Strategy.cpp b/dep/acelite/ace/Notification_Strategy.cpp index 1e022e07953..e37f85ecefd 100644 --- a/dep/acelite/ace/Notification_Strategy.cpp +++ b/dep/acelite/ace/Notification_Strategy.cpp @@ -1,11 +1,11 @@ +// $Id: Notification_Strategy.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Notification_Strategy.h" #if !defined (__ACE_INLINE__) #include "ace/Notification_Strategy.inl" #endif /* __ACE_INLINE __ */ -ACE_RCSID(ace, Strategies, "$Id: Notification_Strategy.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Notification_Strategy::ACE_Notification_Strategy (ACE_Event_Handler *eh, diff --git a/dep/acelite/ace/Null_Barrier.h b/dep/acelite/ace/Null_Barrier.h index 5cd9ef8386f..6ea89e7db03 100644 --- a/dep/acelite/ace/Null_Barrier.h +++ b/dep/acelite/ace/Null_Barrier.h @@ -4,7 +4,7 @@ /** * @file Null_Barrier.h * - * $Id: Null_Barrier.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Null_Barrier.h 91626 2010-09-07 10:59:20Z johnnyw $ * * Moved from Synch.h. * @@ -18,9 +18,6 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -// All methods in this class are inline, so there is no -// need to import or export on Windows. -- CAE 12/18/2003 - /** * @class ACE_Null_Barrier * diff --git a/dep/acelite/ace/Null_Condition.h b/dep/acelite/ace/Null_Condition.h index 02131e2134e..5f6277d1146 100644 --- a/dep/acelite/ace/Null_Condition.h +++ b/dep/acelite/ace/Null_Condition.h @@ -4,7 +4,7 @@ /** * @file Null_Condition.h * - * $Id: Null_Condition.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Null_Condition.h 91626 2010-09-07 10:59:20Z johnnyw $ * * Moved from Synch.h. * @@ -16,8 +16,6 @@ #define ACE_NULL_CONDITION_H #include /**/ "ace/pre.h" -// All methods in this class are inline, so there is no -// need to import or export on Windows. -- CAE 12/18/2003 #include "ace/Null_Mutex.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) diff --git a/dep/acelite/ace/Null_Mutex.h b/dep/acelite/ace/Null_Mutex.h index 85aefb0e51d..85d06688a7b 100644 --- a/dep/acelite/ace/Null_Mutex.h +++ b/dep/acelite/ace/Null_Mutex.h @@ -4,7 +4,7 @@ /** * @file Null_Mutex.h * - * $Id: Null_Mutex.h 86731 2009-09-17 12:23:48Z johnnyw $ + * $Id: Null_Mutex.h 91626 2010-09-07 10:59:20Z johnnyw $ * * Moved from Synch.h. * @@ -16,12 +16,6 @@ #define ACE_NULL_MUTEX_H #include /**/ "ace/pre.h" -// All methods in this class are inline, so there is no -// need to import or export on Windows. -- CAE 12/18/2003 -// Update... leaving off the ACE_Export causes compile warnings in some -// cases with Microsoft Visual Studio .NET 2005, so I added the ACE_Export -// to these class declarations. Steve Huston, 12/8/2006. - #include "ace/os_include/os_errno.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) @@ -90,35 +84,7 @@ public: int lock_; // A dummy lock. }; -#if defined (ACE_USES_OBSOLETE_GUARD_CLASSES) -/** - * @class ACE_Null_Mutex_Guard - * - * @brief This data structure is meant to be used within a method or - * function... It performs automatic aquisition and release of - * an ACE_Null_Mutex. - * - * This class is obsolete and should be replaced by - * ACE_Guard<ACE_Null_Mutex>. - */ -class ACE_Export ACE_Null_Mutex_Guard -{ -public: - ACE_Null_Mutex_Guard (ACE_Null_Mutex &) {} - ~ACE_Null_Mutex_Guard (void) {} - int remove (void) {return 0;} - int locked (void) {return 1;} - int acquire (void) {return 0;} - int tryacquire (void) {return 0;} - int release (void) {return 0:} - void dump (void) const {} - -private: - // = Prevent assignment and initialization. - void operator= (const ACE_Null_Mutex_Guard &); - ACE_Null_Mutex_Guard (const ACE_Null_Mutex_Guard &); -}; -#endif /* ACE_USES_OBSOLETE_GUARD_CLASSES */ +// FUZZ: disable check_for_ACE_Guard template <class ACE_LOCK> class ACE_Guard; @@ -206,6 +172,8 @@ public: void dump (void) const {} }; +// FUZZ: enable check_for_ACE_Guard + template <class T> class ACE_Malloc_Lock_Adapter_T; /** diff --git a/dep/acelite/ace/Null_Semaphore.h b/dep/acelite/ace/Null_Semaphore.h index d7a48cce4d1..6d152e23a59 100644 --- a/dep/acelite/ace/Null_Semaphore.h +++ b/dep/acelite/ace/Null_Semaphore.h @@ -4,7 +4,7 @@ /** * @file Null_Semaphore.h * - * $Id: Null_Semaphore.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Null_Semaphore.h 91626 2010-09-07 10:59:20Z johnnyw $ * * Moved from Synch.h. * @@ -16,8 +16,6 @@ #define ACE_NULL_SEMAPHORE_H #include /**/ "ace/pre.h" -// All methods in this class are inline, so there is no -// need to import or export on Windows. -- CAE 12/18/2003 #include "ace/os_include/os_errno.h" #include "ace/os_include/sys/os_types.h" diff --git a/dep/acelite/ace/OS.cpp b/dep/acelite/ace/OS.cpp deleted file mode 100644 index 0fd57bdd5e7..00000000000 --- a/dep/acelite/ace/OS.cpp +++ /dev/null @@ -1,53 +0,0 @@ -// $Id: OS.cpp 80826 2008-03-04 14:51:23Z wotte $ - -// FUZZ: disable check_for_OS_h_include -#include "ace/OS.h" - -#if !defined (ACE_HAS_WINCE) -# include "ace/OS_QoS.h" -#endif // ACE_HAS_WINCE - -// Perhaps we should *always* include ace/OS.i in order to make sure -// we can always link against the OS symbols? -#if !defined (ACE_HAS_INLINED_OSCALLS) -# include "ace/OS.inl" -#endif /* ACE_HAS_INLINED_OSCALLS */ - -ACE_RCSID(ace, OS, "$Id: OS.cpp 80826 2008-03-04 14:51:23Z wotte $") - -// include new cpps -#include "ace/Cleanup.cpp" -#include "ace/Object_Manager_Base.cpp" -#include "ace/OS_main.cpp" -#include "ace/OS_NS_arpa_inet.cpp" -#include "ace/OS_NS_ctype.cpp" -#include "ace/OS_NS_dirent.cpp" -#include "ace/OS_NS_dlfcn.cpp" -#include "ace/OS_NS_errno.cpp" -#include "ace/OS_NS_fcntl.cpp" -#include "ace/OS_NS_math.cpp" -#include "ace/OS_NS_netdb.cpp" -#include "ace/OS_NS_poll.cpp" -#include "ace/OS_NS_pwd.cpp" -#include "ace/OS_NS_regex.cpp" -#include "ace/OS_NS_signal.cpp" -#include "ace/OS_NS_stdio.cpp" -#include "ace/OS_NS_stdlib.cpp" -#include "ace/OS_NS_string.cpp" -#include "ace/OS_NS_strings.cpp" -#include "ace/OS_NS_stropts.cpp" -#include "ace/OS_NS_sys_mman.cpp" -#include "ace/OS_NS_sys_msg.cpp" -#include "ace/OS_NS_sys_resource.cpp" -#include "ace/OS_NS_sys_select.cpp" -#include "ace/OS_NS_sys_shm.cpp" -#include "ace/OS_NS_sys_socket.cpp" -#include "ace/OS_NS_sys_stat.cpp" -#include "ace/OS_NS_sys_time.cpp" -#include "ace/OS_NS_sys_uio.cpp" -#include "ace/OS_NS_sys_utsname.cpp" -#include "ace/OS_NS_sys_wait.cpp" -#include "ace/OS_NS_Thread.cpp" -#include "ace/OS_NS_time.cpp" -#include "ace/OS_NS_unistd.cpp" -#include "ace/OS_NS_wchar.cpp" diff --git a/dep/acelite/ace/OS.h b/dep/acelite/ace/OS.h deleted file mode 100644 index ec6c4ef9eb9..00000000000 --- a/dep/acelite/ace/OS.h +++ /dev/null @@ -1,329 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file OS.h - * - * $Id: OS.h 80826 2008-03-04 14:51:23Z wotte $ - * - * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> - * @author Jesper S. M|ller<stophph@diku.dk> - * @author and a cast of thousands... - */ -//============================================================================= - -#ifndef ACE_OS_H -#define ACE_OS_H - -#include /**/ "ace/pre.h" - -#include /**/ "ace/config-all.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#if !defined (DO_NOT_INCLUDE_OS_H) -#include "ace/Cleanup.h" -#include "ace/Object_Manager_Base.h" -#include "ace/OS_main.h" -#include "ace/OS_NS_arpa_inet.h" -#include "ace/OS_NS_ctype.h" -#include "ace/OS_NS_dirent.h" -#include "ace/OS_NS_dlfcn.h" -#include "ace/OS_NS_errno.h" -#include "ace/OS_NS_fcntl.h" -#include "ace/OS_NS_math.h" -#include "ace/OS_NS_netdb.h" -#include "ace/OS_NS_poll.h" -#include "ace/OS_NS_pwd.h" -#include "ace/OS_NS_regex.h" -#include "ace/OS_NS_signal.h" -#include "ace/OS_NS_stdio.h" -#include "ace/OS_NS_stdlib.h" -#include "ace/OS_NS_string.h" -#include "ace/OS_NS_strings.h" -#include "ace/OS_NS_stropts.h" -#include "ace/OS_NS_sys_mman.h" -#include "ace/OS_NS_sys_msg.h" -#include "ace/OS_NS_sys_resource.h" -#include "ace/OS_NS_sys_select.h" -#include "ace/OS_NS_sys_shm.h" -#include "ace/OS_NS_sys_socket.h" -#include "ace/OS_NS_sys_stat.h" -#include "ace/OS_NS_sys_time.h" -#include "ace/OS_NS_sys_uio.h" -#include "ace/OS_NS_sys_utsname.h" -#include "ace/OS_NS_sys_wait.h" -#include "ace/OS_NS_Thread.h" -#include "ace/OS_NS_time.h" -#include "ace/OS_NS_unistd.h" -#include "ace/OS_NS_wchar.h" - -// Include the split up ACE_OS classes -#include "ace/OS_Dirent.h" -#include "ace/OS_String.h" -#include "ace/OS_Memory.h" -#include "ace/OS_TLI.h" -#include "ace/OS_Errno.h" - -#include "ace/os_include/os_dlfcn.h" -#include "ace/os_include/sys/os_mman.h" -#include "ace/os_include/os_netdb.h" -#include "ace/os_include/sys/os_socket.h" -#include "ace/os_include/net/os_if.h" -#include "ace/os_include/sys/os_sem.h" - -#include "ace/Time_Value.h" - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -class ACE_Timeout_Manager; - -ACE_END_VERSIONED_NAMESPACE_DECL - -// Here are all ACE-specific default constants, needed throughout ACE -// and its applications. The values can be over written by user -// specific values in config.h files. -#include "ace/Default_Constants.h" - -// Here are all ACE-specific global declarations needed throughout -// ACE. -#include "ace/Global_Macros.h" - -// include the ACE min()/max() functions. -# include "ace/Min_Max.h" - -/////////////////////////////////////////// -// // -// NOTE: Please do not add any #includes // -// before this point. On VxWorks, // -// vxWorks.h must be #included // -// first! // -// // -/////////////////////////////////////////// - -#include "ace/os_include/netinet/os_tcp.h" -#include "ace/os_include/sys/os_stat.h" -#include "ace/os_include/os_stropts.h" -#include "ace/os_include/os_unistd.h" -#include "ace/os_include/sys/os_wait.h" - - -// This needs to go here *first* to avoid problems with AIX. -# if defined (ACE_HAS_PTHREADS) -# include "ace/os_include/os_pthread.h" -# endif /* ACE_HAS_PTHREADS */ - -# if defined (ACE_HAS_PROC_FS) -# include /**/ <sys/procfs.h> -# endif /* ACE_HAS_PROC_FS */ - -# if defined (ACE_HAS_POSIX_SEM) -# include "ace/os_include/os_semaphore.h" -# endif /* ACE_HAS_POSIX_SEM */ - -#include "ace/os_include/sys/os_types.h" -#include "ace/os_include/os_stddef.h" -#if !defined (ACE_LACKS_UNISTD_H) -# include "ace/os_include/os_unistd.h" -#endif /* ACE_LACKS_UNISTD_H */ - -// Standard C Library includes -# if !defined (ACE_HAS_WINCE) -# include "ace/os_include/os_assert.h" -# include "ace/os_include/os_stdio.h" - -# if !defined (ACE_LACKS_NEW_H) -# if defined (ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB) -# include /**/ <new> -# else -# include /**/ <new.h> -# endif /* ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB */ -# endif /* ! ACE_LACKS_NEW_H */ - -# if !defined (ACE_VXWORKS) -# define ACE_DONT_INCLUDE_ACE_SIGNAL_H -# include "ace/os_include/os_signal.h" -# undef ACE_DONT_INCLUDE_ACE_SIGNAL_H -# endif /* ! VXWORKS */ - -# include "ace/os_include/os_fcntl.h" -# endif /* ACE_HAS_WINCE */ - -# include "ace/os_include/os_limits.h" -# include "ace/os_include/os_ctype.h" -# include "ace/os_include/os_string.h" -# include "ace/os_include/os_stdlib.h" -# include "ace/os_include/os_float.h" - -# if defined (ACE_NEEDS_SCHED_H) -# include "ace/os_include/os_sched.h" -# endif /* ACE_NEEDS_SCHED_H */ - -# include "ace/iosfwd.h" - -# if !defined (ACE_HAS_WINCE) -# include "ace/os_include/os_fcntl.h" -# endif /* ACE_HAS_WINCE */ - -# if defined ACE_HAS_BYTESEX_H -# include /**/ <bytesex.h> -# endif /* ACE_HAS_BYTESEX_H */ -# include "ace/Basic_Types.h" - -# if defined (ACE_HAS_UTIME) -# include "ace/os_include/os_utime.h" -# endif /* ACE_HAS_UTIME */ - -# if defined (ACE_WIN32) - -# if !defined (ACE_HAS_WINCE) -# include "ace/os_include/sys/os_timeb.h" -# endif /* ACE_HAS_WINCE */ - -# if defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0) -# include "ace/os_include/netinet/os_in.h" // <ws2tcpip.h> -# endif /* ACE_HAS_WINSOCK2 */ - -# if !defined (ACE_HAS_WINCE) -# include "ace/os_include/os_time.h" -# include "ace/os_include/sys/os_stat.h" // <direct.h> -# include "ace/os_include/os_unistd.h" // <process.h> -# endif /* ACE_HAS_WINCE */ - -# include "ace/os_include/os_fcntl.h" - -# else /* !defined (ACE_WIN32) */ - -# if defined (CYGWIN32) -# include "ace/os_include/sys/os_uio.h" -# include "ace/os_include/os_fcntl.h" // <sys/file.h> -# include "ace/os_include/sys/os_time.h" -# include "ace/os_include/sys/os_resource.h" -# include "ace/os_include/sys/os_wait.h" -# include "ace/os_include/os_pwd.h" -# elif defined (__QNX__) -# include "ace/os_include/sys/os_uio.h" -# include "ace/os_include/sys/os_ipc.h" -# include "ace/os_include/sys/os_time.h" -# include "ace/os_include/sys/os_wait.h" -# include "ace/os_include/sys/os_resource.h" -# include "ace/os_include/os_pwd.h" - // sets O_NDELAY -# include /**/ <unix.h> -# include "ace/os_include/os_limits.h" // <sys/param.h> /* for NBBY */ -# elif defined(ACE_HAS_RTEMS) -# include "ace/os_include/os_fcntl.h" // <sys/file.h> -# include "ace/os_include/sys/os_resource.h" -# include "ace/os_include/sys/os_time.h" -# include "ace/os_include/sys/os_utsname.h" -# include "ace/os_include/sys/os_wait.h" -# include "ace/os_include/os_pwd.h" - -# elif ! defined (ACE_VXWORKS) && ! defined (INTEGRITY) -# include "ace/os_include/sys/os_uio.h" -# include "ace/os_include/sys/os_ipc.h" -# if !defined(ACE_LACKS_SYSV_SHMEM) -// No reason to #include this if the platform lacks support for SHMEM -# include "ace/os_include/sys/os_shm.h" -# endif /* ACE_LACKS_SYSV_SHMEM */ -# include "ace/os_include/os_fcntl.h" // <sys/file.h> -# include "ace/os_include/sys/os_time.h" -# include "ace/os_include/sys/os_resource.h" -# include "ace/os_include/sys/os_wait.h" -# include "ace/os_include/os_pwd.h" -# endif /* ! VXWORKS */ -# include "ace/os_include/os_stropts.h" // <sys/ioctl.h> - -// IRIX5 defines bzero() in this odd file... -# if defined (ACE_HAS_BSTRING) -# include /**/ <bstring.h> -# endif /* ACE_HAS_BSTRING */ - -// AIX defines bzero() in this odd file... -# if defined (ACE_HAS_STRINGS) -# include "ace/os_include/os_strings.h" -# endif /* ACE_HAS_STRINGS */ - -# if defined (ACE_HAS_TERMIOS) -# include "ace/os_include/os_termios.h" -# endif /* ACE_HAS_TERMIOS */ - -# if defined (ACE_HAS_AIO_CALLS) -# include "ace/os_include/os_aio.h" -# endif /* ACE_HAS_AIO_CALLS */ - -# include "ace/os_include/os_limits.h" // <sys/param.h> - -# if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS) -# include "ace/os_include/sys/os_un.h" -# endif /* ACE_LACKS_UNIX_DOMAIN_SOCKETS */ - -# if defined (ACE_HAS_POLL) -# include "ace/os_include/os_poll.h" -# endif /* ACE_HAS_POLL */ - -# if defined (ACE_HAS_SELECT_H) -# include "ace/os_include/sys/os_select.h" -# endif /* ACE_HAS_SELECT_H */ - -# include "ace/os_include/sys/os_msg.h" - -# if defined (ACE_HAS_PRIOCNTL) -# include /**/ <sys/priocntl.h> -# endif /* ACE_HAS_PRIOCNTL */ - -# endif /* !defined (ACE_WIN32) */ - -# if !defined (ACE_WIN32) && !defined (ACE_LACKS_UNIX_SYSLOG) -# include "ace/os_include/os_syslog.h" -# endif /* !defined (ACE_WIN32) && !defined (ACE_LACKS_UNIX_SYSLOG) */ - - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -/** - * @namespace ACE_OS - * - * @brief This namespace defines an OS independent programming API that - * shields developers from nonportable aspects of writing - * efficient system programs on Win32, POSIX and other versions - * of UNIX, and various real-time operating systems. - * - * This namespace encapsulates the differences between various OS - * platforms. When porting ACE to a new platform, this class is - * the place to focus on. Once this file is ported to a new - * platform, pretty much everything else comes for "free." See - * <www.cs.wustl.edu/~schmidt/ACE_wrappers/etc/ACE-porting.html> - * for instructions on porting ACE. Please see the README file - * in this directory for complete information on the meaning of - * the various macros. - */ -namespace ACE_OS -{ - // = A set of wrappers for miscellaneous operations. -} /* namespace ACE_OS */ - -ACE_END_VERSIONED_NAMESPACE_DECL - -# if defined (ACE_HAS_INLINED_OSCALLS) -# if defined (ACE_INLINE) -# undef ACE_INLINE -# endif /* ACE_INLINE */ -# define ACE_INLINE inline -# include "ace/OS.inl" -# endif /* ACE_HAS_INLINED_OSCALLS */ - -#if defined (ACE_LEGACY_MODE) -# include "ace/Log_Msg.h" -# include "ace/Thread_Hook.h" -# include "ace/Thread_Adapter.h" -# include "ace/Thread_Exit.h" -# include "ace/Thread_Control.h" -#endif /* ACE_LEGACY_MODE */ - -#endif /* 0 */ - -#include /**/ "ace/post.h" -#endif /* ACE_OS_H */ diff --git a/dep/acelite/ace/OS.inl b/dep/acelite/ace/OS.inl deleted file mode 100644 index 852542b5ada..00000000000 --- a/dep/acelite/ace/OS.inl +++ /dev/null @@ -1,80 +0,0 @@ -// -*- C++ -*- -// $Id: OS.inl 87244 2009-10-27 20:15:48Z olli $ - -#if !defined (ACE_HAS_INLINED_OSCALLS) -# undef ACE_INLINE -# define ACE_INLINE -#endif /* ACE_HAS_INLINED_OSCALLS */ - -#if defined (ACE_HAS_XLI) -# include /**/ <xliuser.h> -#endif /* ACE_HAS_XLI */ - -#if !defined (ACE_HAS_CPLUSPLUS_HEADERS) -# include /**/ <libc.h> -# include /**/ <osfcn.h> -#endif /* ACE_HAS_CPLUSPLUS_HEADERS */ - -#if defined (ACE_HAS_SYSENT_H) -# include /**/ <sysent.h> -#endif /* ACE_HAS_SYSENT_H */ - -#if defined (ACE_USES_STD_NAMESPACE_FOR_STDC_LIB) && \ - (ACE_USES_STD_NAMESPACE_FOR_STDC_LIB != 0) -using std::bsearch; -using std::qsort; -# if defined (ACE_WIN32) -using std::_tzset; -# else -using std::tzset; -# endif -using std::ctime; -using std::localtime; -using std::gmtime; -using std::asctime; -using std::strftime; -#endif /* ACE_USES_STD_NAMESPACE_FOR_STDC_LIB */ - -#if !defined (ACE_LACKS_MALLOC_H) -# include /**/ <malloc.h> -#endif /* ACE_LACKS_MALLOC_H */ - -#if !defined (ACE_WIN32) - -// The following are #defines and #includes that must be visible for -// ACE to compile it's OS wrapper class implementation correctly. We -// put them inside of here to reduce compiler overhead if we're not -// inlining... - -# if defined (ACE_HAS_REGEX) -# include /**/ <regexpr.h> -# endif /* ACE_HAS_REGEX */ - -# if defined (ACE_HAS_SYS_SYSTEMINFO_H) -# include /**/ <sys/systeminfo.h> -# endif /* ACE_HAS_SYS_SYSTEMINFO_H */ - -# if defined (ACE_HAS_SYS_SYSCALL_H) -# include /**/ <sys/syscall.h> -# endif /* ACE_HAS_SYS_SYSCALL_H */ - -# if defined (UNIXWARE) /* See strcasecmp, below */ -# include /**/ <ctype.h> -# endif /* UNIXWARE */ - -# if defined (ACE_HAS_GETIFADDRS) -# if defined (ACE_VXWORKS) -# include /**/ <net/ifaddrs.h> -# else -# include /**/ <ifaddrs.h> -# endif -# endif /* ACE_HAS_GETIFADDRS */ - - -#endif /* WIN32 */ - -#if defined (ACE_HAS_SHM_OPEN) && defined(INTEGRITY) -#include "ace/os_include/sys/os_mman.h" -#endif - -// **************************************************************** diff --git a/dep/acelite/ace/OS_Dirent.h b/dep/acelite/ace/OS_Dirent.h deleted file mode 100644 index d05dc170991..00000000000 --- a/dep/acelite/ace/OS_Dirent.h +++ /dev/null @@ -1,32 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file OS_Dirent.h - * - * $Id: OS_Dirent.h 80826 2008-03-04 14:51:23Z wotte $ - * - * @author Doug Schmidt <schmidt@cs.wustl.edu> - * @author Jesper S. M|ller<stophph@diku.dk> - * @author and a cast of thousands... - */ -//============================================================================= - -#ifndef ACE_OS_DIRENT_H -#define ACE_OS_DIRENT_H -#include /**/ "ace/pre.h" - -#include /**/ "ace/ACE_export.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "ace/OS_Errno.h" -#include "ace/os_include/os_dirent.h" -#include "ace/os_include/sys/os_types.h" - -#include "ace/OS_NS_dirent.h" - -#include /**/ "ace/post.h" -#endif /* ACE_OS_DIRENT_H */ diff --git a/dep/acelite/ace/OS_Errno.cpp b/dep/acelite/ace/OS_Errno.cpp index 15bdbcf2734..3fe4a0a0a50 100644 --- a/dep/acelite/ace/OS_Errno.cpp +++ b/dep/acelite/ace/OS_Errno.cpp @@ -1,10 +1,8 @@ // -*- C++ -*- -// $Id: OS_Errno.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_Errno.cpp 91809 2010-09-17 07:20:41Z johnnyw $ #include "ace/OS_Errno.h" -ACE_RCSID(ace, OS_Errno, "$Id: OS_Errno.cpp 80826 2008-03-04 14:51:23Z wotte $") - // Inlining this class on debug builds with gcc on Solaris can cause // deadlocks during static initialization. On non debug builds it // causes compilation errors. diff --git a/dep/acelite/ace/OS_Log_Msg_Attributes.cpp b/dep/acelite/ace/OS_Log_Msg_Attributes.cpp index ead88768017..bbf0cb0487a 100644 --- a/dep/acelite/ace/OS_Log_Msg_Attributes.cpp +++ b/dep/acelite/ace/OS_Log_Msg_Attributes.cpp @@ -1,4 +1,4 @@ -// $Id: OS_Log_Msg_Attributes.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_Log_Msg_Attributes.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_Log_Msg_Attributes.h" @@ -6,4 +6,4 @@ # include "ace/OS_Log_Msg_Attributes.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ -ACE_RCSID(ace, OS_Log_Msg_Attributes, "$Id: OS_Log_Msg_Attributes.cpp 80826 2008-03-04 14:51:23Z wotte $") + diff --git a/dep/acelite/ace/OS_Memory.h b/dep/acelite/ace/OS_Memory.h index 7a5d94afb3e..cf1f91fa2d0 100644 --- a/dep/acelite/ace/OS_Memory.h +++ b/dep/acelite/ace/OS_Memory.h @@ -4,7 +4,7 @@ /** * @file OS_Memory.h * - * $Id: OS_Memory.h 86400 2009-08-06 13:52:28Z schmidt $ + * $Id: OS_Memory.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Doug Schmidt <schmidt@cs.wustl.edu> * @author Jesper S. M|ller<stophph@diku.dk> @@ -58,11 +58,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -#if defined (ACE_HAS_OLD_MALLOC) -typedef char * ACE_MALLOC_T; -#else typedef void * ACE_MALLOC_T; -#endif /* ACE_HAS_OLD_MALLOC */ ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/OS_NS_Thread.cpp b/dep/acelite/ace/OS_NS_Thread.cpp index 441d69ebb56..c424e3f5795 100644 --- a/dep/acelite/ace/OS_NS_Thread.cpp +++ b/dep/acelite/ace/OS_NS_Thread.cpp @@ -1,8 +1,6 @@ -#include "ace/OS_NS_Thread.h" +// $Id: OS_NS_Thread.cpp 91693 2010-09-09 12:57:54Z johnnyw $ -ACE_RCSID (ace, - OS_NS_Thread, - "$Id: OS_NS_Thread.cpp 90144 2010-05-14 22:23:14Z mitza $") +#include "ace/OS_NS_Thread.h" #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_Thread.inl" @@ -61,24 +59,14 @@ ACE_Thread_ID::to_string (char *thr_string) const ACE_OS::strcpy (fp, "u"); ACE_OS::sprintf (thr_string, format, - static_cast <unsigned> (thread_id_)); -#elif defined (DIGITAL_UNIX) - ACE_OS::strcpy (fp, "u"); - ACE_OS::sprintf (thr_string, format, -# if defined (ACE_HAS_THREADS) - thread_id_ -# else - thread_id_ -# endif /* ACE_HAS_THREADS */ - ); + static_cast <unsigned> (this->thread_id_)); #else - -# if defined (ACE_MVS) || defined (ACE_TANDEM_T1248_PTHREADS) +# if defined (ACE_MVS) || defined (ACE_TANDEM_T1248_PTHREADS) // MVS's pthread_t is a struct... yuck. So use the ACE 5.0 // code for it. ACE_OS::strcpy (fp, "u"); ACE_OS::sprintf (thr_string, format, thread_handle_); -# else +# else // Yes, this is an ugly C-style cast, but the // correct C++ cast is different depending on // whether the t_id is an integral type or a pointer @@ -89,8 +77,7 @@ ACE_Thread_ID::to_string (char *thr_string) const ACE_OS::sprintf (thr_string, format, (unsigned long) thread_handle_); -# endif /* ACE_MVS || ACE_TANDEM_T1248_PTHREADS */ - +# endif /* ACE_MVS || ACE_TANDEM_T1248_PTHREADS */ #endif /* ACE_WIN32 */ } @@ -666,7 +653,7 @@ TSS_Cleanup_Instance::TSS_Cleanup_Instance (Purpose purpose) ACE_NEW (condition_, ACE_Thread_Condition<ACE_Thread_Mutex> (*mutex_)); } - ACE_Guard<ACE_Thread_Mutex> guard(*mutex_); + ACE_GUARD (ACE_Thread_Mutex, m, *mutex_); if (purpose == CREATE) { @@ -709,7 +696,7 @@ TSS_Cleanup_Instance::~TSS_Cleanup_Instance (void) // scope the guard { - ACE_Guard<ACE_Thread_Mutex> guard (*mutex_); + ACE_GUARD (ACE_Thread_Mutex, guard, *mutex_); if (ptr_ != 0) { if (ACE_BIT_ENABLED (flags_, FLAG_DELETING)) @@ -1149,7 +1136,11 @@ ACE_OS::cond_broadcast (ACE_cond_t *cv) // This is needed to ensure that <waiters_> and <was_broadcast_> are // consistent relative to each other. - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + { + return -1; + } + bool have_waiters = false; if (cv->waiters_ > 0) @@ -1161,7 +1152,13 @@ ACE_OS::cond_broadcast (ACE_cond_t *cv) cv->was_broadcast_ = 1; have_waiters = true; } - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + { + // This is really bad, we have the lock but can't release it anymore + return -1; + } + int result = 0; if (have_waiters) { @@ -1197,8 +1194,14 @@ ACE_OS::cond_destroy (ACE_cond_t *cv) # elif defined (ACE_VXWORKS) ACE_OS::sema_destroy (&cv->waiters_done_); # endif /* ACE_VXWORKS */ - ACE_OS::thread_mutex_destroy (&cv->waiters_lock_); - return ACE_OS::sema_destroy (&cv->sema_); + int result = 0; + if (ACE_OS::thread_mutex_destroy (&cv->waiters_lock_) != 0) + result = -1; + + if (ACE_OS::sema_destroy (&cv->sema_) != 0) + result = -1; + + return result; # else ACE_UNUSED_ARG (cv); ACE_NOTSUP_RETURN (-1); @@ -1296,9 +1299,11 @@ ACE_OS::cond_signal (ACE_cond_t *cv) // lost wakeup bug... This is needed to ensure that the <waiters_> // value is not in an inconsistent internal state while being // updated by another thread. - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; bool const have_waiters = cv->waiters_ > 0; - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; if (have_waiters) return ACE_OS::sema_post (&cv->sema_); @@ -1317,19 +1322,27 @@ ACE_OS::cond_wait (ACE_cond_t *cv, ACE_OS_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_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; + ++cv->waiters_; - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; int result = 0; # if defined (ACE_HAS_SIGNAL_OBJECT_AND_WAIT) if (external_mutex->type_ == USYNC_PROCESS) - // This call will automatically release the mutex and wait on the semaphore. - ACE_WIN32CALL (ACE_ADAPT_RETVAL (::SignalObjectAndWait (external_mutex->proc_mutex_, - cv->sema_, INFINITE, FALSE), - result), - int, -1, result); + { + // This call will automatically release the mutex and wait on the semaphore. + ACE_WIN32CALL (ACE_ADAPT_RETVAL (::SignalObjectAndWait (external_mutex->proc_mutex_, + cv->sema_, INFINITE, FALSE), + result), + int, -1, result); + if (result == -1) + return result; + } else # endif /* ACE_HAS_SIGNAL_OBJECT_AND_WAIT */ { @@ -1346,7 +1359,8 @@ ACE_OS::cond_wait (ACE_cond_t *cv, } // Reacquire lock to avoid race conditions on the <waiters_> count. - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; // We're ready to return, so there's one less waiter. --cv->waiters_; @@ -1355,7 +1369,8 @@ ACE_OS::cond_wait (ACE_cond_t *cv, // Release the lock so that other collaborating threads can make // progress. - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; if (result == -1) // Bad things happened, so let's just return below. @@ -1377,7 +1392,8 @@ ACE_OS::cond_wait (ACE_cond_t *cv, // We must always regain the <external_mutex>, even when // errors occur because that's the guarantee that we give to // our callers. - ACE_OS::mutex_lock (external_mutex); + if (ACE_OS::mutex_lock (external_mutex) != 0) + return -1; return result; /* NOTREACHED */ @@ -1417,9 +1433,13 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, # if defined (ACE_HAS_WTHREADS) || defined (ACE_VXWORKS) // Prevent race conditions on the <waiters_> count. - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; + ++cv->waiters_; - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; int result = 0; ACE_Errno_Guard error (errno, 0); @@ -1476,12 +1496,15 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, } // Reacquire lock to avoid race conditions. - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; + --cv->waiters_; bool const last_waiter = cv->was_broadcast_ && cv->waiters_ == 0; - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; # if defined (ACE_WIN32) if (result != WAIT_OBJECT_0) @@ -1529,10 +1552,13 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, result), int, -1, result); else - // We must always regain the <external_Mutex>, even when - // errors occur because that's the guarantee that we give to - // our callers. - ACE_OS::mutex_lock (external_mutex); + { + // We must always regain the <external_Mutex>, even when + // errors occur because that's the guarantee that we give to + // our callers. + if (ACE_OS::mutex_lock (external_mutex) != 0) + return -1; + } return result; /* NOTREACHED */ @@ -1542,16 +1568,20 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, // if" statement since the caller may have timed out and hence the // result would have been -1 above. if (last_waiter) - // Release the signaler/broadcaster if we're the last waiter. + { + // Release the signaler/broadcaster if we're the last waiter. # if defined (ACE_WIN32) - ACE_OS::event_signal (&cv->waiters_done_); + if (ACE_OS::event_signal (&cv->waiters_done_) != 0) # else - ACE_OS::sema_post (&cv->waiters_done_); + if (ACE_OS::sema_post (&cv->waiters_done_) != 0) # endif /* ACE_WIN32 */ + return -1; + } // We must always regain the <external_mutex>, even when errors // occur because that's the guarantee that we give to our callers. - ACE_OS::mutex_lock (external_mutex); + if (ACE_OS::mutex_lock (external_mutex) != 0) + return -1; return result; # endif /* ACE_HAS_WTHREADS || ACE_HAS_VXWORKS */ @@ -1605,9 +1635,13 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, return result; #else // Prevent race conditions on the <waiters_> count. - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; + ++cv->waiters_; - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; int result = 0; int error = 0; @@ -1646,13 +1680,15 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, # endif /* ACE_USES_WINCE_SEMA_SIMULATION */ // Reacquire lock to avoid race conditions. - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; --cv->waiters_; bool const last_waiter = cv->was_broadcast_ && cv->waiters_ == 0; - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; if (result != WAIT_OBJECT_0) { @@ -1669,13 +1705,24 @@ ACE_OS::cond_timedwait (ACE_cond_t *cv, } if (last_waiter) - // Release the signaler/broadcaster if we're the last waiter. - ACE_OS::event_signal (&cv->waiters_done_); + { + // Release the signaler/broadcaster if we're the last waiter. + if (ACE_OS::event_signal (&cv->waiters_done_) != 0) + return -1; + } // We must always regain the <external_mutex>, even when errors // occur because that's the guarantee that we give to our callers. - ACE_OS::thread_mutex_lock (external_mutex); - errno = error; + if (ACE_OS::thread_mutex_lock (external_mutex) != 0) + result = -1; + + if (error != 0) + { + /* This assignment must only be done if error != 0, + * since writing 0 to errno violates the POSIX specification. + */ + errno = error; + } return result; # endif # else @@ -1694,9 +1741,12 @@ ACE_OS::cond_wait (ACE_cond_t *cv, ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::SleepConditionVariableCS (cv, external_mutex, INFINITE), result), int, -1); #else - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; ++cv->waiters_; - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; int result = 0; int error = 0; @@ -1722,13 +1772,15 @@ ACE_OS::cond_wait (ACE_cond_t *cv, # endif /* ACE_USES_WINCE_SEMA_SIMULATION */ // Reacquire lock to avoid race conditions. - ACE_OS::thread_mutex_lock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_lock (&cv->waiters_lock_) != 0) + return -1; cv->waiters_--; bool const last_waiter = cv->was_broadcast_ && cv->waiters_ == 0; - ACE_OS::thread_mutex_unlock (&cv->waiters_lock_); + if (ACE_OS::thread_mutex_unlock (&cv->waiters_lock_) != 0) + return -1; if (result != WAIT_OBJECT_0) { @@ -1743,15 +1795,25 @@ ACE_OS::cond_wait (ACE_cond_t *cv, } } else if (last_waiter) - // Release the signaler/broadcaster if we're the last waiter. - ACE_OS::event_signal (&cv->waiters_done_); + { + // Release the signaler/broadcaster if we're the last waiter. + if (ACE_OS::event_signal (&cv->waiters_done_) != 0) + return -1; + } // We must always regain the <external_mutex>, even when errors // occur because that's the guarantee that we give to our callers. - ACE_OS::thread_mutex_lock (external_mutex); + if (ACE_OS::thread_mutex_lock (external_mutex) != 0) + result = -1; // Reset errno in case mutex_lock() also fails... - errno = error; + if (error != 0) + { + /* This assignment must only be done if error != 0, + * since writing 0 to errno violates the POSIX specification. + */ + errno = error; + } return result; #endif # else @@ -2392,7 +2454,8 @@ ACE_OS::event_destroy (ACE_event_t *event) && errno == EBUSY) { event->eventdata_->is_signaled_ = 1; - ACE_OS::cond_broadcast (&event->eventdata_->condition_); + if (ACE_OS::cond_broadcast (&event->eventdata_->condition_) != 0) + return -1; ACE_OS::thr_yield (); } # else @@ -2451,7 +2514,8 @@ ACE_OS::event_destroy (ACE_event_t *event) && errno == EBUSY) { event->eventdata_->is_signaled_ = 1; - ACE_OS::cond_broadcast (&event->eventdata_->condition_); + if (ACE_OS::cond_broadcast (&event->eventdata_->condition_) != 0) + return -1; ACE_OS::thr_yield (); } # else @@ -2810,9 +2874,11 @@ ACE_OS::event_pulse (ACE_event_t *event) (!defined (ACE_LACKS_MUTEXATTR_PSHARED) || !defined (ACE_LACKS_CONDATTR_PSHARED))) || \ (!defined (ACE_USES_FIFO_SEM) && \ (!defined (ACE_HAS_POSIX_SEM) || !defined (ACE_HAS_POSIX_SEM_TIMEOUT) || defined (ACE_LACKS_NAMED_POSIX_SEM))) - ACE_OS::mutex_unlock (&event->eventdata_->lock_); + if (ACE_OS::mutex_unlock (&event->eventdata_->lock_) != 0) + return -1; # else - ACE_OS::sema_post (&event->lock_); + if (ACE_OS::sema_post (&event->lock_) != 0) + return -1; # endif if (result == -1) // Reset errno in case mutex_unlock() also fails... @@ -2854,9 +2920,11 @@ ACE_OS::event_reset (ACE_event_t *event) (!defined (ACE_LACKS_MUTEXATTR_PSHARED) || !defined (ACE_LACKS_CONDATTR_PSHARED))) || \ (!defined (ACE_USES_FIFO_SEM) && \ (!defined (ACE_HAS_POSIX_SEM) || !defined (ACE_HAS_POSIX_SEM_TIMEOUT) || defined (ACE_LACKS_NAMED_POSIX_SEM))) - ACE_OS::mutex_unlock (&event->eventdata_->lock_); + if (ACE_OS::mutex_unlock (&event->eventdata_->lock_) != 0) + return -1; # else - ACE_OS::sema_post (&event->lock_); + if (ACE_OS::sema_post (&event->lock_) != 0) + return -1; # endif } else @@ -2938,9 +3006,11 @@ ACE_OS::event_signal (ACE_event_t *event) (!defined (ACE_LACKS_MUTEXATTR_PSHARED) || !defined (ACE_LACKS_CONDATTR_PSHARED))) || \ (!defined (ACE_USES_FIFO_SEM) && \ (!defined (ACE_HAS_POSIX_SEM) || !defined (ACE_HAS_POSIX_SEM_TIMEOUT) || defined (ACE_LACKS_NAMED_POSIX_SEM))) - ACE_OS::mutex_unlock (&event->eventdata_->lock_); + if (ACE_OS::mutex_unlock (&event->eventdata_->lock_) != 0) + return -1; # else - ACE_OS::sema_post (&event->lock_); + if (ACE_OS::sema_post (&event->lock_) != 0) + return -1; # endif if (result == -1) @@ -3136,9 +3206,11 @@ ACE_OS::event_timedwait (ACE_event_t *event, (!defined (ACE_LACKS_MUTEXATTR_PSHARED) || !defined (ACE_LACKS_CONDATTR_PSHARED))) || \ (!defined (ACE_USES_FIFO_SEM) && \ (!defined (ACE_HAS_POSIX_SEM) || !defined (ACE_HAS_POSIX_SEM_TIMEOUT) || defined (ACE_LACKS_NAMED_POSIX_SEM))) - ACE_OS::mutex_unlock (&event->eventdata_->lock_); + if (ACE_OS::mutex_unlock (&event->eventdata_->lock_) != 0) + return -1; # else - ACE_OS::sema_post (&event->lock_); + if (ACE_OS::sema_post (&event->lock_) != 0) + return -1; # endif if (result == -1) @@ -3278,9 +3350,11 @@ ACE_OS::event_wait (ACE_event_t *event) (!defined (ACE_LACKS_MUTEXATTR_PSHARED) || !defined (ACE_LACKS_CONDATTR_PSHARED))) || \ (!defined (ACE_USES_FIFO_SEM) && \ (!defined (ACE_HAS_POSIX_SEM) || !defined (ACE_HAS_POSIX_SEM_TIMEOUT) || defined (ACE_LACKS_NAMED_POSIX_SEM))) - ACE_OS::mutex_unlock (&event->eventdata_->lock_); + if (ACE_OS::mutex_unlock (&event->eventdata_->lock_) != 0) + return -1; # else - ACE_OS::sema_post (&event->lock_); + if (ACE_OS::sema_post (&event->lock_) != 0) + return -1; # endif if (result == -1) @@ -3431,10 +3505,14 @@ ACE_OS::rwlock_init (ACE_rwlock_t *rw, { // Save/restore errno. ACE_Errno_Guard error (errno); - ACE_OS::mutex_destroy (&rw->lock_); - ACE_OS::cond_destroy (&rw->waiting_readers_); - ACE_OS::cond_destroy (&rw->waiting_writers_); - ACE_OS::cond_destroy (&rw->waiting_important_writer_); + + /* We're about to return -1 anyway, so + * no need to check return values of these clean-up calls: + */ + (void)ACE_OS::mutex_destroy (&rw->lock_); + (void)ACE_OS::cond_destroy (&rw->waiting_readers_); + (void)ACE_OS::cond_destroy (&rw->waiting_writers_); + (void)ACE_OS::cond_destroy (&rw->waiting_important_writer_); } return result; # else @@ -3481,15 +3559,7 @@ ACE_OS::sched_params (const ACE_Sched_Params &sched_params, int result = ::sched_setscheduler (id == ACE_SELF ? 0 : id, sched_params.policy (), ¶m) == -1 ? -1 : 0; -# if defined (DIGITAL_UNIX) - return result == 0 - ? // Use priocntl (2) to set the process in the RT class, - // if using an RT policy. - ACE_OS::set_scheduling_params (sched_params) - : result; -# else /* ! DIGITAL_UNIX */ return result; -# endif /* ! DIGITAL_UNIX */ # endif /* ! ACE_TANDEM_T1248_PTHREADS */ } else if (sched_params.scope () == ACE_SCOPE_THREAD) @@ -3991,10 +4061,7 @@ ACE_OS::thr_create (ACE_THR_FUNC func, struct sched_param sparam; ACE_OS::memset ((void *) &sparam, 0, sizeof sparam); -# if defined (ACE_HAS_IRIX62_THREADS) - sparam.sched_priority = ACE_MIN (priority, - (long) PTHREAD_MAX_PRIORITY); -# elif defined (PTHREAD_MAX_PRIORITY) && !defined(ACE_HAS_PTHREADS) +# if defined (PTHREAD_MAX_PRIORITY) && !defined(ACE_HAS_PTHREADS) /* For MIT pthreads... */ sparam.prio = ACE_MIN (priority, PTHREAD_MAX_PRIORITY); # elif defined(ACE_HAS_PTHREADS) && !defined (ACE_HAS_STHREADS) @@ -4016,7 +4083,7 @@ ACE_OS::thr_create (ACE_THR_FUNC func, (long) PRIORITY_MAX); # else sparam.sched_priority = priority; -# endif /* ACE_HAS_IRIX62_THREADS */ +# endif /* PTHREAD_MAX_PRIORITY */ { # if defined (sun) && defined (ACE_HAS_ONLY_SCHED_OTHER) @@ -4577,7 +4644,7 @@ ACE_OS::thr_join (ACE_thread_t waiter_id, #endif /* ACE_HAS_VXTHREADS */ int -ACE_OS::thr_key_detach (ACE_thread_key_t key, void *) +ACE_OS::thr_key_detach (ACE_thread_key_t key) { #if defined (ACE_HAS_WTHREADS) || defined (ACE_HAS_TSS_EMULATION) TSS_Cleanup_Instance cleanup; @@ -4752,11 +4819,10 @@ ACE_OS::thr_keycreate_native (ACE_OS_thread_key_t *key, int ACE_OS::thr_keycreate (ACE_thread_key_t *key, # if defined (ACE_HAS_THR_C_DEST) - ACE_THR_C_DEST dest, + ACE_THR_C_DEST dest) # else - ACE_THR_DEST dest, + ACE_THR_DEST dest) # endif /* ACE_HAS_THR_C_DEST */ - void *) { // ACE_OS_TRACE ("ACE_OS::thr_keycreate"); #if defined (ACE_HAS_THREADS) diff --git a/dep/acelite/ace/OS_NS_Thread.h b/dep/acelite/ace/OS_NS_Thread.h index d386fa038a0..4145210889b 100644 --- a/dep/acelite/ace/OS_NS_Thread.h +++ b/dep/acelite/ace/OS_NS_Thread.h @@ -4,7 +4,7 @@ /** * @file OS_NS_Thread.h * - * $Id: OS_NS_Thread.h 91210 2010-07-26 20:31:30Z shuston $ + * $Id: OS_NS_Thread.h 91693 2010-09-09 12:57:54Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> * @author Jesper S. M|ller<stophph@diku.dk> @@ -527,7 +527,8 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** * @class ACE_recursive_thread_mutex_t * - * @brief Implement a thin C++ wrapper that allows nested acquisition + * @brief + * Implement a thin C++ wrapper that allows nested acquisition * and release of a mutex that occurs in the same thread. * * This implementation is based on an algorithm sketched by Dave @@ -551,8 +552,8 @@ public: ACE_thread_t owner_id_; }; -// Since recursive mutex is emulated, the state saving needs to be handled -// in ACE as well. These members save those from ACE_recursive_thread_mutex_t. +/// Since recursive mutex is emulated, the state saving needs to be handled +/// in ACE as well. These members save those from ACE_recursive_thread_mutex_t. struct ACE_recursive_mutex_state { int nesting_level_; @@ -679,9 +680,10 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** * @class ACE_Thread_ID * - * @brief Defines a platform-independent thread ID class. Note that - * this class should be defined within the scope of a thread, rather - * than at global scope! + * @brief + * Defines a platform-independent thread ID class. Note that + * this class should be defined within the scope of a thread, rather + * than at global scope! */ class ACE_Export ACE_Thread_ID { @@ -695,7 +697,10 @@ public: ACE_Thread_ID (void); /// Copy constructor. - ACE_Thread_ID (const ACE_Thread_ID &rhs); + ACE_Thread_ID (const ACE_Thread_ID &id); + + /// Assignment operator + ACE_Thread_ID& operator= (const ACE_Thread_ID&id); /// Get the thread id. ACE_thread_t id (void) const; @@ -757,18 +762,18 @@ typedef int ACE_pri_t; # else typedef int ACE_idtype_t; # endif /* ACE_HAS_IDTYPE_T */ -# if defined (ACE_HAS_STHREADS) || defined (DIGITAL_UNIX) +# if defined (ACE_HAS_STHREADS) # if defined (ACE_LACKS_PRI_T) typedef int pri_t; # endif /* ACE_LACKS_PRI_T */ typedef id_t ACE_id_t; # define ACE_SELF P_MYID typedef pri_t ACE_pri_t; -# else /* ! ACE_HAS_STHREADS && ! DIGITAL_UNIX */ +# else /* ! ACE_HAS_STHREADS */ typedef long ACE_id_t; # define ACE_SELF (-1) typedef short ACE_pri_t; -# endif /* ! ACE_HAS_STHREADS && ! DIGITAL_UNIX */ +# endif /* ! ACE_HAS_STHREADS */ #endif /* !defined (ACE_WIN32) */ # if defined (ACE_HAS_TSS_EMULATION) @@ -1551,8 +1556,7 @@ namespace ACE_OS { const char** thr_name = 0); ACE_NAMESPACE_INLINE_FUNCTION - int thr_equal (ACE_thread_t t1, - ACE_thread_t t2); + int thr_equal (ACE_thread_t t1, ACE_thread_t t2); extern ACE_Export void thr_exit (ACE_THR_FUNC_RETURN status = 0); @@ -1572,21 +1576,18 @@ namespace ACE_OS { # if defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) ACE_NAMESPACE_INLINE_FUNCTION /// for internal use only. Applications should call thr_getspecific - int thr_getspecific_native (ACE_OS_thread_key_t key, - void **data); + int thr_getspecific_native (ACE_OS_thread_key_t key, void **data); # endif /* ACE_HAS_THREAD_SPECIFIC_STORAGE */ ACE_NAMESPACE_INLINE_FUNCTION - int thr_getspecific (ACE_thread_key_t key, - void **data); + int thr_getspecific (ACE_thread_key_t key, void **data); #if defined (ACE_HAS_VXTHREADS) extern ACE_Export #else ACE_NAMESPACE_INLINE_FUNCTION #endif /* ACE_HAS_VXTHREADS */ - int thr_join (ACE_hthread_t waiter_id, - ACE_THR_FUNC_RETURN *status); + int thr_join (ACE_hthread_t waiter_id, ACE_THR_FUNC_RETURN *status); #if defined (ACE_HAS_VXTHREADS) extern ACE_Export @@ -1630,11 +1631,8 @@ namespace ACE_OS { size_t cpu_set_size, const cpu_set_t * cpu_mask); - /** - * @note the "inst" arg is deprecated. It will be ignored. - */ extern ACE_Export - int thr_key_detach (ACE_thread_key_t key, void * inst); + int thr_key_detach (ACE_thread_key_t key); extern ACE_Export int thr_key_used (ACE_thread_key_t key); @@ -1643,17 +1641,12 @@ namespace ACE_OS { # if defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) /// @internal Applications should call thr_keycreate extern ACE_Export - int thr_keycreate_native (ACE_OS_thread_key_t *key, - ACE_THR_C_DEST); + int thr_keycreate_native (ACE_OS_thread_key_t *key, ACE_THR_C_DEST); # endif /* ACE_HAS_THREAD_SPECIFIC_STORAGE */ - /** - * @note the "inst" arge is deprecated. It will be ignored. - */ extern ACE_Export - int thr_keycreate (ACE_thread_key_t *key, - ACE_THR_C_DEST, - void *inst = 0); + int thr_keycreate (ACE_thread_key_t *key, ACE_THR_C_DEST); + # else # if defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) /// @internal Applications should call thr_keycreate instead @@ -1661,13 +1654,9 @@ namespace ACE_OS { int thr_keycreate_native (ACE_OS_thread_key_t *key, ACE_THR_DEST); # endif /* ACE_HAS_THREAD_SPECIFIC_STORAGE */ - /** - * @note the "inst" arge is deprecated. It will be ignored. - */ + extern ACE_Export - int thr_keycreate (ACE_thread_key_t *key, - ACE_THR_DEST, - void *inst = 0); + int thr_keycreate (ACE_thread_key_t *key, ACE_THR_DEST); # endif /* ACE_HAS_THR_C_DEST */ @@ -1681,8 +1670,7 @@ namespace ACE_OS { int thr_keyfree (ACE_thread_key_t key); ACE_NAMESPACE_INLINE_FUNCTION - int thr_kill (ACE_thread_t thr_id, - int signum); + int thr_kill (ACE_thread_t thr_id, int signum); ACE_NAMESPACE_INLINE_FUNCTION size_t thr_min_stack (void); @@ -1697,20 +1685,16 @@ namespace ACE_OS { const char* thr_name (void); ACE_NAMESPACE_INLINE_FUNCTION - int thr_setcancelstate (int new_state, - int *old_state); + int thr_setcancelstate (int new_state, int *old_state); ACE_NAMESPACE_INLINE_FUNCTION - int thr_setcanceltype (int new_type, - int *old_type); + int thr_setcanceltype (int new_type, int *old_type); ACE_NAMESPACE_INLINE_FUNCTION int thr_setconcurrency (int hint); ACE_NAMESPACE_INLINE_FUNCTION - int thr_setprio (ACE_hthread_t ht_id, - int priority, - int policy = -1); + int thr_setprio (ACE_hthread_t ht_id, int priority, int policy = -1); extern ACE_Export int thr_setprio (const ACE_Sched_Priority prio); @@ -1718,18 +1702,14 @@ namespace ACE_OS { # if defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) /// @internal Applications should call thr_setspecific extern ACE_Export - int thr_setspecific_native (ACE_OS_thread_key_t key, - void *data); + int thr_setspecific_native (ACE_OS_thread_key_t key, void *data); # endif /* ACE_HAS_THREAD_SPECIFIC_STORAGE */ extern ACE_Export - int thr_setspecific (ACE_thread_key_t key, - void *data); + int thr_setspecific (ACE_thread_key_t key, void *data); ACE_NAMESPACE_INLINE_FUNCTION - int thr_sigsetmask (int how, - const sigset_t *nsm, - sigset_t *osm); + int thr_sigsetmask (int how, const sigset_t *nsm, sigset_t *osm); ACE_NAMESPACE_INLINE_FUNCTION int thr_suspend (ACE_hthread_t target_thread); diff --git a/dep/acelite/ace/OS_NS_Thread.inl b/dep/acelite/ace/OS_NS_Thread.inl index b82683f5ab4..a921e6907b6 100644 --- a/dep/acelite/ace/OS_NS_Thread.inl +++ b/dep/acelite/ace/OS_NS_Thread.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_Thread.inl 87220 2009-10-24 12:20:03Z olli $ +// $Id: OS_NS_Thread.inl 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/OS_NS_macros.h" // for timespec_t, perhaps move it to os_time.h @@ -2500,27 +2500,17 @@ ACE_OS::sigwait (sigset_t *sset, int *sig) return *sig; #endif /* _POSIX_C_SOURCE - 0 >= 199506L || _POSIX_PTHREAD_SEMANTICS */ # elif defined (ACE_HAS_PTHREADS) - // Digital UNIX has own hoops to jump through. -# if defined (DIGITAL_UNIX) && defined (__DECCXX_VER) - // DEC cxx (but not g++) needs this direct call to its internal - // sigwait (). This allows us to #undef sigwait, so that we can - // have ACE_OS::sigwait. cxx gets confused by ACE_OS::sigwait - // if sigwait is _not_ #undef'ed. - errno = ::_Psigwait (sset, sig); +# if defined (CYGWIN32) + // Cygwin has sigwait definition, but it is not implemented + ACE_UNUSED_ARG (sset); + ACE_NOTSUP_RETURN (-1); +# elif defined (ACE_TANDEM_T1248_PTHREADS) + errno = ::spt_sigwait (sset, sig); return errno == 0 ? *sig : -1; -# else /* !(DIGITAL_UNIX && __DECCXX_VER) */ -# if defined (CYGWIN32) - // Cygwin has sigwait definition, but it is not implemented - ACE_UNUSED_ARG (sset); - ACE_NOTSUP_RETURN (-1); -# elif defined (ACE_TANDEM_T1248_PTHREADS) - errno = ::spt_sigwait (sset, sig); - return errno == 0 ? *sig : -1; -# else /* this is draft 7 or std */ - errno = ::sigwait (sset, sig); - return errno == 0 ? *sig : -1; -# endif /* CYGWIN32 */ -# endif /* !(DIGITAL_UNIX && __DECCXX_VER) */ +# else /* this is draft 7 or std */ + errno = ::sigwait (sset, sig); + return errno == 0 ? *sig : -1; +# endif /* CYGWIN32 */ # elif defined (ACE_HAS_WTHREADS) ACE_UNUSED_ARG (sset); ACE_NOTSUP_RETURN (-1); @@ -3166,14 +3156,6 @@ ACE_OS::thr_sigsetmask (int how, //FUZZ: enable check_for_lack_ACE_OS # endif /* !ACE_LACKS_PTHREAD_SIGMASK */ -#if 0 - /* Don't know if any platform actually needs this... */ - // as far as I can tell, this is now pthread_sigaction() -- jwr - int result; - ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (pthread_sigaction (how, nsm, osm), - result), int, -1); -#endif /* 0 */ - # elif defined (ACE_HAS_WTHREADS) ACE_UNUSED_ARG (osm); ACE_UNUSED_ARG (nsm); @@ -3600,6 +3582,18 @@ ACE_Thread_ID::ACE_Thread_ID (const ACE_Thread_ID &id) } ACE_INLINE +ACE_Thread_ID& +ACE_Thread_ID::operator= (const ACE_Thread_ID &id) +{ + if (this != &id) + { + this->thread_id_ = id.thread_id_; + this->thread_handle_ = id.thread_handle_; + } + return *this; +} + +ACE_INLINE ACE_Thread_ID::ACE_Thread_ID (void) : thread_id_ (ACE_OS::thr_self ()) { diff --git a/dep/acelite/ace/OS_NS_arpa_inet.cpp b/dep/acelite/ace/OS_NS_arpa_inet.cpp index c9379442818..537051cc1df 100644 --- a/dep/acelite/ace/OS_NS_arpa_inet.cpp +++ b/dep/acelite/ace/OS_NS_arpa_inet.cpp @@ -1,10 +1,8 @@ // -*- C++ -*- -// $Id: OS_NS_arpa_inet.cpp 88515 2010-01-13 08:47:38Z johnnyw $ +// $Id: OS_NS_arpa_inet.cpp 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_arpa_inet.h" -ACE_RCSID(ace, OS_NS_arpa_inet, "$Id: OS_NS_arpa_inet.cpp 88515 2010-01-13 08:47:38Z johnnyw $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_arpa_inet.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_arpa_inet.inl b/dep/acelite/ace/OS_NS_arpa_inet.inl index 22083608ec4..4a5c0443e01 100644 --- a/dep/acelite/ace/OS_NS_arpa_inet.inl +++ b/dep/acelite/ace/OS_NS_arpa_inet.inl @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: OS_NS_arpa_inet.inl 84249 2009-01-28 09:09:41Z johnnyw $ +// $Id: OS_NS_arpa_inet.inl 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_string.h" #include "ace/OS_NS_errno.h" @@ -29,9 +29,7 @@ ACE_OS::inet_ntoa (const struct in_addr addr) ACE_UNUSED_ARG (addr); ACE_NOTSUP_RETURN (0); #else - ACE_OSCALL_RETURN (::inet_ntoa (addr), - char *, - 0); + ACE_OSCALL_RETURN (::inet_ntoa (addr), char *, 0); #endif } diff --git a/dep/acelite/ace/OS_NS_ctype.cpp b/dep/acelite/ace/OS_NS_ctype.cpp index d9245606015..614d0ae366f 100644 --- a/dep/acelite/ace/OS_NS_ctype.cpp +++ b/dep/acelite/ace/OS_NS_ctype.cpp @@ -1,10 +1,8 @@ // -*- C++ -*- -// $Id: OS_NS_ctype.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_ctype.cpp 91683 2010-09-09 09:07:49Z johnnyw $ #include "ace/OS_NS_ctype.h" -ACE_RCSID(ace, OS_NS_ctype, "$Id: OS_NS_ctype.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_ctype.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_dirent.cpp b/dep/acelite/ace/OS_NS_dirent.cpp index 1d9483c4087..67ffabe4f71 100644 --- a/dep/acelite/ace/OS_NS_dirent.cpp +++ b/dep/acelite/ace/OS_NS_dirent.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_dirent.cpp 90263 2010-05-24 14:44:39Z johnnyw $ +// $Id: OS_NS_dirent.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_dirent.h" -ACE_RCSID(ace, OS_NS_dirent, "$Id: OS_NS_dirent.cpp 90263 2010-05-24 14:44:39Z johnnyw $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_dirent.inl" diff --git a/dep/acelite/ace/OS_NS_dlfcn.cpp b/dep/acelite/ace/OS_NS_dlfcn.cpp index 24218ff4302..5ac764f2557 100644 --- a/dep/acelite/ace/OS_NS_dlfcn.cpp +++ b/dep/acelite/ace/OS_NS_dlfcn.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_dlfcn.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_dlfcn.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_dlfcn.h" -ACE_RCSID(ace, OS_NS_dlfcn, "$Id: OS_NS_dlfcn.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_dlfcn.inl" diff --git a/dep/acelite/ace/OS_NS_errno.cpp b/dep/acelite/ace/OS_NS_errno.cpp index ada256d1cbd..8526c391dc9 100644 --- a/dep/acelite/ace/OS_NS_errno.cpp +++ b/dep/acelite/ace/OS_NS_errno.cpp @@ -1,10 +1,8 @@ // -*- C++ -*- -// $Id: OS_NS_errno.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_errno.cpp 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_errno.h" -ACE_RCSID(ace, OS_NS_errno, "$Id: OS_NS_errno.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_errno.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_fcntl.cpp b/dep/acelite/ace/OS_NS_fcntl.cpp index aa90f7930fd..41cf76fcb2c 100644 --- a/dep/acelite/ace/OS_NS_fcntl.cpp +++ b/dep/acelite/ace/OS_NS_fcntl.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_fcntl.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_fcntl.cpp 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_fcntl.h" -ACE_RCSID(ace, OS_NS_fcntl, "$Id: OS_NS_fcntl.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_fcntl.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_math.cpp b/dep/acelite/ace/OS_NS_math.cpp index ae9554c0625..c2692a44b58 100644 --- a/dep/acelite/ace/OS_NS_math.cpp +++ b/dep/acelite/ace/OS_NS_math.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_math.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_math.cpp 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_math.h" -ACE_RCSID(ace, OS_NS_math, "$Id: OS_NS_math.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_math.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_netdb.cpp b/dep/acelite/ace/OS_NS_netdb.cpp index 01762a81893..b615df1387d 100644 --- a/dep/acelite/ace/OS_NS_netdb.cpp +++ b/dep/acelite/ace/OS_NS_netdb.cpp @@ -1,9 +1,9 @@ // -*- C++ -*- -// $Id: OS_NS_netdb.cpp 89812 2010-04-08 21:27:21Z sowayaa $ +// $Id: OS_NS_netdb.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_netdb.h" -ACE_RCSID(ace, OS_NS_netdb, "$Id: OS_NS_netdb.cpp 89812 2010-04-08 21:27:21Z sowayaa $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_netdb.inl" diff --git a/dep/acelite/ace/OS_NS_netdb.inl b/dep/acelite/ace/OS_NS_netdb.inl index 55292ecc8ae..0888c72f934 100644 --- a/dep/acelite/ace/OS_NS_netdb.inl +++ b/dep/acelite/ace/OS_NS_netdb.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_netdb.inl 86295 2009-07-30 10:41:49Z shuston $ +// $Id: OS_NS_netdb.inl 91683 2010-09-09 09:07:49Z johnnyw $ #include "ace/OS_NS_macros.h" #include "ace/OS_NS_string.h" @@ -107,12 +107,12 @@ ACE_OS::gethostbyaddr_r (const char *addr, ACE_UNUSED_ARG (buffer); ACE_UNUSED_ARG (h_errnop); ACE_NOTSUP_RETURN (0); -# elif defined (ACE_HAS_REENTRANT_FUNCTIONS) && !defined (UNIXWARE) +# elif defined (ACE_HAS_REENTRANT_FUNCTIONS) if (0 == addr || '\0' == addr[0]) return 0; -# if defined (AIX) || defined (DIGITAL_UNIX) +# if defined (AIX) ACE_OS::memset (buffer, 0, sizeof (ACE_HOSTENT_DATA)); //FUZZ: disable check_for_lack_ACE_OS @@ -206,7 +206,7 @@ ACE_OS::gethostbyaddr_r (const char *addr, struct hostent *, 0); //FUZZ: enable check_for_lack_ACE_OS # endif /* ACE_LACKS_NETDB_REENTRANT_FUNCTIONS */ -# endif /* defined (AIX) || defined (DIGITAL_UNIX) */ +# endif /* defined (AIX) */ # elif defined (ACE_HAS_NONCONST_GETBY) ACE_UNUSED_ARG (result); ACE_UNUSED_ARG (buffer); @@ -290,13 +290,12 @@ ACE_OS::gethostbyname_r (const char *name, ACE_UNUSED_ARG (buffer); ACE_UNUSED_ARG (h_errnop); ACE_NOTSUP_RETURN (0); -# elif defined (ACE_HAS_REENTRANT_FUNCTIONS) && !defined (UNIXWARE) +# elif defined (ACE_HAS_REENTRANT_FUNCTIONS) if (0 == name || '\0' == name[0]) return (struct hostent *)0; -# if defined (DIGITAL_UNIX) || \ - (defined (ACE_AIX_MINOR_VERS) && (ACE_AIX_MINOR_VERS > 2)) +# if (defined (ACE_AIX_MINOR_VERS) && (ACE_AIX_MINOR_VERS > 2)) ACE_UNUSED_ARG (result); ACE_UNUSED_ARG (buffer); ACE_UNUSED_ARG (h_errnop); @@ -397,7 +396,7 @@ ACE_OS::gethostbyname_r (const char *name, 0); //FUZZ: enable check_for_lack_ACE_OS # endif /* ACE_LACKS_NETDB_REENTRANT_FUNCTIONS */ -# endif /* defined (AIX) || defined (DIGITAL_UNIX) */ +# endif /* defined (AIX) */ # elif defined (ACE_HAS_NONCONST_GETBY) ACE_UNUSED_ARG (result); ACE_UNUSED_ARG (buffer); @@ -421,7 +420,7 @@ ACE_OS::gethostbyname_r (const char *name, *h_errnop = errno; return result2; //FUZZ: enable check_for_lack_ACE_OS -# endif /* defined (ACE_HAS_REENTRANT_FUNCTIONS) && !defined (UNIXWARE) */ +# endif /* defined (ACE_HAS_REENTRANT_FUNCTIONS) */ } #endif @@ -524,8 +523,8 @@ ACE_OS::getprotobyname_r (const char *name, ACE_UNUSED_ARG (result); ACE_UNUSED_ARG (buffer); ACE_NOTSUP_RETURN (0); -#elif defined (ACE_HAS_REENTRANT_FUNCTIONS) && !defined (UNIXWARE) -# if defined (AIX) || defined (DIGITAL_UNIX) +#elif defined (ACE_HAS_REENTRANT_FUNCTIONS) +# if defined (AIX) //FUZZ: disable check_for_lack_ACE_OS if (::getprotobyname_r (name, result, (struct protoent_data *) buffer) == 0) return result; @@ -561,7 +560,7 @@ ACE_OS::getprotobyname_r (const char *name, struct protoent *, 0); //FUZZ: enable check_for_lack_ACE_OS # endif /* ACE_LACKS_NETDB_REENTRANT_FUNCTIONS */ -# endif /* defined (AIX) || defined (DIGITAL_UNIX) */ +# endif /* defined (AIX) */ #elif defined (ACE_HAS_NONCONST_GETBY) ACE_UNUSED_ARG (result); ACE_UNUSED_ARG (buffer); @@ -578,7 +577,7 @@ ACE_OS::getprotobyname_r (const char *name, struct protoent *, 0); //FUZZ: enable check_for_lack_ACE_OS -#endif /* defined (ACE_HAS_REENTRANT_FUNCTIONS) !defined (UNIXWARE) */ +#endif /* defined (ACE_HAS_REENTRANT_FUNCTIONS) */ } ACE_INLINE struct protoent * @@ -605,8 +604,8 @@ ACE_OS::getprotobynumber_r (int proto, ACE_UNUSED_ARG (result); ACE_UNUSED_ARG (buffer); ACE_NOTSUP_RETURN (0); -#elif defined (ACE_HAS_REENTRANT_FUNCTIONS) && !defined (UNIXWARE) -# if defined (AIX) || defined (DIGITAL_UNIX) +#elif defined (ACE_HAS_REENTRANT_FUNCTIONS) +# if defined (AIX) //FUZZ: disable check_for_lack_ACE_OS if (::getprotobynumber_r (proto, result, (struct protoent_data *) buffer) == 0) return result; @@ -639,7 +638,7 @@ ACE_OS::getprotobynumber_r (int proto, struct protoent *, 0); //FUZZ: enable check_for_lack_ACE_OS # endif /* ACE_LACKS_NETDB_REENTRANT_FUNCTIONS */ -# endif /* defined (AIX) || defined (DIGITAL_UNIX) */ +# endif /* defined (AIX) */ #else ACE_UNUSED_ARG (buffer); ACE_UNUSED_ARG (result); @@ -648,7 +647,7 @@ ACE_OS::getprotobynumber_r (int proto, ACE_SOCKCALL_RETURN (::getprotobynumber (proto), struct protoent *, 0); //FUZZ: enable check_for_lack_ACE_OS -#endif /* defined (ACE_HAS_REENTRANT_FUNCTIONS) && !defined (UNIXWARE) */ +#endif /* defined (ACE_HAS_REENTRANT_FUNCTIONS) */ } ACE_INLINE struct servent * @@ -689,8 +688,8 @@ ACE_OS::getservbyname_r (const char *svc, ACE_UNUSED_ARG (result); ACE_UNUSED_ARG (buf); ACE_NOTSUP_RETURN (0); -#elif defined (ACE_HAS_REENTRANT_FUNCTIONS) && !defined (UNIXWARE) -# if defined (AIX) || defined (DIGITAL_UNIX) +#elif defined (ACE_HAS_REENTRANT_FUNCTIONS) +# if defined (AIX) ACE_OS::memset (buf, 0, sizeof (ACE_SERVENT_DATA)); //FUZZ: disable check_for_lack_ACE_OS @@ -729,7 +728,7 @@ ACE_OS::getservbyname_r (const char *svc, struct servent *, 0); //FUZZ: enable check_for_lack_ACE_OS # endif /* ACE_LACKS_NETDB_REENTRANT_FUNCTIONS */ -# endif /* defined (AIX) || defined (DIGITAL_UNIX) */ +# endif /* defined (AIX) */ #elif defined (ACE_HAS_NONCONST_GETBY) ACE_UNUSED_ARG (buf); ACE_UNUSED_ARG (result); @@ -748,7 +747,7 @@ ACE_OS::getservbyname_r (const char *svc, struct servent *, 0); //FUZZ: enable check_for_lack_ACE_OS -#endif /* defined (ACE_HAS_REENTRANT_FUNCTIONS) && !defined (UNIXWARE) */ +#endif /* defined (ACE_HAS_REENTRANT_FUNCTIONS) */ } ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/OS_NS_poll.cpp b/dep/acelite/ace/OS_NS_poll.cpp index 0c8523d890f..954c59bc76b 100644 --- a/dep/acelite/ace/OS_NS_poll.cpp +++ b/dep/acelite/ace/OS_NS_poll.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_poll.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_poll.cpp 91626 2010-09-07 10:59:20Z johnnyw $ #include "ace/OS_NS_poll.h" -ACE_RCSID(ace, OS_NS_poll, "$Id: OS_NS_poll.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_poll.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_pwd.cpp b/dep/acelite/ace/OS_NS_pwd.cpp index 7a3e5c59b04..be191f62a52 100644 --- a/dep/acelite/ace/OS_NS_pwd.cpp +++ b/dep/acelite/ace/OS_NS_pwd.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_pwd.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_pwd.cpp 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_pwd.h" -ACE_RCSID(ace, OS_NS_pwd, "$Id: OS_NS_pwd.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_pwd.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_pwd.inl b/dep/acelite/ace/OS_NS_pwd.inl index cb13fe8f292..6fcb076fd8b 100644 --- a/dep/acelite/ace/OS_NS_pwd.inl +++ b/dep/acelite/ace/OS_NS_pwd.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_pwd.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_pwd.inl 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_errno.h" @@ -57,13 +57,9 @@ ACE_OS::getpwnam_r (const char *name, struct passwd *pwent, # if !defined (ACE_LACKS_PWD_REENTRANT_FUNCTIONS) # if defined (ACE_HAS_PTHREADS) && \ !defined (ACE_HAS_STHREADS) || \ - defined (HPUX_11) || \ - defined (__USLC__) // Added by Roland Gigler for SCO UnixWare 7. - struct passwd *result; + defined (HPUX_11) + struct passwd *result = 0; int status; -# if defined (DIGITAL_UNIX) - ::_Pgetpwnam_r (name, pwent, buffer, buflen, &result); -# else // VAC++ doesn't correctly grok the ::getpwnam_r - the function is redefined // in pwd.h, and that redefinition is used here # if defined (__IBMCPP__) && (__IBMCPP__ >= 400) /* VAC++ 4 */ @@ -76,7 +72,6 @@ ACE_OS::getpwnam_r (const char *name, struct passwd *pwent, errno = status; result = 0; } -# endif /* (DIGITAL_UNIX) */ return result; # elif defined (AIX) if (::getpwnam_r (name, pwent, buffer, buflen) == -1) diff --git a/dep/acelite/ace/OS_NS_regex.cpp b/dep/acelite/ace/OS_NS_regex.cpp index 62533a2f45a..141d50ab236 100644 --- a/dep/acelite/ace/OS_NS_regex.cpp +++ b/dep/acelite/ace/OS_NS_regex.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_regex.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_regex.cpp 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_regex.h" -ACE_RCSID(ace, OS_NS_regex, "$Id: OS_NS_regex.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_regex.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_regex.inl b/dep/acelite/ace/OS_NS_regex.inl index 3f5a0aa932f..0ffdcdfb2b7 100644 --- a/dep/acelite/ace/OS_NS_regex.inl +++ b/dep/acelite/ace/OS_NS_regex.inl @@ -1,6 +1,5 @@ // -*- C++ -*- -// -// $Id: OS_NS_regex.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_regex.inl 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_errno.h" #include "ace/os_include/os_regex.h" diff --git a/dep/acelite/ace/OS_NS_signal.cpp b/dep/acelite/ace/OS_NS_signal.cpp index bb1c4130564..e4690ce3446 100644 --- a/dep/acelite/ace/OS_NS_signal.cpp +++ b/dep/acelite/ace/OS_NS_signal.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_signal.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_signal.cpp 91809 2010-09-17 07:20:41Z johnnyw $ #include "ace/OS_NS_signal.h" -ACE_RCSID(ace, OS_NS_signal, "$Id: OS_NS_signal.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_signal.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_stdio.cpp b/dep/acelite/ace/OS_NS_stdio.cpp index 57dd1b07c83..7ecebf1e324 100644 --- a/dep/acelite/ace/OS_NS_stdio.cpp +++ b/dep/acelite/ace/OS_NS_stdio.cpp @@ -1,13 +1,8 @@ -// $Id: OS_NS_stdio.cpp 86912 2009-10-04 14:26:19Z schmidt $ +// $Id: OS_NS_stdio.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_stdio.h" #include "ace/OS_NS_Thread.h" -ACE_RCSID (ace, - OS_NS_stdio, - "$Id: OS_NS_stdio.cpp 86912 2009-10-04 14:26:19Z schmidt $") - - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_stdio.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_stdio.h b/dep/acelite/ace/OS_NS_stdio.h index e70a4aa97a0..bf120229c28 100644 --- a/dep/acelite/ace/OS_NS_stdio.h +++ b/dep/acelite/ace/OS_NS_stdio.h @@ -4,7 +4,7 @@ /** * @file OS_NS_stdio.h * - * $Id: OS_NS_stdio.h 87143 2009-10-17 10:29:01Z olli $ + * $Id: OS_NS_stdio.h 92178 2010-10-08 07:44:20Z olli $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> * @author Jesper S. M|ller<stophph@diku.dk> @@ -50,17 +50,15 @@ * using the pre-processor. * */ -#if !defined (ACE_LACKS_CLEARERR) inline void ace_clearerr_helper (FILE *stream) { -# if defined (clearerr) +#if defined (clearerr) clearerr (stream); -# undef clearerr -# else +#undef clearerr +#else ACE_STD_NAMESPACE::clearerr (stream); -# endif /* defined (clearerr) */ +#endif /* defined (clearerr) */ } -#endif /* !ACE_LACKS_CLEARERR */ inline int ace_fgetc_helper (FILE *fp) { @@ -123,7 +121,7 @@ inline ACE_HANDLE ace_fileno_helper (FILE *fp) # endif /* defined (fileno) */ } #endif /* !ACE_FILENO_EQUIVALENT */ - + #if !defined (ACE_LACKS_CUSERID) && !defined(ACE_HAS_ALT_CUSERID) \ && !defined(ACE_WIN32) && !defined (ACE_VXWORKS) /// Helper for the ACE_OS::cuserid() function @@ -199,10 +197,8 @@ namespace ACE_OS { void checkUnicodeFormat (FILE* fp); # endif // ACE_USES_WCHAR -# if !defined (ACE_LACKS_CLEARERR) ACE_NAMESPACE_INLINE_FUNCTION void clearerr (FILE* fp); -# endif /* !ACE_LACKS_CLEARERR */ //@{ @name Wrappers to obtain the current user id // Legacy as per SUSV3 diff --git a/dep/acelite/ace/OS_NS_stdio.inl b/dep/acelite/ace/OS_NS_stdio.inl index 64ffc18b950..22bd1fbe135 100644 --- a/dep/acelite/ace/OS_NS_stdio.inl +++ b/dep/acelite/ace/OS_NS_stdio.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_stdio.inl 87232 2009-10-26 13:25:55Z johnnyw $ +// $Id: OS_NS_stdio.inl 92182 2010-10-08 08:21:27Z olli $ #include "ace/OS_NS_unistd.h" #include "ace/OS_NS_stdlib.h" @@ -339,13 +339,11 @@ ACE_OS::flock_wrlock (ACE_OS::ace_flock_t *lock, #endif /* ACE_WIN32 */ } -#if !defined (ACE_LACKS_CLEARERR) ACE_INLINE void ACE_OS::clearerr (FILE* fp) { ace_clearerr_helper (fp); } -#endif /* !ACE_LACKS_CLEARERR */ #if !defined (ACE_LACKS_CUSERID) ACE_INLINE char * @@ -807,12 +805,7 @@ ACE_OS::rename (const char *old_name, const char *new_name, int flags) { -# if defined (ACE_LACKS_RENAME) - ACE_UNUSED_ARG (old_name); - ACE_UNUSED_ARG (new_name); - ACE_UNUSED_ARG (flags); - ACE_NOTSUP_RETURN (-1); -# elif defined (ACE_HAS_WINCE) +# if defined (ACE_HAS_WINCE) // Win CE is always wide-char. ACE_UNUSED_ARG (flags); if (0 == ::MoveFile (ACE_TEXT_CHAR_TO_TCHAR (old_name), @@ -829,10 +822,10 @@ ACE_OS::rename (const char *old_name, if (::MoveFileExA (old_name, new_name, flags) == 0) ACE_FAIL_RETURN (-1); return 0; -# else /* ACE_LACKS_RENAME */ +# else ACE_UNUSED_ARG (flags); ACE_OSCALL_RETURN (::rename (old_name, new_name), int, -1); -# endif /* ACE_LACKS_RENAME */ +# endif /* ACE_HAS_WINCE */ } #if defined (ACE_HAS_WCHAR) @@ -841,12 +834,7 @@ ACE_OS::rename (const wchar_t *old_name, const wchar_t *new_name, int flags) { -# if defined (ACE_LACKS_RENAME) - ACE_UNUSED_ARG (old_name); - ACE_UNUSED_ARG (new_name); - ACE_UNUSED_ARG (flags); - ACE_NOTSUP_RETURN (-1); -# elif defined (ACE_HAS_WINCE) +# if defined (ACE_HAS_WINCE) ACE_UNUSED_ARG (flags); if (::MoveFileW (old_name, new_name) == 0) ACE_FAIL_RETURN (-1); @@ -864,11 +852,11 @@ ACE_OS::rename (const wchar_t *old_name, # elif defined (ACE_WIN32) ACE_UNUSED_ARG (flags); ACE_OSCALL_RETURN (::_wrename (old_name, new_name), int, -1); -# else /* ACE_LACKS_RENAME */ +# else ACE_Wide_To_Ascii nold_name (old_name); ACE_Wide_To_Ascii nnew_name (new_name); return ACE_OS::rename (nold_name.char_rep (), nnew_name.char_rep (), flags); -# endif /* ACE_LACKS_RENAME */ +# endif /* ACE_HAS_WINCE */ } #endif /* ACE_HAS_WCHAR */ diff --git a/dep/acelite/ace/OS_NS_stdlib.cpp b/dep/acelite/ace/OS_NS_stdlib.cpp index c74480227d7..92430d0c84d 100644 --- a/dep/acelite/ace/OS_NS_stdlib.cpp +++ b/dep/acelite/ace/OS_NS_stdlib.cpp @@ -1,11 +1,7 @@ -// $Id: OS_NS_stdlib.cpp 85363 2009-05-18 07:48:11Z johnnyw $ +// $Id: OS_NS_stdlib.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_stdlib.h" -ACE_RCSID (ace, - OS_NS_stdlib, - "$Id: OS_NS_stdlib.cpp 85363 2009-05-18 07:48:11Z johnnyw $") - #include "ace/Default_Constants.h" #if !defined (ACE_HAS_INLINED_OSCALLS) diff --git a/dep/acelite/ace/OS_NS_stdlib.inl b/dep/acelite/ace/OS_NS_stdlib.inl index 323149fb211..97d04e8d855 100644 --- a/dep/acelite/ace/OS_NS_stdlib.inl +++ b/dep/acelite/ace/OS_NS_stdlib.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_stdlib.inl 87347 2009-11-05 12:00:29Z olli $ +// $Id: OS_NS_stdlib.inl 91683 2010-09-09 09:07:49Z johnnyw $ #include "ace/config-all.h" /* Need ACE_TRACE */ #include "ace/Object_Manager_Base.h" @@ -411,13 +411,11 @@ ACE_OS::rand_r (ACE_RANDR_TYPE &seed) ACE_OS_TRACE ("ACE_OS::rand_r"); # if defined (ACE_HAS_REENTRANT_FUNCTIONS) && \ !defined (ACE_LACKS_RAND_REENTRANT_FUNCTIONS) -# if defined (DIGITAL_UNIX) - ACE_OSCALL_RETURN (::_Prand_r (&seed), int, -1); -# elif defined (ACE_HAS_BROKEN_RANDR) +# if defined (ACE_HAS_BROKEN_RANDR) ACE_OSCALL_RETURN (::rand_r (seed), int, -1); # else ACE_OSCALL_RETURN (::rand_r (&seed), int, -1); -# endif /* DIGITAL_UNIX */ +# endif /* ACE_HAS_BROKEN_RANDR */ # else ACE_UNUSED_ARG (seed); ACE_OSCALL_RETURN (::rand (), int, -1); diff --git a/dep/acelite/ace/OS_NS_string.cpp b/dep/acelite/ace/OS_NS_string.cpp index d1c45fc872e..93e112d60c8 100644 --- a/dep/acelite/ace/OS_NS_string.cpp +++ b/dep/acelite/ace/OS_NS_string.cpp @@ -1,14 +1,10 @@ -// $Id: OS_NS_string.cpp 88331 2009-12-24 09:54:25Z johnnyw $ +// $Id: OS_NS_string.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/ACE.h" #include "ace/OS_NS_string.h" #include "ace/OS_NS_stdio.h" #include "ace/OS_NS_stdlib.h" -ACE_RCSID (ace, - OS_NS_string, - "$Id: OS_NS_string.cpp 88331 2009-12-24 09:54:25Z johnnyw $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_string.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_string.h b/dep/acelite/ace/OS_NS_string.h index 2497f2c0c64..54da02a8ba8 100644 --- a/dep/acelite/ace/OS_NS_string.h +++ b/dep/acelite/ace/OS_NS_string.h @@ -4,7 +4,7 @@ /** * @file OS_NS_string.h * - * $Id: OS_NS_string.h 87481 2009-11-11 11:46:10Z olli $ + * $Id: OS_NS_string.h 91995 2010-09-24 12:45:24Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> * @author Jesper S. M|ller<stophph@diku.dk> @@ -97,24 +97,24 @@ namespace ACE_OS { wchar_t *strcat (wchar_t *s, const wchar_t *t); #endif /* ACE_HAS_WCHAR */ - /// Finds the first occurance of a character in a string (const char + /// Finds the first occurrence of a character in a string (const char /// version). ACE_NAMESPACE_INLINE_FUNCTION const char *strchr (const char *s, int c); #if defined (ACE_HAS_WCHAR) - /// Finds the first occurance of a character in a string (const wchar_t + /// Finds the first occurrence of a character in a string (const wchar_t /// version). ACE_NAMESPACE_INLINE_FUNCTION const wchar_t *strchr (const wchar_t *s, wchar_t c); #endif /* ACE_HAS_WCHAR */ - /// Finds the first occurance of a character in a string (char version). + /// Finds the first occurrence of a character in a string (char version). ACE_NAMESPACE_INLINE_FUNCTION char *strchr (char *s, int c); #if defined (ACE_HAS_WCHAR) - /// Finds the first occurance of a character in a string (wchar_t version). + /// Finds the first occurrence of a character in a string (wchar_t version). ACE_NAMESPACE_INLINE_FUNCTION wchar_t *strchr (wchar_t *s, wchar_t c); #endif /* ACE_HAS_WCHAR */ @@ -197,7 +197,7 @@ namespace ACE_OS { /// Returns a string describing the signal number passed in the - /// argument signum. If the supplied signal number is out of range, + /// argument @a signum. If the supplied signal number is out of range, /// a string of the form "Unknown signal %d" is used to format the string /// whose pointer is returned. extern ACE_Export @@ -219,21 +219,21 @@ namespace ACE_OS { ACE_NAMESPACE_INLINE_FUNCTION ACE_WCHAR_T *strncat (ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len); - /// Finds the first occurance of a character in an array (const char + /// Finds the first occurrence of a character in an array (const char /// version). extern ACE_Export const char *strnchr (const char *s, int c, size_t len); - /// Finds the first occurance of a character in an array (const ACE_WCHAR_T + /// Finds the first occurrence of a character in an array (const ACE_WCHAR_T /// version). extern ACE_Export const ACE_WCHAR_T *strnchr (const ACE_WCHAR_T *s, ACE_WCHAR_T c, size_t len); - /// Finds the first occurance of a character in an array (char version). + /// Finds the first occurrence of a character in an array (char version). ACE_NAMESPACE_INLINE_FUNCTION char *strnchr (char *s, int c, size_t len); - /// Finds the first occurance of a character in an array (ACE_WCHAR_T version). + /// Finds the first occurrence of a character in an array (ACE_WCHAR_T version). ACE_NAMESPACE_INLINE_FUNCTION ACE_WCHAR_T *strnchr (ACE_WCHAR_T *s, ACE_WCHAR_T c, size_t len); @@ -277,23 +277,23 @@ namespace ACE_OS { ACE_NAMESPACE_INLINE_FUNCTION size_t strnlen (const ACE_WCHAR_T *s, size_t maxlen); - /// Finds the first occurance of a substring in an array (const char + /// Finds the first occurrence of a substring in an array (const char /// version). extern ACE_Export const char *strnstr (const char *s, const char *t, size_t len); - /// Finds the first occurance of a substring in an array (const wchar_t + /// Finds the first occurrence of a substring in an array (const wchar_t /// version). extern ACE_Export const ACE_WCHAR_T *strnstr (const ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len); - /// Finds the first occurance of a substring in an array (char version). + /// Finds the first occurrence of a substring in an array (char version). ACE_NAMESPACE_INLINE_FUNCTION char *strnstr (char *s, const char *t, size_t len); - /// Finds the first occurance of a substring in an array (wchar_t version). + /// Finds the first occurrence of a substring in an array (wchar_t version). ACE_NAMESPACE_INLINE_FUNCTION ACE_WCHAR_T *strnstr (ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len); @@ -317,35 +317,35 @@ namespace ACE_OS { wchar_t *strpbrk (wchar_t *s1, const wchar_t *s2); #endif /* ACE_HAS_WCHAR */ - /// Finds the last occurance of a character in a string (const char + /// Finds the last occurrence of a character in a string (const char /// version). ACE_NAMESPACE_INLINE_FUNCTION const char *strrchr (const char *s, int c); #if defined (ACE_HAS_WCHAR) - /// Finds the last occurance of a character in a string (const wchar_t + /// Finds the last occurrence of a character in a string (const wchar_t /// version). ACE_NAMESPACE_INLINE_FUNCTION const wchar_t *strrchr (const wchar_t *s, wchar_t c); #endif /* ACE_HAS_WCHAR */ - /// Finds the last occurance of a character in a string (char version). + /// Finds the last occurrence of a character in a string (char version). ACE_NAMESPACE_INLINE_FUNCTION char *strrchr (char *s, int c); #if defined (ACE_HAS_WCHAR) - /// Finds the last occurance of a character in a string (wchar_t version). + /// Finds the last occurrence of a character in a string (wchar_t version). ACE_NAMESPACE_INLINE_FUNCTION wchar_t *strrchr (wchar_t *s, wchar_t c); #endif /* ACE_HAS_WCHAR */ #if defined (ACE_LACKS_STRRCHR) - /// Emulated strrchr (char version) - Finds the last occurance of a + /// Emulated strrchr (char version) - Finds the last occurrence of a /// character in a string. extern ACE_Export char *strrchr_emulation (char *s, int c); - /// Emulated strrchr (const char version) - Finds the last occurance of a + /// Emulated strrchr (const char version) - Finds the last occurrence of a /// character in a string. extern ACE_Export const char *strrchr_emulation (const char *s, int c); @@ -405,24 +405,24 @@ namespace ACE_OS { size_t strspn (const wchar_t *s1, const wchar_t *s2); #endif /* ACE_HAS_WCHAR */ - /// Finds the first occurance of a substring in a string (const char + /// Finds the first occurrence of a substring in a string (const char /// version). ACE_NAMESPACE_INLINE_FUNCTION const char *strstr (const char *s, const char *t); #if defined (ACE_HAS_WCHAR) - /// Finds the first occurance of a substring in a string (const wchar_t + /// Finds the first occurrence of a substring in a string (const wchar_t /// version). ACE_NAMESPACE_INLINE_FUNCTION const wchar_t *strstr (const wchar_t *s, const wchar_t *t); #endif /* ACE_HAS_WCHAR */ - /// Finds the first occurance of a substring in a string (char version). + /// Finds the first occurrence of a substring in a string (char version). ACE_NAMESPACE_INLINE_FUNCTION char *strstr (char *s, const char *t); #if defined (ACE_HAS_WCHAR) - /// Finds the first occurance of a substring in a string (wchar_t version). + /// Finds the first occurrence of a substring in a string (wchar_t version). ACE_NAMESPACE_INLINE_FUNCTION wchar_t *strstr (wchar_t *s, const wchar_t *t); #endif /* ACE_HAS_WCHAR */ diff --git a/dep/acelite/ace/OS_NS_string.inl b/dep/acelite/ace/OS_NS_string.inl index 8b9d15f30ac..52ade6993fa 100644 --- a/dep/acelite/ace/OS_NS_string.inl +++ b/dep/acelite/ace/OS_NS_string.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_string.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_string.inl 92069 2010-09-28 11:38:59Z johnnyw $ // OS_NS_wchar.h is only needed to get the emulation methods. // Perhaps they should be moved. dhinton @@ -259,12 +259,7 @@ ACE_OS::strlen (const ACE_WCHAR_T *s) ACE_INLINE char * ACE_OS::strncat (char *s, const char *t, size_t len) { -#if 0 /* defined (ACE_HAS_TR24731_2005_CRT) */ - strncat_s (s, len + 1, t, _TRUNCATE); - return s; -#else return ::strncat (s, t, len); -#endif /* ACE_HAS_TR24731_2005_CRT */ } ACE_INLINE ACE_WCHAR_T * diff --git a/dep/acelite/ace/OS_NS_strings.cpp b/dep/acelite/ace/OS_NS_strings.cpp index 5b5cfcf4917..3727ff389ed 100644 --- a/dep/acelite/ace/OS_NS_strings.cpp +++ b/dep/acelite/ace/OS_NS_strings.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_strings.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_strings.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_strings.h" -ACE_RCSID(ace, OS_NS_strings, "$Id: OS_NS_strings.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_strings.inl" diff --git a/dep/acelite/ace/OS_NS_stropts.cpp b/dep/acelite/ace/OS_NS_stropts.cpp index 174133e589d..4a81a1f5be8 100644 --- a/dep/acelite/ace/OS_NS_stropts.cpp +++ b/dep/acelite/ace/OS_NS_stropts.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_stropts.cpp 85460 2009-05-29 13:38:50Z msmit $ +// $Id: OS_NS_stropts.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_stropts.h" -ACE_RCSID(ace, OS_NS_stropts, "$Id: OS_NS_stropts.cpp 85460 2009-05-29 13:38:50Z msmit $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_stropts.inl" diff --git a/dep/acelite/ace/OS_NS_sys_mman.cpp b/dep/acelite/ace/OS_NS_sys_mman.cpp index d0b02a9e056..340511eb020 100644 --- a/dep/acelite/ace/OS_NS_sys_mman.cpp +++ b/dep/acelite/ace/OS_NS_sys_mman.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_mman.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_mman.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_mman.h" -ACE_RCSID(ace, OS_NS_sys_mman, "$Id: OS_NS_sys_mman.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_mman.inl" diff --git a/dep/acelite/ace/OS_NS_sys_msg.cpp b/dep/acelite/ace/OS_NS_sys_msg.cpp index 3e2b177b765..d59e47e7c00 100644 --- a/dep/acelite/ace/OS_NS_sys_msg.cpp +++ b/dep/acelite/ace/OS_NS_sys_msg.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_msg.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_msg.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_msg.h" -ACE_RCSID(ace, OS_NS_sys_msg, "$Id: OS_NS_sys_msg.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_msg.inl" diff --git a/dep/acelite/ace/OS_NS_sys_resource.cpp b/dep/acelite/ace/OS_NS_sys_resource.cpp index 58d29f604f9..eea2c7d05aa 100644 --- a/dep/acelite/ace/OS_NS_sys_resource.cpp +++ b/dep/acelite/ace/OS_NS_sys_resource.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_sys_resource.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_resource.cpp 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_sys_resource.h" -ACE_RCSID(ace, OS_NS_sys_resource, "$Id: OS_NS_sys_resource.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_resource.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_sys_select.cpp b/dep/acelite/ace/OS_NS_sys_select.cpp index 9c6588ad43e..c644bc8299d 100644 --- a/dep/acelite/ace/OS_NS_sys_select.cpp +++ b/dep/acelite/ace/OS_NS_sys_select.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_sys_select.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_select.cpp 91626 2010-09-07 10:59:20Z johnnyw $ #include "ace/OS_NS_sys_select.h" -ACE_RCSID(ace, OS_NS_sys_select, "$Id: OS_NS_sys_select.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_select.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_sys_shm.cpp b/dep/acelite/ace/OS_NS_sys_shm.cpp index 4c2353935da..3ceebcb683d 100644 --- a/dep/acelite/ace/OS_NS_sys_shm.cpp +++ b/dep/acelite/ace/OS_NS_sys_shm.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_shm.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_shm.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_shm.h" -ACE_RCSID(ace, OS_NS_sys_shm, "$Id: OS_NS_sys_shm.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_shm.inl" diff --git a/dep/acelite/ace/OS_NS_sys_socket.cpp b/dep/acelite/ace/OS_NS_sys_socket.cpp index 22783a002c3..3ce26a82490 100644 --- a/dep/acelite/ace/OS_NS_sys_socket.cpp +++ b/dep/acelite/ace/OS_NS_sys_socket.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_socket.cpp 85460 2009-05-29 13:38:50Z msmit $ +// $Id: OS_NS_sys_socket.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_socket.h" -ACE_RCSID(ace, OS_NS_sys_socket, "$Id: OS_NS_sys_socket.cpp 85460 2009-05-29 13:38:50Z msmit $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_socket.inl" diff --git a/dep/acelite/ace/OS_NS_sys_socket.inl b/dep/acelite/ace/OS_NS_sys_socket.inl index 925c340aec5..f55ead2c3d7 100644 --- a/dep/acelite/ace/OS_NS_sys_socket.inl +++ b/dep/acelite/ace/OS_NS_sys_socket.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_sys_socket.inl 85632 2009-06-12 19:28:00Z mitza $ +// $Id: OS_NS_sys_socket.inl 91626 2010-09-07 10:59:20Z johnnyw $ #include "ace/OS_NS_errno.h" #include "ace/OS_NS_macros.h" @@ -104,7 +104,7 @@ ACE_OS::bind (ACE_HANDLE handle, struct sockaddr *addr, int addrlen) ACE_UNUSED_ARG (addrlen); ACE_NOTSUP_RETURN (-1); #elif defined (ACE_VXWORKS) && (ACE_VXWORKS <= 0x640) - // VxWorks clears the sin_port member after a succesfull bind when + // VxWorks clears the sin_port member after a successful bind when // sin_addr != INADDR_ANY, so after the bind we do retrieve the // original address so that user code can safely check the addr // after the bind. See bugzilla 3107 for more details diff --git a/dep/acelite/ace/OS_NS_sys_stat.cpp b/dep/acelite/ace/OS_NS_sys_stat.cpp index 1cba079cf76..ad43dd67c38 100644 --- a/dep/acelite/ace/OS_NS_sys_stat.cpp +++ b/dep/acelite/ace/OS_NS_sys_stat.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_stat.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_stat.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_stat.h" -ACE_RCSID(ace, OS_NS_sys_stat, "$Id: OS_NS_sys_stat.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_stat.inl" diff --git a/dep/acelite/ace/OS_NS_sys_time.cpp b/dep/acelite/ace/OS_NS_sys_time.cpp index e1be6798811..d47c4ba1d23 100644 --- a/dep/acelite/ace/OS_NS_sys_time.cpp +++ b/dep/acelite/ace/OS_NS_sys_time.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_time.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_time.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_time.h" -ACE_RCSID(ace, OS_NS_sys_time, "$Id: OS_NS_sys_time.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_time.inl" diff --git a/dep/acelite/ace/OS_NS_sys_uio.cpp b/dep/acelite/ace/OS_NS_sys_uio.cpp index c0d59f62db4..1b26f17d205 100644 --- a/dep/acelite/ace/OS_NS_sys_uio.cpp +++ b/dep/acelite/ace/OS_NS_sys_uio.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_uio.cpp 81756 2008-05-22 09:47:33Z johnnyw $ +// $Id: OS_NS_sys_uio.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_uio.h" -ACE_RCSID(ace, OS_NS_sys_uio, "$Id: OS_NS_sys_uio.cpp 81756 2008-05-22 09:47:33Z johnnyw $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_uio.inl" diff --git a/dep/acelite/ace/OS_NS_sys_utsname.cpp b/dep/acelite/ace/OS_NS_sys_utsname.cpp index 05ec17dc1dc..b6dc6d31c05 100644 --- a/dep/acelite/ace/OS_NS_sys_utsname.cpp +++ b/dep/acelite/ace/OS_NS_sys_utsname.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_utsname.cpp 86433 2009-08-09 19:19:12Z johnnyw $ +// $Id: OS_NS_sys_utsname.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_utsname.h" -ACE_RCSID(ace, OS_NS_sys_utsname, "$Id: OS_NS_sys_utsname.cpp 86433 2009-08-09 19:19:12Z johnnyw $") + #include "ace/OS_NS_string.h" #include "ace/OS_NS_stdio.h" diff --git a/dep/acelite/ace/OS_NS_sys_wait.cpp b/dep/acelite/ace/OS_NS_sys_wait.cpp index 2f83bb28efb..148d778e40b 100644 --- a/dep/acelite/ace/OS_NS_sys_wait.cpp +++ b/dep/acelite/ace/OS_NS_sys_wait.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_sys_wait.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_wait.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_sys_wait.h" -ACE_RCSID(ace, OS_NS_sys_wait, "$Id: OS_NS_sys_wait.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_sys_wait.inl" diff --git a/dep/acelite/ace/OS_NS_sys_wait.inl b/dep/acelite/ace/OS_NS_sys_wait.inl index f24c09267d5..02333b409a1 100644 --- a/dep/acelite/ace/OS_NS_sys_wait.inl +++ b/dep/acelite/ace/OS_NS_sys_wait.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_sys_wait.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_NS_sys_wait.inl 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_errno.h" #include "ace/Global_Macros.h" @@ -57,15 +57,13 @@ ACE_OS::waitpid (pid_t pid, // Don't try to get the process exit status if wait failed so we can // keep the original error code intact. - switch (::WaitForSingleObject (phandle, - blocking_period)) + switch (::WaitForSingleObject (phandle, blocking_period)) { case WAIT_OBJECT_0: if (status != 0) // The error status of <GetExitCodeProcess> is nonetheless // not tested because we don't know how to return the value. - ::GetExitCodeProcess (phandle, - status); + ::GetExitCodeProcess (phandle, status); break; case WAIT_TIMEOUT: errno = ETIME; diff --git a/dep/acelite/ace/OS_NS_time.cpp b/dep/acelite/ace/OS_NS_time.cpp index b49fc828753..2e7aedf23b1 100644 --- a/dep/acelite/ace/OS_NS_time.cpp +++ b/dep/acelite/ace/OS_NS_time.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_time.cpp 86094 2009-07-17 19:04:11Z schmidt $ +// $Id: OS_NS_time.cpp 91683 2010-09-09 09:07:49Z johnnyw $ #include "ace/OS_NS_time.h" -ACE_RCSID(ace, OS_NS_time, "$Id: OS_NS_time.cpp 86094 2009-07-17 19:04:11Z schmidt $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_time.inl" @@ -226,11 +226,7 @@ ACE_OS::localtime_r (const time_t *t, struct tm *res) { ACE_OS_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); -# else ACE_OSCALL_RETURN (::localtime_r (t, res), struct tm *, 0); -# endif /* DIGITAL_UNIX */ #elif defined (ACE_HAS_TR24731_2005_CRT) ACE_SECURECRTCALL (localtime_s (res, t), struct tm *, 0, res); return res; diff --git a/dep/acelite/ace/OS_NS_time.inl b/dep/acelite/ace/OS_NS_time.inl index ab8da37bba7..c89fba5accb 100644 --- a/dep/acelite/ace/OS_NS_time.inl +++ b/dep/acelite/ace/OS_NS_time.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: OS_NS_time.inl 87270 2009-10-29 21:47:47Z olli $ +// $Id: OS_NS_time.inl 91683 2010-09-09 09:07:49Z johnnyw $ #include "ace/OS_NS_string.h" #include "ace/OS_NS_errno.h" @@ -28,12 +28,8 @@ ACE_OS::asctime_r (const struct tm *t, char *buf, int buflen) ACE_OS_TRACE ("ACE_OS::asctime_r"); #if defined (ACE_HAS_REENTRANT_FUNCTIONS) # if defined (ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R) - char *result; -# if defined (DIGITAL_UNIX) - ACE_OSCALL (::_Pasctime_r (t, buf), char *, 0, result); -# else + char *result = 0; ACE_OSCALL (::asctime_r (t, buf), char *, 0, result); -# endif /* DIGITAL_UNIX */ ACE_OS::strsncpy (buf, result, buflen); return buf; # else @@ -147,11 +143,7 @@ ACE_OS::ctime_r (const time_t *t, ACE_TCHAR *buf, int buflen) return 0; } # if defined (ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R) -# if defined (DIGITAL_UNIX) - ACE_OSCALL (::_Pctime_r (t, bufp), ACE_TCHAR *, 0, bufp); -# else /* DIGITAL_UNIX */ ACE_OSCALL (::ctime_r (t, bufp), char *, 0, bufp); -# endif /* DIGITAL_UNIX */ # else /* ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R */ # if defined (ACE_HAS_SIZET_PTR_ASCTIME_R_AND_CTIME_R) @@ -369,11 +361,7 @@ ACE_OS::gmtime_r (const time_t *t, struct tm *res) { ACE_OS_TRACE ("ACE_OS::gmtime_r"); #if defined (ACE_HAS_REENTRANT_FUNCTIONS) -# if defined (DIGITAL_UNIX) - ACE_OSCALL_RETURN (::_Pgmtime_r (t, res), struct tm *, 0); -# else ACE_OSCALL_RETURN (::gmtime_r (t, res), struct tm *, 0); -# endif /* DIGITAL_UNIX */ #elif defined (ACE_HAS_TR24731_2005_CRT) struct tm *tm_p = res; ACE_SECURECRTCALL (gmtime_s (res, t), struct tm *, 0, tm_p); diff --git a/dep/acelite/ace/OS_NS_unistd.cpp b/dep/acelite/ace/OS_NS_unistd.cpp index 4579a22d84b..66ff09f5c3d 100644 --- a/dep/acelite/ace/OS_NS_unistd.cpp +++ b/dep/acelite/ace/OS_NS_unistd.cpp @@ -1,9 +1,7 @@ -// $Id: OS_NS_unistd.cpp 85906 2009-07-06 20:52:40Z mitza $ +// $Id: OS_NS_unistd.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_unistd.h" -ACE_RCSID (ace, OS_NS_unistd, "$Id: OS_NS_unistd.cpp 85906 2009-07-06 20:52:40Z mitza $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_unistd.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_wchar.cpp b/dep/acelite/ace/OS_NS_wchar.cpp index a067f3bf56b..b0a5075ac9c 100644 --- a/dep/acelite/ace/OS_NS_wchar.cpp +++ b/dep/acelite/ace/OS_NS_wchar.cpp @@ -1,8 +1,8 @@ -// $Id: OS_NS_wchar.cpp 88331 2009-12-24 09:54:25Z johnnyw $ +// $Id: OS_NS_wchar.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_wchar.h" -ACE_RCSID(ace, OS_NS_wchar, "$Id: OS_NS_wchar.cpp 88331 2009-12-24 09:54:25Z johnnyw $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_wchar.inl" diff --git a/dep/acelite/ace/OS_NS_wchar.h b/dep/acelite/ace/OS_NS_wchar.h index 4a9843ab845..dc7ddb579de 100644 --- a/dep/acelite/ace/OS_NS_wchar.h +++ b/dep/acelite/ace/OS_NS_wchar.h @@ -4,7 +4,7 @@ /** * @file OS_NS_wchar.h * - * $Id: OS_NS_wchar.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: OS_NS_wchar.h 91995 2010-09-24 12:45:24Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> * @author Jesper S. M|ller<stophph@diku.dk> @@ -136,12 +136,12 @@ namespace ACE_OS #endif /* ACE_HAS_WCHAR && ACE_LACKS_WCSPBRK */ #if defined (ACE_HAS_WCHAR) && defined (ACE_LACKS_WCSRCHR) - /// Emulated wcsrchr (wchar_t version) - Finds the last occurance of a + /// Emulated wcsrchr (wchar_t version) - Finds the last occurrence of a /// character in a string. extern ACE_Export wchar_t *wcsrchr_emulation (wchar_t *string, wint_t c); - /// Emulated wcsrchr (const wchar_t version) - Finds the last occurance of a + /// Emulated wcsrchr (const wchar_t version) - Finds the last occurrence of a /// character in a string. extern ACE_Export const wchar_t *wcsrchr_emulation (const wchar_t *string, wint_t c); diff --git a/dep/acelite/ace/OS_NS_wctype.cpp b/dep/acelite/ace/OS_NS_wctype.cpp index e9e1cf03c8a..b5bb362dc47 100644 --- a/dep/acelite/ace/OS_NS_wctype.cpp +++ b/dep/acelite/ace/OS_NS_wctype.cpp @@ -1,10 +1,8 @@ // -*- C++ -*- -// $Id: OS_NS_wctype.cpp 83891 2008-11-28 11:01:50Z johnnyw $ +// $Id: OS_NS_wctype.cpp 91781 2010-09-15 12:49:15Z johnnyw $ #include "ace/OS_NS_wctype.h" -ACE_RCSID(ace, OS_NS_wctype, "$Id: OS_NS_wctype.cpp 83891 2008-11-28 11:01:50Z johnnyw $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_NS_wctype.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/OS_NS_wctype.inl b/dep/acelite/ace/OS_NS_wctype.inl index 7706471b17a..79ce0812ad8 100644 --- a/dep/acelite/ace/OS_NS_wctype.inl +++ b/dep/acelite/ace/OS_NS_wctype.inl @@ -1,6 +1,5 @@ // -*- C++ -*- -// -// $Id: OS_NS_wctype.inl 83891 2008-11-28 11:01:50Z johnnyw $ +// $Id: OS_NS_wctype.inl 91781 2010-09-15 12:49:15Z johnnyw $ #if defined (ACE_LACKS_ISWCTYPE) #include "ace/OS_NS_errno.h" diff --git a/dep/acelite/ace/OS_String.h b/dep/acelite/ace/OS_String.h deleted file mode 100644 index 2d7aa86ad85..00000000000 --- a/dep/acelite/ace/OS_String.h +++ /dev/null @@ -1,32 +0,0 @@ -// -*- C++ -*- -//============================================================================= -/** - * @file OS_String.h - * - * $Id: OS_String.h 80826 2008-03-04 14:51:23Z wotte $ - * - * @brief Contains definition of class ACE_OS_String. - * - * @author Doug Schmidt <schmidt@cs.wustl.edu> - * @author Jesper S. M|ller <stophph@diku.dk> - * @author and a cast of thousands... - */ -//============================================================================= - -#ifndef ACE_OS_STRING_H -#define ACE_OS_STRING_H -#include /**/ "ace/pre.h" - -#include /**/ "ace/ACE_export.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "ace/OS_NS_string.h" -#include "ace/OS_NS_strings.h" -#include "ace/OS_NS_wchar.h" -#include "ace/OS_NS_ctype.h" - -#include /**/ "ace/post.h" -#endif /* ACE_OS_STRING_H */ diff --git a/dep/acelite/ace/OS_TLI.cpp b/dep/acelite/ace/OS_TLI.cpp index c874388f46f..3683781217d 100644 --- a/dep/acelite/ace/OS_TLI.cpp +++ b/dep/acelite/ace/OS_TLI.cpp @@ -1,8 +1,8 @@ -// $Id: OS_TLI.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_TLI.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_TLI.h" -ACE_RCSID(ace, OS_TLI, "$Id: OS_TLI.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/OS_TLI.inl" diff --git a/dep/acelite/ace/OS_TLI.h b/dep/acelite/ace/OS_TLI.h index 61a6cd5c026..efc43ae4b09 100644 --- a/dep/acelite/ace/OS_TLI.h +++ b/dep/acelite/ace/OS_TLI.h @@ -4,7 +4,7 @@ /** * @file OS_TLI.h * - * $Id: OS_TLI.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: OS_TLI.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Doug Schmidt <schmidt@cs.wustl.edu> */ @@ -115,17 +115,11 @@ extern "C" } # endif /* !ACE_HAS_TLI_PROTOTYPES */ -# if defined (ACE_HAS_TIUSER_H_BROKEN_EXTERN_C) -extern "C" { -# endif /* ACE_HAS_TIUSER_H_BROKEN_EXTERN_C */ # if defined (ACE_HAS_TIUSER_H) # include /**/ <tiuser.h> # else /* What to do here??? Is there a tli.h? */ # endif /* ACE_HAS_TIUSER_H */ -# if defined (ACE_HAS_TIUSER_H_BROKEN_EXTERN_C) -} -# endif /* ACE_HAS_TIUSER_H_BROKEN_EXTERN_C */ # if defined (ACE_HAS_SVR4_TLI) // t_getname is a TLI extension added by some platforms before XTI diff --git a/dep/acelite/ace/OS_Thread_Adapter.cpp b/dep/acelite/ace/OS_Thread_Adapter.cpp index f65d1acaff2..e5bf95b239b 100644 --- a/dep/acelite/ace/OS_Thread_Adapter.cpp +++ b/dep/acelite/ace/OS_Thread_Adapter.cpp @@ -1,11 +1,7 @@ -// $Id: OS_Thread_Adapter.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: OS_Thread_Adapter.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/OS_Thread_Adapter.h" -ACE_RCSID (ace, - OS_Thread_Adapter, - "$Id: OS_Thread_Adapter.cpp 80826 2008-03-04 14:51:23Z wotte $") - #include "ace/Thread_Hook.h" #include "ace/Object_Manager_Base.h" #include "ace/Global_Macros.h" diff --git a/dep/acelite/ace/OS_main.cpp b/dep/acelite/ace/OS_main.cpp index 790063f7037..982effa1ff3 100644 --- a/dep/acelite/ace/OS_main.cpp +++ b/dep/acelite/ace/OS_main.cpp @@ -1,8 +1,8 @@ -// $Id: OS_main.cpp 85662 2009-06-16 15:17:31Z mitza $ +// $Id: OS_main.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_main.h" -ACE_RCSID(ace, OS_main, "$Id: OS_main.cpp 85662 2009-06-16 15:17:31Z mitza $") + #if !defined (ACE_DOESNT_DEFINE_MAIN) diff --git a/dep/acelite/ace/Obchunk.cpp b/dep/acelite/ace/Obchunk.cpp index cbe56af7de7..50ac21fa0da 100644 --- a/dep/acelite/ace/Obchunk.cpp +++ b/dep/acelite/ace/Obchunk.cpp @@ -1,4 +1,4 @@ -// $Id: Obchunk.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Obchunk.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Obchunk.h" @@ -6,7 +6,7 @@ #include "ace/Obchunk.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Obchunk, "$Id: Obchunk.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Object_Manager.cpp b/dep/acelite/ace/Object_Manager.cpp index ec5dbaf63e1..3966fd31261 100644 --- a/dep/acelite/ace/Object_Manager.cpp +++ b/dep/acelite/ace/Object_Manager.cpp @@ -1,4 +1,4 @@ -// $Id: Object_Manager.cpp 84218 2009-01-22 19:21:39Z mitza $ +// $Id: Object_Manager.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Object_Manager.h" #if !defined (ACE_LACKS_ACE_TOKEN) @@ -36,7 +36,7 @@ #include "ace/OS_NS_stdlib.h" #endif // ACE_DISABLE_WIN32_ERROR_WINDOWS && ACE_WIN32 && !ACE_HAS_WINCE && (_MSC_VER >= 1400) -ACE_RCSID(ace, Object_Manager, "$Id: Object_Manager.cpp 84218 2009-01-22 19:21:39Z mitza $") + #if ! defined (ACE_APPLICATION_PREALLOCATED_OBJECT_DEFINITIONS) # define ACE_APPLICATION_PREALLOCATED_OBJECT_DEFINITIONS diff --git a/dep/acelite/ace/Object_Manager_Base.cpp b/dep/acelite/ace/Object_Manager_Base.cpp index 2eafbe0f7e3..fbc5864a93c 100644 --- a/dep/acelite/ace/Object_Manager_Base.cpp +++ b/dep/acelite/ace/Object_Manager_Base.cpp @@ -1,8 +1,8 @@ -// $Id: Object_Manager_Base.cpp 84163 2009-01-15 07:57:27Z johnnyw $ +// $Id: Object_Manager_Base.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/Object_Manager_Base.h" -ACE_RCSID(ace, Object_Manager_Base, "$Id: Object_Manager_Base.cpp 84163 2009-01-15 07:57:27Z johnnyw $") + #include "ace/OS_Memory.h" #include "ace/OS_NS_Thread.h" @@ -15,10 +15,6 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL #if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) int ACE_SEH_Default_Exception_Selector (void *) { -#if 0 - ACE_DEBUG ((LM_DEBUG, - ACE_TEXT ("(%t) Win32 structured exception exiting thread\n"))); -#endif /* 0 */ // this is only windows and only used here, // defined in ace/config-win32-common.h. return (DWORD) ACE_SEH_DEFAULT_EXCEPTION_HANDLING_ACTION; diff --git a/dep/acelite/ace/Obstack_T.h b/dep/acelite/ace/Obstack_T.h index d27d43b6ea3..f191934fde0 100644 --- a/dep/acelite/ace/Obstack_T.h +++ b/dep/acelite/ace/Obstack_T.h @@ -4,7 +4,7 @@ /** * @file Obstack_T.h * - * $Id: Obstack_T.h 88793 2010-02-01 17:50:34Z cleeland $ + * $Id: Obstack_T.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Doug Schmidt <schmidt@cs.wustl.edu> * @author Nanbor Wang <nanbor@cs.wustl.edu> @@ -71,12 +71,7 @@ public: ACE_CHAR_T *copy (const ACE_CHAR_T *data, size_t len); - /// Return the maximum @a length or @a size of a string that can be put - /// into this Obstack. @a size = @a length * sizeof (ACE_CHAR_T). - /// - /// @deprecated No need to use this function as you can put objects of - /// arbitrary lengths into the obstack now. - size_t length (void) const; + /// Return the maximum @a size size_t size (void) const; /// "Unwind" the stack. If @a obj is a null pointer, everything allocated diff --git a/dep/acelite/ace/Obstack_T.inl b/dep/acelite/ace/Obstack_T.inl index dc5665cc764..4d93048b3e2 100644 --- a/dep/acelite/ace/Obstack_T.inl +++ b/dep/acelite/ace/Obstack_T.inl @@ -1,16 +1,9 @@ // -*- C++ -*- -// -// $Id: Obstack_T.inl 88793 2010-02-01 17:50:34Z cleeland $ +// $Id: Obstack_T.inl 91688 2010-09-09 11:21:50Z johnnyw $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL template <class ACE_CHAR_T> ACE_INLINE size_t -ACE_Obstack_T<ACE_CHAR_T>::length () const -{ - return this->size_ / sizeof (ACE_CHAR_T); -} - -template <class ACE_CHAR_T> ACE_INLINE size_t ACE_Obstack_T<ACE_CHAR_T>::size () const { return this->size_; diff --git a/dep/acelite/ace/PI_Malloc.cpp b/dep/acelite/ace/PI_Malloc.cpp index 979ddd6ba4c..471f4ed9033 100644 --- a/dep/acelite/ace/PI_Malloc.cpp +++ b/dep/acelite/ace/PI_Malloc.cpp @@ -1,12 +1,10 @@ +// $Id: PI_Malloc.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #ifndef ACE_PI_MALLOC_CPP #define ACE_PI_MALLOC_CPP #include "ace/PI_Malloc.h" -ACE_RCSID (ace, - PI_Malloc, - "$Id: PI_Malloc.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if (ACE_HAS_POSITION_INDEPENDENT_POINTERS == 1) #if !defined (__ACE_INLINE__) diff --git a/dep/acelite/ace/POSIX_Asynch_IO.cpp b/dep/acelite/ace/POSIX_Asynch_IO.cpp index bd5304577d8..b28894ac14d 100644 --- a/dep/acelite/ace/POSIX_Asynch_IO.cpp +++ b/dep/acelite/ace/POSIX_Asynch_IO.cpp @@ -1,4 +1,4 @@ -// $Id: POSIX_Asynch_IO.cpp 84565 2009-02-23 08:20:39Z johnnyw $ +// $Id: POSIX_Asynch_IO.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/POSIX_Asynch_IO.h" @@ -14,11 +14,6 @@ #include "ace/OS_NS_sys_socket.h" #include "ace/OS_NS_sys_stat.h" -ACE_RCSID (ace, - POSIX_Asynch_IO, - "$Id: POSIX_Asynch_IO.cpp 84565 2009-02-23 08:20:39Z johnnyw $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL size_t diff --git a/dep/acelite/ace/POSIX_Asynch_IO.h b/dep/acelite/ace/POSIX_Asynch_IO.h index 0f3ed30b41b..ba1803037ac 100644 --- a/dep/acelite/ace/POSIX_Asynch_IO.h +++ b/dep/acelite/ace/POSIX_Asynch_IO.h @@ -4,7 +4,7 @@ /** * @file POSIX_Asynch_IO.h * - * $Id: POSIX_Asynch_IO.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: POSIX_Asynch_IO.h 91688 2010-09-09 11:21:50Z johnnyw $ * * The implementation classes for POSIX implementation of Asynch * Operations are defined here in this file. @@ -893,10 +893,6 @@ private: typedef ACE_Map_Manager<ACE_HANDLE, ACE_POSIX_Asynch_Connect_Result *, ACE_SYNCH_NULL_MUTEX> MAP_MANAGER; - /// @deprecated (Two) Deprecated typedefs. Use the map traits instead. - typedef MAP_MANAGER::ITERATOR MAP_ITERATOR; - typedef MAP_MANAGER::ENTRY MAP_ENTRY; - /// Map of Result pointers that correspond to all the pending connects. MAP_MANAGER result_map_; diff --git a/dep/acelite/ace/POSIX_CB_Proactor.cpp b/dep/acelite/ace/POSIX_CB_Proactor.cpp index 6f8e5aed0f5..55d0fb79d55 100644 --- a/dep/acelite/ace/POSIX_CB_Proactor.cpp +++ b/dep/acelite/ace/POSIX_CB_Proactor.cpp @@ -1,4 +1,4 @@ -// $Id: POSIX_CB_Proactor.cpp 84455 2009-02-13 13:31:02Z johnnyw $ +// $Id: POSIX_CB_Proactor.cpp 91683 2010-09-09 09:07:49Z johnnyw $ #include "ace/POSIX_CB_Proactor.h" @@ -9,10 +9,6 @@ #include "ace/Object_Manager.h" #include "ace/OS_NS_sys_time.h" -ACE_RCSID (ace, - POSIX_CB_Proactor, - "$Id: POSIX_CB_Proactor.cpp 84455 2009-02-13 13:31:02Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_POSIX_CB_Proactor::ACE_POSIX_CB_Proactor (size_t max_aio_operations) @@ -87,10 +83,6 @@ ACE_POSIX_CB_Proactor::allocate_aio_slot (ACE_POSIX_Asynch_Result *result) // @@ TODO: This gets the completion method back to this proactor to // find the completed aiocb. It would be so much better to not only get // the proactor, but the aiocb as well. -#if defined(__sgi) - result->aio_sigevent.sigev_notify = SIGEV_CALLBACK; - result->aio_sigevent.sigev_func = aio_completion_func ; -#else result->aio_sigevent.sigev_notify = SIGEV_THREAD; # if defined (ACE_HAS_SIG_C_FUNC) result->aio_sigevent.sigev_notify_function = @@ -99,7 +91,6 @@ ACE_POSIX_CB_Proactor::allocate_aio_slot (ACE_POSIX_Asynch_Result *result) result->aio_sigevent.sigev_notify_function = aio_completion_func; # endif /* ACE_HAS_SIG_C_FUNC */ result->aio_sigevent.sigev_notify_attributes = 0; -#endif /* __sgi */ result->aio_sigevent.sigev_value.sival_ptr = this ; diff --git a/dep/acelite/ace/POSIX_Proactor.cpp b/dep/acelite/ace/POSIX_Proactor.cpp index 151aa26ab32..635661d9e97 100644 --- a/dep/acelite/ace/POSIX_Proactor.cpp +++ b/dep/acelite/ace/POSIX_Proactor.cpp @@ -1,4 +1,4 @@ -// $Id: POSIX_Proactor.cpp 86102 2009-07-18 04:15:48Z wotte $ +// $Id: POSIX_Proactor.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/POSIX_Proactor.h" @@ -82,10 +82,6 @@ ACE_POSIX_Proactor::ACE_POSIX_Proactor (void) os_id_ = ACE_OS_HPUX; // set family -#elif defined(__sgi) - - os_id_ = ACE_OS_IRIX; // set family - #elif defined(__OpenBSD) os_id_ = ACE_OS_OPENBSD; // set family @@ -520,39 +516,6 @@ ACE_POSIX_Proactor::create_asynch_timer return implementation; } -#if 0 -int -ACE_POSIX_Proactor::handle_signal (int, siginfo_t *, ucontext_t *) -{ - // Perform a non-blocking "poll" for all the I/O events that have - // completed in the I/O completion queue. - - ACE_Time_Value timeout (0, 0); - int result = 0; - - for (;;) - { - result = this->handle_events (timeout); - if (result != 0 || errno == ETIME) - break; - } - - // If our handle_events failed, we'll report a failure to the - // Reactor. - return result == -1 ? -1 : 0; -} - -int -ACE_POSIX_Proactor::handle_close (ACE_HANDLE handle, - ACE_Reactor_Mask close_mask) -{ - ACE_UNUSED_ARG (close_mask); - ACE_UNUSED_ARG (handle); - - return this->close (); -} -#endif /* 0 */ - void ACE_POSIX_Proactor::application_specific_code (ACE_POSIX_Asynch_Result *asynch_result, size_t bytes_transferred, @@ -1428,7 +1391,7 @@ ACE_POSIX_AIOCB_Proactor::start_aio_i (ACE_POSIX_Asynch_Result *result) const ACE_TCHAR *ptype = 0; // Start IO - // The following aio_ptr anathema is required to work around a bug in + // The following aio_ptr anathema is required to work around a bug in // the optimizer for GCC 4.1.2 aiocb * aio_ptr (result); switch (result->aio_lio_opcode ) diff --git a/dep/acelite/ace/Pagefile_Memory_Pool.cpp b/dep/acelite/ace/Pagefile_Memory_Pool.cpp index e0cce5f6052..fb012ef5d5e 100644 --- a/dep/acelite/ace/Pagefile_Memory_Pool.cpp +++ b/dep/acelite/ace/Pagefile_Memory_Pool.cpp @@ -1,4 +1,4 @@ -// $Id: Pagefile_Memory_Pool.cpp 85318 2009-05-11 18:17:14Z johnnyw $ +// $Id: Pagefile_Memory_Pool.cpp 91286 2010-08-05 09:04:31Z johnnyw $ // Pagefile_Memory_Pool.cpp #include "ace/Pagefile_Memory_Pool.h" @@ -21,7 +21,7 @@ #include "ace/Based_Pointer_Repository.h" #endif /* ACE_HAS_POSITION_INDEPENDENT_POINTERS == 1 */ -ACE_RCSID(ace, Pagefile_Memory_Pool, "$Id: Pagefile_Memory_Pool.cpp 85318 2009-05-11 18:17:14Z johnnyw $") + #if defined (ACE_WIN32) && !defined (ACE_HAS_PHARLAP) #if !defined (ACE_HAS_WINCE) diff --git a/dep/acelite/ace/Pair.h b/dep/acelite/ace/Pair.h deleted file mode 100644 index 39e8575644c..00000000000 --- a/dep/acelite/ace/Pair.h +++ /dev/null @@ -1,32 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file Pair.h - * - * $Id: Pair.h 80826 2008-03-04 14:51:23Z wotte $ - * - * ACE_Pair<> convenience header. - * - * @author Irfan Pyarali - */ -//============================================================================= - - -#ifndef ACE_PAIR_H -#define ACE_PAIR_H - -#include /**/ "ace/pre.h" - -#include /**/ "ace/config-all.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -// Include the templates here. -#include "ace/Pair_T.h" - -#include /**/ "ace/post.h" - -#endif /* ACE_PAIR_H */ diff --git a/dep/acelite/ace/Pair_T.h b/dep/acelite/ace/Pair_T.h index 2f744ec4d0a..604fcba7128 100644 --- a/dep/acelite/ace/Pair_T.h +++ b/dep/acelite/ace/Pair_T.h @@ -4,7 +4,7 @@ /** * @file Pair_T.h * - * $Id: Pair_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Pair_T.h 92097 2010-09-30 05:41:49Z msmit $ * * @author Irfan Pyarali <irfan@cs.wustl.edu> */ @@ -24,55 +24,6 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** - * @class ACE_Pair - * - * @brief Defines a pair. - * - * Similar to the STL pair. - */ -template <class T1, class T2> -class ACE_Pair -{ -public: - - // = Traits. - typedef T1 first_type; - typedef T2 second_type; - - // = Initialization and termination methods. - /// Constructor. - ACE_Pair (const T1 &t1, - const T2 &t2); - - /// Default constructor. - ACE_Pair (void); - - /// Get first. - T1 &first (void); - const T1 &first (void) const; - - /// Set first. - void first (const T1 &t1); - - /// Get second. - T2 &second (void); - const T2 &second (void) const; - - /// Set second. - void second (const T2 &t2); - - // Compare pairs. - bool operator== (const ACE_Pair<T1, T2> &rhs) const; - -protected: - /// First. - T1 first_; - - /// Second. - T2 second_; -}; - -/** * @class ACE_Reference_Pair * * @brief Defines a pair that only hold references. diff --git a/dep/acelite/ace/Pair_T.inl b/dep/acelite/ace/Pair_T.inl index 99c5bcd1917..cb362e1a38e 100644 --- a/dep/acelite/ace/Pair_T.inl +++ b/dep/acelite/ace/Pair_T.inl @@ -1,66 +1,10 @@ // -*- C++ -*- // -// $Id: Pair_T.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Pair_T.inl 92097 2010-09-30 05:41:49Z msmit $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL template <class T1, class T2> ACE_INLINE -ACE_Pair<T1, T2>::ACE_Pair (const T1 &t1, - const T2 &t2) - : first_ (t1), - second_ (t2) -{ -} - -template <class T1, class T2> ACE_INLINE -ACE_Pair<T1, T2>::ACE_Pair (void) -{ -} - -template <class T1, class T2> ACE_INLINE T1 & -ACE_Pair<T1, T2>::first (void) -{ - return this->first_; -} - -template <class T1, class T2> ACE_INLINE const T1 & -ACE_Pair<T1, T2>::first (void) const -{ - return this->first_; -} - -template <class T1, class T2> ACE_INLINE void -ACE_Pair<T1, T2>::first (const T1 &t1) -{ - this->first_ = t1; -} - -template <class T1, class T2> ACE_INLINE T2 & -ACE_Pair<T1, T2>::second (void) -{ - return this->second_; -} - -template <class T1, class T2> ACE_INLINE const T2 & -ACE_Pair<T1, T2>::second (void) const -{ - return this->second_; -} - -template <class T1, class T2> ACE_INLINE void -ACE_Pair<T1, T2>::second (const T2 &t2) -{ - this->second_ = t2; -} - -template <class T1, class T2> ACE_INLINE bool -ACE_Pair<T1, T2>::operator== (const ACE_Pair<T1, T2> &rhs) const -{ - return (this->first_ == rhs.first_ && - this->second_ == rhs.second_); -} - -template <class T1, class T2> ACE_INLINE ACE_Reference_Pair<T1, T2>::ACE_Reference_Pair (T1 &t1, T2 &t2) : first_ (t1), diff --git a/dep/acelite/ace/Parse_Node.cpp b/dep/acelite/ace/Parse_Node.cpp index 01c286c7222..0b225ba8187 100644 --- a/dep/acelite/ace/Parse_Node.cpp +++ b/dep/acelite/ace/Parse_Node.cpp @@ -1,3 +1,4 @@ +// $Id: Parse_Node.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Parse_Node.h" #if (ACE_USES_CLASSIC_SVC_CONF == 1) @@ -13,10 +14,6 @@ #include <list> -ACE_RCSID (ace, - Parse_Node, - "$Id: Parse_Node.cpp 86389 2009-08-05 23:35:46Z shuston $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE (ACE_Stream_Node) diff --git a/dep/acelite/ace/Ping_Socket.cpp b/dep/acelite/ace/Ping_Socket.cpp index 399d26edde8..6fe92fb37f7 100644 --- a/dep/acelite/ace/Ping_Socket.cpp +++ b/dep/acelite/ace/Ping_Socket.cpp @@ -1,4 +1,4 @@ -// $Id: Ping_Socket.cpp 83247 2008-10-14 22:29:45Z pollockt $ +// $Id: Ping_Socket.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/Ping_Socket.h" @@ -15,11 +15,6 @@ # include "ace/Ping_Socket.inl" #endif /* !__ACE_INLINE__ */ - -ACE_RCSID (ace, - Ping_Socket, - "$Id: Ping_Socket.cpp 83247 2008-10-14 22:29:45Z pollockt $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE (ACE_Ping_Socket) @@ -217,13 +212,9 @@ ACE_Ping_Socket::process_incoming_dgram (char * ptr, ssize_t len) // Warning... using knowledge of IP header layout. This avoids a maze of // #if blocks for various systems. The first byte of the header has the // IP version in the left-most 4 bits and the length in the other 4 bits. -#if 0 - hlen1 = ip->ip_hl; // length of IP header -#else hlen1 = static_cast<unsigned char>(*ptr); hlen1 <<= 4; // Bump the version off hlen1 >>= 4; // Zero-extended length remains -#endif hlen1 <<= 2; // Now it counts bytes, not words icmp = (struct icmp *) (ptr + hlen1); // start of ICMP header diff --git a/dep/acelite/ace/Pipe.cpp b/dep/acelite/ace/Pipe.cpp index d2b6965597a..bb8a851eace 100644 --- a/dep/acelite/ace/Pipe.cpp +++ b/dep/acelite/ace/Pipe.cpp @@ -1,4 +1,4 @@ -// $Id: Pipe.cpp 87115 2009-10-15 11:27:23Z olli $ +// $Id: Pipe.cpp 92010 2010-09-24 14:54:19Z shuston $ #include "ace/Pipe.h" #include "ace/SOCK_Acceptor.h" @@ -18,7 +18,7 @@ #include "ace/Pipe.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Pipe, "$Id: Pipe.cpp 87115 2009-10-15 11:27:23Z olli $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -254,21 +254,20 @@ ACE_Pipe::close (void) { ACE_TRACE ("ACE_Pipe::close"); - int result = 0; - - // Note that the following will work even if we aren't closing down - // sockets because <ACE_OS::closesocket> will just call <::close> in - // that case! - - if (this->handles_[0] != ACE_INVALID_HANDLE) - result = ACE_OS::closesocket (this->handles_[0]); - this->handles_[0] = ACE_INVALID_HANDLE; + int result = this->close_read (); + result |= this->close_write (); + return result; +} - if (this->handles_[1] != ACE_INVALID_HANDLE) - result |= ACE_OS::closesocket (this->handles_[1]); - this->handles_[1] = ACE_INVALID_HANDLE; +int +ACE_Pipe::close_read (void) +{ + return this->close_handle (0); +} - return result; +int ACE_Pipe::close_write (void) +{ + return this->close_handle (1); } // Send N char *ptrs and int lengths. Note that the char *'s precede diff --git a/dep/acelite/ace/Pipe.h b/dep/acelite/ace/Pipe.h index b831769da78..b305456eb72 100644 --- a/dep/acelite/ace/Pipe.h +++ b/dep/acelite/ace/Pipe.h @@ -4,7 +4,7 @@ /** * @file Pipe.h * - * $Id: Pipe.h 87240 2009-10-27 15:54:10Z schmidt $ + * $Id: Pipe.h 92010 2010-09-24 14:54:19Z shuston $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -65,6 +65,8 @@ public: /// Close down the pipe HANDLEs; int close (void); + int close_read (void); + int close_write (void); // = Accessors. @@ -152,6 +154,7 @@ public: private: ACE_HANDLE handles_[2]; + int close_handle (int which); }; ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Pipe.inl b/dep/acelite/ace/Pipe.inl index 63e6ea5d4fb..3199bbf0333 100644 --- a/dep/acelite/ace/Pipe.inl +++ b/dep/acelite/ace/Pipe.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Pipe.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Pipe.inl 92010 2010-09-24 14:54:19Z shuston $ #include "ace/Global_Macros.h" #include "ace/ACE.h" @@ -185,4 +185,19 @@ ACE_Pipe::recv (void *buf, size_t n, overlapped); } +ACE_INLINE int +ACE_Pipe::close_handle (int which) +{ + int result = 0; + + // Note that the following will work even if we aren't closing down + // sockets because <ACE_OS::closesocket> will just call <::close> in + // that case! + + if (this->handles_[which] != ACE_INVALID_HANDLE) + result = ACE_OS::closesocket (this->handles_[which]); + this->handles_[which] = ACE_INVALID_HANDLE; + return result; +} + ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Priority_Reactor.cpp b/dep/acelite/ace/Priority_Reactor.cpp index 9929b477c29..445f5d9125f 100644 --- a/dep/acelite/ace/Priority_Reactor.cpp +++ b/dep/acelite/ace/Priority_Reactor.cpp @@ -1,9 +1,9 @@ -// $Id: Priority_Reactor.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: Priority_Reactor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Priority_Reactor.h" #include "ace/Malloc_T.h" -ACE_RCSID(ace, Priority_Reactor, "$Id: Priority_Reactor.cpp 82723 2008-09-16 09:35:44Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Proactor.cpp b/dep/acelite/ace/Proactor.cpp index f7771aec114..983b8eabb7d 100644 --- a/dep/acelite/ace/Proactor.cpp +++ b/dep/acelite/ace/Proactor.cpp @@ -1,4 +1,4 @@ -// $Id: Proactor.cpp 81535 2008-04-29 20:08:52Z shuston $ +// $Id: Proactor.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/config-lite.h" #include "ace/Proactor.h" @@ -17,11 +17,6 @@ #endif /* !ACE_HAS_WINCE && !ACE_LACKS_ACE_SVCCONF */ -ACE_RCSID (ace, - Proactor, - "$Id: Proactor.cpp 81535 2008-04-29 20:08:52Z shuston $") - - #include "ace/Task_T.h" #include "ace/Log_Msg.h" #include "ace/Framework_Component.h" diff --git a/dep/acelite/ace/Proactor_Impl.cpp b/dep/acelite/ace/Proactor_Impl.cpp index 3375540d946..4b7772c043a 100644 --- a/dep/acelite/ace/Proactor_Impl.cpp +++ b/dep/acelite/ace/Proactor_Impl.cpp @@ -1,11 +1,7 @@ -// $Id: Proactor_Impl.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Proactor_Impl.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Proactor_Impl.h" -ACE_RCSID (ace, - Proactor_Impl, - "$Id: Proactor_Impl.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) || defined (ACE_HAS_AIO_CALLS) // This only works on standard Win32 platforms and on Unix platforms supporting // aio calls. diff --git a/dep/acelite/ace/Process.cpp b/dep/acelite/ace/Process.cpp index df81864dfe5..5198023592e 100644 --- a/dep/acelite/ace/Process.cpp +++ b/dep/acelite/ace/Process.cpp @@ -1,4 +1,4 @@ -// $Id: Process.cpp 87826 2009-11-30 14:02:40Z johnnyw $ +// $Id: Process.cpp 92218 2010-10-14 13:18:15Z mcorino $ #include "ace/Process.h" @@ -29,7 +29,7 @@ # include <taskLib.h> #endif -ACE_RCSID (ace, Process, "$Id: Process.cpp 87826 2009-11-30 14:02:40Z johnnyw $") + // This function acts as a signal handler for SIGCHLD. We don't really want // to do anything with the signal - it's just needed to interrupt a sleep. @@ -796,7 +796,8 @@ ACE_Process::convert_env_buffer (const char* env) const ACE_Process_Options::ACE_Process_Options (bool inherit_environment, size_t command_line_buf_len, size_t env_buf_len, - size_t max_env_args) + size_t max_env_args, + size_t max_cmdline_args) : #if !defined (ACE_HAS_WINCE) inherit_environment_ (inherit_environment), @@ -830,6 +831,8 @@ ACE_Process_Options::ACE_Process_Options (bool inherit_environment, command_line_buf_ (0), command_line_copy_ (0), command_line_buf_len_ (command_line_buf_len), + max_command_line_args_ (max_cmdline_args), + command_line_argv_ (0), process_group_ (ACE_INVALID_PID), use_unicode_environment_ (false) { @@ -859,6 +862,8 @@ ACE_Process_Options::ACE_Process_Options (bool inherit_environment, this->startup_info_.cb = sizeof this->startup_info_; #endif /* ACE_WIN32 */ #endif /* !ACE_HAS_WINCE */ + ACE_NEW (command_line_argv_, + ACE_TCHAR *[max_cmdline_args]); } #if !defined (ACE_HAS_WINCE) @@ -1178,6 +1183,7 @@ ACE_Process_Options::~ACE_Process_Options (void) #endif /* !ACE_HAS_WINCE */ delete [] command_line_buf_; ACE::strdelete (command_line_copy_); + delete [] command_line_argv_; } int @@ -1315,12 +1321,12 @@ ACE_Process_Options::command_line_argv (void) parser.preserve_designators ('\"', '\"'); // " parser.preserve_designators ('\'', '\''); - int x = 0; + unsigned int x = 0; do command_line_argv_[x] = parser.next (); while (command_line_argv_[x] != 0 // substract one for the ending zero. - && ++x < MAX_COMMAND_LINE_OPTIONS - 1); + && ++x < max_command_line_args_ - 1); command_line_argv_[x] = 0; } diff --git a/dep/acelite/ace/Process.h b/dep/acelite/ace/Process.h index 4a95b53e867..61a3802ecc6 100644 --- a/dep/acelite/ace/Process.h +++ b/dep/acelite/ace/Process.h @@ -4,7 +4,7 @@ /** * @file Process.h * - * $Id: Process.h 91233 2010-07-29 14:47:16Z shuston $ + * $Id: Process.h 92218 2010-10-14 13:18:15Z mcorino $ * * @author Tim Harrison <harrison@cs.wustl.edu> */ @@ -84,7 +84,8 @@ public: ACE_Process_Options (bool inherit_environment = true, size_t command_line_buf_len = DEFAULT_COMMAND_LINE_BUF_LEN, size_t env_buf_len = ENVIRONMENT_BUFFER, - size_t max_env_args = MAX_ENVIRONMENT_ARGS); + size_t max_env_args = MAX_ENVIRONMENT_ARGS, + size_t max_cmdline_args = MAX_COMMAND_LINE_OPTIONS); /// Destructor. ~ACE_Process_Options (void); @@ -101,6 +102,11 @@ public: * ACE_INVALID_HANDLE for @a std_in will cause ACE_STDIN to be * duplicated and set in this object. * + * @note Windows: The implementation of set_handles() uses DuplicateHandle + * on Windows. DuplicateHandle cannot be used to pass a socket handle + * on Windows. Socket handles require an alternate mechanism to pass; + * see http://msdn.microsoft.com/en-us/library/ms741565(v=VS.85).aspx + * * @return 0 on success, -1 on failure. */ int set_handles (ACE_HANDLE std_in, @@ -227,6 +233,13 @@ public: pid_t setgroup (pid_t pgrp); /// Allows disabling of handle inheritance, default is TRUE. + /// + /// @remarks @b Windows: the handle_inheritance value is passed as the + /// bInheritHandles value to the CreateProcess() system function. Therefore, + /// if you redirect standard input, output, or error via + /// ACE_Process_Options::set_handles() you must not call + /// handle_inheritance(false). Doing so will prevent the duplicated handles + /// from surviving in the created process. int handle_inheritance (void); void handle_inheritance (int); @@ -428,8 +441,11 @@ protected: /// Max length of command_line_buf_ size_t command_line_buf_len_; + /// Maximum number of command-line arguments. Configurable + size_t max_command_line_args_; + /// Argv-style command-line arguments. - ACE_TCHAR *command_line_argv_[MAX_COMMAND_LINE_OPTIONS]; + ACE_TCHAR **command_line_argv_; /// Process-group on Unix; unused on Win32. pid_t process_group_; diff --git a/dep/acelite/ace/Process_Manager.cpp b/dep/acelite/ace/Process_Manager.cpp index 0c512d76a3b..e9be7773a8b 100644 --- a/dep/acelite/ace/Process_Manager.cpp +++ b/dep/acelite/ace/Process_Manager.cpp @@ -1,4 +1,4 @@ -// $Id: Process_Manager.cpp 89454 2010-03-11 09:35:25Z johnnyw $ +// $Id: Process_Manager.cpp 91688 2010-09-09 11:21:50Z johnnyw $ // Process_Manager.cpp #include "ace/Process_Manager.h" @@ -22,10 +22,6 @@ #include "ace/os_include/os_typeinfo.h" #include "ace/Truncate.h" -ACE_RCSID (ace, - Process_Manager, - "$Id: Process_Manager.cpp 89454 2010-03-11 09:35:25Z johnnyw $") - #if defined (ACE_HAS_SIG_C_FUNC) extern "C" void ACE_Process_Manager_cleanup (void *instance, void *arg) @@ -974,22 +970,6 @@ ACE_Process_Manager::wait (pid_t pid, return pid; } -// Legacy method: - -int -ACE_Process_Manager::reap (pid_t pid, - ACE_exitcode *stat_loc, - int options) -{ - ACE_TRACE ("ACE_Process_Manager::reap"); - - return this->wait (pid, - (ACE_BIT_ENABLED (options, WNOHANG) - ? ACE_Time_Value::zero - : ACE_Time_Value::max_time), - stat_loc); -} - // Notify either the process-specific handler or the generic handler. // If process-specific, call handle_close on the handler. Returns 1 // if process found, 0 if not. Must be called with locks held. diff --git a/dep/acelite/ace/Process_Manager.h b/dep/acelite/ace/Process_Manager.h index 26515476cfc..3956c18d0b6 100644 --- a/dep/acelite/ace/Process_Manager.h +++ b/dep/acelite/ace/Process_Manager.h @@ -4,7 +4,7 @@ /** * @file Process_Manager.h * - * $Id: Process_Manager.h 84619 2009-02-26 12:26:16Z johnnyw $ + * $Id: Process_Manager.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -269,17 +269,6 @@ public: */ pid_t wait (pid_t pid, ACE_exitcode *status = 0); - - /** - * @deprecated - * Reap the result of a single process by calling ACE_OS::waitpid(), - * therefore, this method is not portable to Windows. If the child is - * successfully reaped, remove() is called automatically. - * Use one of the wait() methods instead of this method. - */ - int reap (pid_t pid = -1, - ACE_exitcode *stat_loc = 0, - int options = WNOHANG); //@} /** diff --git a/dep/acelite/ace/Process_Mutex.cpp b/dep/acelite/ace/Process_Mutex.cpp index 95d6529d933..28d414d051f 100644 --- a/dep/acelite/ace/Process_Mutex.cpp +++ b/dep/acelite/ace/Process_Mutex.cpp @@ -1,4 +1,4 @@ -// $Id: Process_Mutex.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Process_Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Process_Mutex.h" #include "ace/Log_Msg.h" @@ -11,7 +11,7 @@ #include "ace/Process_Mutex.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Process_Mutex, "$Id: Process_Mutex.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Process_Semaphore.cpp b/dep/acelite/ace/Process_Semaphore.cpp index 9c84b955eed..6b94f0efa07 100644 --- a/dep/acelite/ace/Process_Semaphore.cpp +++ b/dep/acelite/ace/Process_Semaphore.cpp @@ -1,4 +1,4 @@ -// $Id: Process_Semaphore.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Process_Semaphore.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Process_Semaphore.h" #include "ace/Log_Msg.h" @@ -10,7 +10,7 @@ #include "ace/ACE.h" -ACE_RCSID(ace, Process_Semaphore, "$Id: Process_Semaphore.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Profile_Timer.cpp b/dep/acelite/ace/Profile_Timer.cpp index 081afa18c6d..767638a5411 100644 --- a/dep/acelite/ace/Profile_Timer.cpp +++ b/dep/acelite/ace/Profile_Timer.cpp @@ -1,4 +1,4 @@ -// $Id: Profile_Timer.cpp 82208 2008-06-26 20:44:51Z jtc $ +// $Id: Profile_Timer.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Profile_Timer.h" @@ -14,7 +14,7 @@ #include "ace/OS_NS_unistd.h" #endif -ACE_RCSID(ace, Profile_Timer, "$Id: Profile_Timer.cpp 82208 2008-06-26 20:44:51Z jtc $") + #if (defined (ACE_HAS_PRUSAGE_T) || defined (ACE_HAS_GETRUSAGE)) && !defined (ACE_WIN32) diff --git a/dep/acelite/ace/QoS/QoS_Decorator.cpp b/dep/acelite/ace/QoS/QoS_Decorator.cpp index 2a35b7af80c..64aefeecc61 100644 --- a/dep/acelite/ace/QoS/QoS_Decorator.cpp +++ b/dep/acelite/ace/QoS/QoS_Decorator.cpp @@ -1,10 +1,8 @@ // QoS_Decorator.cpp -// $Id: QoS_Decorator.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: QoS_Decorator.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "QoS_Decorator.h" -ACE_RCSID(ace, QoS_Decorator, "$Id: QoS_Decorator.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_QOS_DECORATOR) diff --git a/dep/acelite/ace/QoS/QoS_Manager.cpp b/dep/acelite/ace/QoS/QoS_Manager.cpp index 7a38e5dba99..a11bd71a099 100644 --- a/dep/acelite/ace/QoS/QoS_Manager.cpp +++ b/dep/acelite/ace/QoS/QoS_Manager.cpp @@ -1,11 +1,9 @@ // QoS_Manager.cpp -// $Id: QoS_Manager.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: QoS_Manager.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "QoS_Manager.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, QoS_Manager, "$Id: QoS_Manager.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_QOS_MANAGER) diff --git a/dep/acelite/ace/QoS/QoS_Session.h b/dep/acelite/ace/QoS/QoS_Session.h index 6a36fd62cb0..7ed9fb2ce19 100644 --- a/dep/acelite/ace/QoS/QoS_Session.h +++ b/dep/acelite/ace/QoS/QoS_Session.h @@ -4,7 +4,7 @@ /** * @file QoS_Session.h * - * $Id: QoS_Session.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: QoS_Session.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Vishal Kachroo <vishal@cs.wustl.edu> */ @@ -52,7 +52,7 @@ public: RSVP_RESV_EVENT, RSVP_RESV_CONFIRM, RSVP_RESV_ERROR, - RSVP_PATH_ERROR + RSVP_PATH_ERROR }; /// A flag to indicate if this endpoint is a sender or a receiver or @@ -64,7 +64,7 @@ public: ACE_QOS_BOTH }; - + /// to shutup g++. virtual ~ACE_QoS_Session (void) {}; @@ -118,7 +118,7 @@ public: virtual void rsvp_event_type (RSVP_Event_Type event_type) = 0; ///Set the RAPI event that last occured - + virtual RSVP_Event_Type rsvp_event_type (void) = 0; ///Get the RAPI event that last occured @@ -137,10 +137,10 @@ public: //Set the source host virtual ACE_INET_Addr* source_addr (void) const = 0; - + /// Set the source port for this session. virtual void source_addr (ACE_INET_Addr* source_addr) = 0; - + /** * Returns the version of the underlying RSVP implementation. Is diff --git a/dep/acelite/ace/QoS/QoS_Session_Factory.cpp b/dep/acelite/ace/QoS/QoS_Session_Factory.cpp index f9da19d6aa2..54716e97cd8 100644 --- a/dep/acelite/ace/QoS/QoS_Session_Factory.cpp +++ b/dep/acelite/ace/QoS/QoS_Session_Factory.cpp @@ -1,12 +1,10 @@ // QoS_Session_Factory.cpp -// $Id: QoS_Session_Factory.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: QoS_Session_Factory.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "QoS_Session_Factory.h" #include "QoS_Session_Impl.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, QoS_Session_Factory, "$Id: QoS_Session_Factory.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_QoS_Session_Factory) diff --git a/dep/acelite/ace/QoS/QoS_Session_Impl.cpp b/dep/acelite/ace/QoS/QoS_Session_Impl.cpp index 453b938b902..301d71d1f10 100644 --- a/dep/acelite/ace/QoS/QoS_Session_Impl.cpp +++ b/dep/acelite/ace/QoS/QoS_Session_Impl.cpp @@ -1,5 +1,5 @@ // QoS_Session_Impl.cpp -// $Id: QoS_Session_Impl.cpp 84565 2009-02-23 08:20:39Z johnnyw $ +// $Id: QoS_Session_Impl.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/OS_NS_arpa_inet.h" #include "ace/SOCK.h" @@ -11,8 +11,6 @@ #include "QoS_Session_Impl.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, QoS_Session_Impl, "$Id: QoS_Session_Impl.cpp 84565 2009-02-23 08:20:39Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_QoS_Session_Impl) diff --git a/dep/acelite/ace/QoS/QoS_Session_Impl.h b/dep/acelite/ace/QoS/QoS_Session_Impl.h index 0e987984f48..04976db9e1f 100644 --- a/dep/acelite/ace/QoS/QoS_Session_Impl.h +++ b/dep/acelite/ace/QoS/QoS_Session_Impl.h @@ -4,7 +4,7 @@ /** * @file QoS_Session_Impl.h * - * $Id: QoS_Session_Impl.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: QoS_Session_Impl.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Vishal Kachroo <vishal@cs.wustl.edu> */ @@ -115,7 +115,7 @@ public: //Set the source host virtual ACE_INET_Addr* source_addr (void) const; - + /// Set the source port for this session. virtual void source_addr (ACE_INET_Addr* source_addr); @@ -221,7 +221,7 @@ public: //Set the source host virtual ACE_INET_Addr* source_addr (void) const; - + /// Set the source port for this session. virtual void source_addr (ACE_INET_Addr* source_addr); diff --git a/dep/acelite/ace/QoS/QoS_Session_Impl.inl b/dep/acelite/ace/QoS/QoS_Session_Impl.inl index 7979b5e92ad..0ca1319c593 100644 --- a/dep/acelite/ace/QoS/QoS_Session_Impl.inl +++ b/dep/acelite/ace/QoS/QoS_Session_Impl.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: QoS_Session_Impl.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: QoS_Session_Impl.inl 91813 2010-09-17 07:52:52Z johnnyw $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -100,13 +100,13 @@ ACE_RAPI_Session::source_port (const u_short &source_port) this->source_port_ = source_port; } -ACE_INLINE ACE_INET_Addr* +ACE_INLINE ACE_INET_Addr* ACE_RAPI_Session::source_addr (void) const { return this->src_addr_; } - -ACE_INLINE void + +ACE_INLINE void ACE_RAPI_Session::source_addr (ACE_INET_Addr* source_addr) { this->src_addr_ = source_addr; @@ -207,13 +207,13 @@ ACE_GQoS_Session::source_port (const u_short &source_port) this->source_port_ = source_port; } -ACE_INLINE ACE_INET_Addr* +ACE_INLINE ACE_INET_Addr* ACE_GQoS_Session::source_addr (void) const { return this->src_addr_; } - -ACE_INLINE void + +ACE_INLINE void ACE_GQoS_Session::source_addr (ACE_INET_Addr* source_addr) { this->src_addr_ = source_addr; diff --git a/dep/acelite/ace/QoS/SOCK_Dgram_Mcast_QoS.cpp b/dep/acelite/ace/QoS/SOCK_Dgram_Mcast_QoS.cpp index 9402d6360bc..32099d9241c 100644 --- a/dep/acelite/ace/QoS/SOCK_Dgram_Mcast_QoS.cpp +++ b/dep/acelite/ace/QoS/SOCK_Dgram_Mcast_QoS.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_Dgram_Mcast_QoS.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SOCK_Dgram_Mcast_QoS.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "SOCK_Dgram_Mcast_QoS.h" #include "ace/Log_Msg.h" @@ -19,10 +19,6 @@ #endif /* ! defined (IMR_MULTIADDR) */ -ACE_RCSID (QoS, - SOCK_Dgram_Mcast_QoS, - "$Id: SOCK_Dgram_Mcast_QoS.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_SOCK_Dgram_Mcast_QoS) diff --git a/dep/acelite/ace/RB_Tree.cpp b/dep/acelite/ace/RB_Tree.cpp index 57095be5795..0a6c8a08c8d 100644 --- a/dep/acelite/ace/RB_Tree.cpp +++ b/dep/acelite/ace/RB_Tree.cpp @@ -1,4 +1,4 @@ -// $Id: RB_Tree.cpp 81768 2008-05-23 12:45:54Z sma $ +// $Id: RB_Tree.cpp 91813 2010-09-17 07:52:52Z johnnyw $ #ifndef ACE_RB_TREE_CPP #define ACE_RB_TREE_CPP @@ -1076,7 +1076,7 @@ ACE_RB_Tree<EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK>::remove_i (ACE_RB_Tree_Node< y->color (z->color ()); z->color (yColor); - //Reassign the y pointer to z because the node that y points to will be + //Reassign the y pointer to z because the node that y points to will be //deleted y = z; } diff --git a/dep/acelite/ace/README b/dep/acelite/ace/README index c1e90bb5c44..6afb534a2bf 100644 --- a/dep/acelite/ace/README +++ b/dep/acelite/ace/README @@ -1,4 +1,4 @@ -// $Id: README 88535 2010-01-13 21:22:15Z olli $ +// $Id: README 92182 2010-10-08 08:21:27Z olli $ ACE Portability Macros ---------------------- @@ -366,8 +366,6 @@ 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_LINUX_NPTL Linux platform (with kernel >= 2.6.x) with GLibc including new NPTL (Native POSIX Thread Library). @@ -835,8 +833,6 @@ ACE_LACKS_AUTO_MMAP_REPLACEMENT No system support for replacing any ACE_LACKS_BSEARCH Compiler/platform lacks the standard C library bsearch() function -ACE_LACKS_CLEARERR Platform lacks the clearerr system - call. ACE_LACKS_CLOSEDIR Platform lacks closedir and the closedir emulation must be used ACE_LACKS_OPENDIR Platform lacks opendir and the opendir @@ -892,8 +888,6 @@ ACE_LACKS_INET_ATON Platform lacks the inet_aton() ACE_LACKS_INET_ATON_PROTOTYPE Platform/compiler lacks the inet_aton() prototype (e.g., LynxOS) -ACE_LACKS_IOSTREAMS_TOTALLY Iostreams are not supported - adequately on the given platform. ACE_LACKS_IOSTREAM_FX iostream header does not declare ipfx (), opfx (), etc. @@ -979,7 +973,6 @@ ACE_LACKS_RAND_REENTRANT_FUNCTIONS Platform lacks rand_r() ACE_LACKS_READLINK Platform lacks the readlink() function. ACE_LACKS_READV Platform doesn't define readv, so use our own -ACE_LACKS_RENAME Platform lacks rename(). ACE_LACKS_RLIMIT Platform/compiler lacks {get,set}rlimit() function (e.g., VxWorks, Chorus, and diff --git a/dep/acelite/ace/RW_Mutex.cpp b/dep/acelite/ace/RW_Mutex.cpp index 76ce52d2e79..a7459f04584 100644 --- a/dep/acelite/ace/RW_Mutex.cpp +++ b/dep/acelite/ace/RW_Mutex.cpp @@ -1,7 +1,7 @@ /** * @file RW_Mutex.cpp * - * $Id: RW_Mutex.cpp 83934 2008-12-01 13:47:06Z johnnyw $ + * $Id: RW_Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * Originally in Synch.cpp * @@ -18,7 +18,7 @@ #include "ace/Log_Msg.h" -ACE_RCSID(ace, RW_Mutex, "$Id: RW_Mutex.cpp 83934 2008-12-01 13:47:06Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/RW_Process_Mutex.cpp b/dep/acelite/ace/RW_Process_Mutex.cpp index a39de3e346a..74cf98145d8 100644 --- a/dep/acelite/ace/RW_Process_Mutex.cpp +++ b/dep/acelite/ace/RW_Process_Mutex.cpp @@ -1,10 +1,10 @@ -// $Id: RW_Process_Mutex.cpp 81509 2008-04-28 22:00:49Z shuston $ +// $Id: RW_Process_Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/RW_Process_Mutex.h" #include "ace/Log_Msg.h" #include "ace/ACE.h" -ACE_RCSID(ace, RW_Process_Mutex, "$Id: RW_Process_Mutex.cpp 81509 2008-04-28 22:00:49Z shuston $") + #if !defined (__ACE_INLINE__) #include "ace/RW_Process_Mutex.inl" diff --git a/dep/acelite/ace/RW_Thread_Mutex.cpp b/dep/acelite/ace/RW_Thread_Mutex.cpp index 281f2d4815b..7fce758d99c 100644 --- a/dep/acelite/ace/RW_Thread_Mutex.cpp +++ b/dep/acelite/ace/RW_Thread_Mutex.cpp @@ -1,7 +1,7 @@ /** * @file RW_Thread_Mutex.cpp * - * $Id: RW_Thread_Mutex.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: RW_Thread_Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * Originally in Synch.cpp * @@ -18,7 +18,7 @@ #include "ace/Guard_T.h" -ACE_RCSID(ace, RW_Thread_Mutex, "$Id: RW_Thread_Mutex.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Reactor.cpp b/dep/acelite/ace/Reactor.cpp index b575d6d221c..20a76e2d2e3 100644 --- a/dep/acelite/ace/Reactor.cpp +++ b/dep/acelite/ace/Reactor.cpp @@ -1,4 +1,4 @@ -// $Id: Reactor.cpp 88832 2010-02-04 09:57:42Z johnnyw $ +// $Id: Reactor.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Reactor.h" @@ -51,10 +51,6 @@ #include "ace/Reactor.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Reactor, - "$Id: Reactor.cpp 88832 2010-02-04 09:57:42Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Reactor) diff --git a/dep/acelite/ace/Reactor.h b/dep/acelite/ace/Reactor.h index 6f0fdf35013..6198b4ebcfc 100644 --- a/dep/acelite/ace/Reactor.h +++ b/dep/acelite/ace/Reactor.h @@ -4,7 +4,7 @@ /** * @file Reactor.h * - * $Id: Reactor.h 88832 2010-02-04 09:57:42Z johnnyw $ + * $Id: Reactor.h 92345 2010-10-24 12:39:33Z johnnyw $ * * @author Irfan Pyarali <irfan@cs.wustl.edu> * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> @@ -43,7 +43,7 @@ class ACE_Sig_Set; /* * Hook to specialize the Reactor implementation with the concrete - * Reactor type, for exmaple, select, thread pool reactor known + * Reactor type, for example, select, thread pool reactor known * at compile time. */ //@@ REACTOR_SPL_INCLUDE_FORWARD_DECL_ADD_HOOK @@ -107,13 +107,13 @@ public: // = Singleton reactor event loop management methods. // Note that these method ONLY work on the "Singleton Reactor," - // i.e., the one returned from <ACE_Reactor::instance>. + // i.e., the one returned from ACE_Reactor::instance(). /** * Run the event loop until the * <ACE_Reactor::handle_events/ACE_Reactor::alertable_handle_events> - * method returns -1 or the <end_event_loop> method is invoked. + * method returns -1 or the end_event_loop() method is invoked. * Note that this method can only be used by the singleton - * <ACE_Reactor::instance>. Thus, to run another reactor use + * ACE_Reactor::instance(). Thus, to run another reactor use * <ACE_Reactor::run_reactor_event_loop>. * * @deprecated Use ACE_Reactor::instance()->run_reactor_event_loop() instead @@ -122,11 +122,11 @@ public: static int run_alertable_event_loop (void); /** - * Run the event loop until the <ACE_Reactor::handle_events> or + * Run the event loop until the ACE_Reactor::handle_events() or * <ACE_Reactor::alertable_handle_events> methods returns -1, the - * <end_event_loop> method is invoked, or the ACE_Time_Value + * end_event_loop() method is invoked, or the ACE_Time_Value * expires. Note that this method can only be used by the singleton - * <ACE_Reactor::instance>. Thus, to run another reactor use + * ACE_Reactor::instance(). Thus, to run another reactor use * <ACE_Reactor::run_reactor_event_loop>. * * @deprecated Use ACE_Reactor::instance()->run_reactor_event_loop() instead @@ -135,10 +135,10 @@ public: static int run_alertable_event_loop (ACE_Time_Value &tv); /** - * Instruct the <ACE_Reactor::instance> to terminate its event loop - * and notifies the <ACE_Reactor::instance> so that it can wake up + * Instruct the ACE_Reactor::instance() to terminate its event loop + * and notifies the ACE_Reactor::instance() so that it can wake up * and close down gracefully. Note that this method can only be - * used by the singleton <ACE_Reactor::instance>. Thus, to + * used by the singleton ACE_Reactor::instance(). Thus, to * terminate another reactor, use * <ACE_Reactor::end_reactor_event_loop>. * @@ -147,9 +147,9 @@ public: static int end_event_loop (void); /** - * Report if the <ACE_Reactor::instance>'s event loop is finished. + * Report if the ACE_Reactor::instance()'s event loop is finished. * Note that this method can only be used by the singleton - * <ACE_Reactor::instance>. Thus, to check another reactor use + * ACE_Reactor::instance(). Thus, to check another reactor use * <ACE_Reactor::reactor_event_loop_done>. * * @deprecated Use ACE_Reactor::instance()->reactor_event_loop_done() instead @@ -157,10 +157,10 @@ public: static int event_loop_done (void); /** - * Resets the <ACE_Reactor::end_event_loop_> static so that the - * <run_event_loop> method can be restarted. Note that this method - * can only be used by the singleton <ACE_Reactor::instance>. Thus, - * to reset another reactor use <ACE_Reactor::reset_reactor_event_loop>. + * Resets the ACE_Reactor::end_event_loop_ static so that the + * run_event_loop() method can be restarted. Note that this method + * can only be used by the singleton ACE_Reactor::instance(). Thus, + * to reset another reactor use ACE_Reactor::reset_reactor_event_loop(). * * @deprecated Use ACE_Reactor::instance()->reset_reactor_event_loop() * instead @@ -179,16 +179,16 @@ public: // These methods work with an instance of a reactor. /** * Run the event loop until the - * <ACE_Reactor::handle_events/ACE_Reactor::alertable_handle_events> - * method returns -1 or the <end_reactor_event_loop> method is invoked. + * ACE_Reactor::handle_events()/ACE_Reactor::alertable_handle_events() + * method returns -1 or the end_reactor_event_loop() method is invoked. */ int run_reactor_event_loop (REACTOR_EVENT_HOOK = 0); int run_alertable_reactor_event_loop (REACTOR_EVENT_HOOK = 0); /** - * Run the event loop until the <ACE_Reactor::handle_events> or + * Run the event loop until the ACE_Reactor::handle_events() or * <ACE_Reactor::alertable_handle_events> methods returns -1, the - * <end_reactor_event_loop> method is invoked, or the ACE_Time_Value + * end_reactor_event_loop() method is invoked, or the ACE_Time_Value * expires. */ int run_reactor_event_loop (ACE_Time_Value &tv, @@ -212,8 +212,8 @@ public: /// Indicate if the Reactor's event loop has been ended. int reactor_event_loop_done (void); - /// Resets the <ACE_Reactor::end_event_loop_> static so that the - /// <run_event_loop> method can be restarted. + /// Resets the ACE_Reactor::end_event_loop_ static so that the + /// run_event_loop() method can be restarted. void reset_reactor_event_loop (void); /** @@ -232,9 +232,9 @@ public: virtual ~ACE_Reactor (void); /** - * Initialize the ACE_Reactor to manage <max_number_of_handles>. - * If @a restart is false then the ACE_Reactor's <handle_events> - * method will be restarted automatically when <EINTR> occurs. If + * Initialize the ACE_Reactor to manage @a max_number_of_handles. + * If @a restart is false then the ACE_Reactor's handle_events() + * method will be restarted automatically when @c EINTR occurs. If * @a signal_handler or @a timer_queue are non-0 they are used as the * signal handler and timer queue, respectively. */ @@ -544,7 +544,7 @@ public: /** * Schedule a timer event. * - * Schedule a timer event that will expire after an <delay> amount + * Schedule a timer event that will expire after an @a delay amount * of time. The return value of this method, a timer_id value, * uniquely identifies the @a event_handler in the ACE_Reactor's * internal list of timers. This timer_id value can be used to @@ -578,7 +578,7 @@ public: * * Resets the interval of the timer represented by @a timer_id to * @a interval, which is specified in relative time to the current - * <gettimeofday>. If @a interval is equal to + * gettimeofday(). If @a interval is equal to * ACE_Time_Value::zero, the timer will become a non-rescheduling * timer. Returns 0 if successful, -1 if not. * diff --git a/dep/acelite/ace/Reactor_Impl.cpp b/dep/acelite/ace/Reactor_Impl.cpp index dceba327691..7503e257fb8 100644 --- a/dep/acelite/ace/Reactor_Impl.cpp +++ b/dep/acelite/ace/Reactor_Impl.cpp @@ -1,11 +1,7 @@ -// $Id: Reactor_Impl.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Reactor_Impl.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Reactor_Impl.h" -ACE_RCSID (ace, - Reactor_Impl, - "$Id: Reactor_Impl.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Reactor_Impl::~ACE_Reactor_Impl (void) diff --git a/dep/acelite/ace/Reactor_Notification_Strategy.cpp b/dep/acelite/ace/Reactor_Notification_Strategy.cpp index ca09498ece8..fdad27b6593 100644 --- a/dep/acelite/ace/Reactor_Notification_Strategy.cpp +++ b/dep/acelite/ace/Reactor_Notification_Strategy.cpp @@ -1,3 +1,5 @@ +// $Id: Reactor_Notification_Strategy.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Reactor_Notification_Strategy.h" #include "ace/Reactor.h" @@ -5,8 +7,6 @@ #include "ace/Reactor_Notification_Strategy.inl" #endif /* __ACE_INLINE __ */ -ACE_RCSID(ace, Reactor_Notification_Strategy, "$Id: Reactor_Notification_Strategy.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Reactor_Notification_Strategy::ACE_Reactor_Notification_Strategy ( diff --git a/dep/acelite/ace/Reactor_Notification_Strategy.h b/dep/acelite/ace/Reactor_Notification_Strategy.h index 38e9f3bb4ca..1cfb83c773b 100644 --- a/dep/acelite/ace/Reactor_Notification_Strategy.h +++ b/dep/acelite/ace/Reactor_Notification_Strategy.h @@ -4,7 +4,7 @@ /** * @file Reactor_Notification_Strategy.h * - * $Id: Reactor_Notification_Strategy.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Reactor_Notification_Strategy.h 92345 2010-10-24 12:39:33Z johnnyw $ * * @author Doug Schmidt */ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * @brief Used to notify an ACE_Reactor * * Integrates the ACE_Message_Queue notification into the - * <ACE_Reactor::notify> method. + * ACE_Reactor::notify() method. */ class ACE_Export ACE_Reactor_Notification_Strategy : public ACE_Notification_Strategy { @@ -37,7 +37,7 @@ public: ACE_Event_Handler *eh, ACE_Reactor_Mask mask); - /// Default dtor. + /// Default destructor. virtual ~ACE_Reactor_Notification_Strategy (void); virtual int notify (void); diff --git a/dep/acelite/ace/Reactor_Timer_Interface.cpp b/dep/acelite/ace/Reactor_Timer_Interface.cpp index e2c644bd7d3..8bd7be7e310 100644 --- a/dep/acelite/ace/Reactor_Timer_Interface.cpp +++ b/dep/acelite/ace/Reactor_Timer_Interface.cpp @@ -1,12 +1,7 @@ -// $Id: Reactor_Timer_Interface.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Reactor_Timer_Interface.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Reactor_Timer_Interface.h" -ACE_RCSID (ace, - Reactor_Timer_Interface, - "$Id: Reactor_Timer_Interface.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Reactor_Timer_Interface::~ACE_Reactor_Timer_Interface() diff --git a/dep/acelite/ace/Read_Buffer.cpp b/dep/acelite/ace/Read_Buffer.cpp index dc246a466b0..5ad8fcf1cca 100644 --- a/dep/acelite/ace/Read_Buffer.cpp +++ b/dep/acelite/ace/Read_Buffer.cpp @@ -1,4 +1,4 @@ -// $Id: Read_Buffer.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Read_Buffer.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Read_Buffer.h" @@ -13,7 +13,7 @@ #include "ace/Service_Config.h" #include "ace/OS_NS_stdio.h" -ACE_RCSID(ace, Read_Buffer, "$Id: Read_Buffer.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Read_Buffer.h b/dep/acelite/ace/Read_Buffer.h index fafd42d6512..967ec4ddec6 100644 --- a/dep/acelite/ace/Read_Buffer.h +++ b/dep/acelite/ace/Read_Buffer.h @@ -4,7 +4,7 @@ /** * @file Read_Buffer.h * - * $Id: Read_Buffer.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Read_Buffer.h 92345 2010-10-24 12:39:33Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> * @author Seth Widoff @@ -32,7 +32,7 @@ class ACE_Allocator; /** * @class ACE_Read_Buffer * - * @brief Efficiently reads an artibrarily large buffer from an input + * @brief Efficiently reads an arbitrarily large buffer from an input * stream up to and including a termination character. Also * performs search/replace on single occurrences a character in * the buffer using the principles of Integrated Layer @@ -66,13 +66,13 @@ public: /** * Returns a pointer dynamically allocated with - * ACE_Allocator::malloc to data from the input stream up to (and + * ACE_Allocator::malloc() to data from the input stream up to (and * including) the @a terminator. If @a search is >= 0 then all * occurrences of the @a search value are substituted with the * @a replace value. The last of the byte of data is a 0, so that * @c strlen can be used on it. The caller is responsible for * freeing the pointer returned from this method using the - * ACE_Allocator::free. + * ACE_Allocator::free(). */ char *read (int terminator = EOF, int search = '\n', diff --git a/dep/acelite/ace/Recursive_Thread_Mutex.cpp b/dep/acelite/ace/Recursive_Thread_Mutex.cpp index 4f43ca7240b..6130642d55f 100644 --- a/dep/acelite/ace/Recursive_Thread_Mutex.cpp +++ b/dep/acelite/ace/Recursive_Thread_Mutex.cpp @@ -1,7 +1,7 @@ /** * @file Recursive_Thread_Mutex.cpp * - * $Id: Recursive_Thread_Mutex.cpp 85363 2009-05-18 07:48:11Z johnnyw $ + * $Id: Recursive_Thread_Mutex.cpp 91688 2010-09-09 11:21:50Z johnnyw $ * * Originally in Synch.cpp * @@ -18,8 +18,6 @@ #include "ace/Log_Msg.h" -ACE_RCSID(ace, Recursive_Thread_Mutex, "$Id: Recursive_Thread_Mutex.cpp 85363 2009-05-18 07:48:11Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Recursive_Thread_Mutex) diff --git a/dep/acelite/ace/Recursive_Thread_Mutex.h b/dep/acelite/ace/Recursive_Thread_Mutex.h index 93a25a7bd11..6ddd04bd6bf 100644 --- a/dep/acelite/ace/Recursive_Thread_Mutex.h +++ b/dep/acelite/ace/Recursive_Thread_Mutex.h @@ -4,7 +4,7 @@ /** * @file Recursive_Thread_Mutex.h * - * $Id: Recursive_Thread_Mutex.h 91066 2010-07-12 11:05:04Z johnnyw $ + * $Id: Recursive_Thread_Mutex.h 91688 2010-09-09 11:21:50Z johnnyw $ * * Moved from Synch.h. * @@ -153,9 +153,6 @@ public: /// Returns a reference to the recursive mutex; ACE_recursive_thread_mutex_t &lock (void); - /// @deprecated Returns a reference to the recursive mutex; - ACE_recursive_thread_mutex_t &mutex (void); - /// Returns a reference to the recursive mutex's internal mutex; ACE_thread_mutex_t &get_nesting_mutex (void); diff --git a/dep/acelite/ace/Recyclable.cpp b/dep/acelite/ace/Recyclable.cpp index d68ffd4d7b5..9af11bb851a 100644 --- a/dep/acelite/ace/Recyclable.cpp +++ b/dep/acelite/ace/Recyclable.cpp @@ -1,4 +1,4 @@ -//$Id: Recyclable.cpp 80826 2008-03-04 14:51:23Z wotte $ +//$Id: Recyclable.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Recyclable.h" @@ -6,7 +6,7 @@ #include "ace/Recyclable.inl" #endif /* __ACE_INLINE __ */ -ACE_RCSID(ace, Recyclable, "$Id: Recyclable.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Refcountable.h b/dep/acelite/ace/Refcountable.h deleted file mode 100644 index eba916cd661..00000000000 --- a/dep/acelite/ace/Refcountable.h +++ /dev/null @@ -1,32 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file Refcountable.h - * - * $Id: Refcountable.h 81402 2008-04-23 18:30:54Z johnnyw $ - * - * @author Doug Schmidt - */ -//============================================================================= -#ifndef ACE_REFCOUNTABLE_H -#define ACE_REFCOUNTABLE_H -#include /**/ "ace/pre.h" - -#include /**/ "ace/ACE_export.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "ace/Refcountable_T.h" -#include "ace/Null_Mutex.h" - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -typedef ACE_Refcountable_T<ACE_Null_Mutex> ACE_Refcountable; - -ACE_END_VERSIONED_NAMESPACE_DECL - -#include /**/ "ace/post.h" -#endif /*ACE_REFCOUNTABLE_H*/ diff --git a/dep/acelite/ace/Refcountable_T.cpp b/dep/acelite/ace/Refcountable_T.cpp index 80c28ea501b..755c6115092 100644 --- a/dep/acelite/ace/Refcountable_T.cpp +++ b/dep/acelite/ace/Refcountable_T.cpp @@ -1,14 +1,10 @@ -// $Id: Refcountable_T.cpp 81407 2008-04-24 05:59:30Z johnnyw $ +// $Id: Refcountable_T.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #ifndef ACE_REFCOUNTABLE_T_CPP #define ACE_REFCOUNTABLE_T_CPP #include "ace/Refcountable_T.h" -ACE_RCSID (ace, - Refcountable_T, - "$Id: Refcountable_T.cpp 81407 2008-04-24 05:59:30Z johnnyw $") - #if !defined (__ACE_INLINE__) #include "ace/Refcountable_T.inl" #endif /* __ACE_INLINE__ */ diff --git a/dep/acelite/ace/Refcountable_T.h b/dep/acelite/ace/Refcountable_T.h index 36e4c508d6e..a8b0ec5f28e 100644 --- a/dep/acelite/ace/Refcountable_T.h +++ b/dep/acelite/ace/Refcountable_T.h @@ -4,7 +4,7 @@ /** * @file Refcountable_T.h * - * $Id: Refcountable_T.h 81409 2008-04-24 08:30:48Z johnnyw $ + * $Id: Refcountable_T.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Doug Schmidt * @author Johnny Willemsen @@ -22,6 +22,7 @@ #include "ace/Atomic_Op.h" #include "ace/Synch_Traits.h" +#include "ace/Null_Mutex.h" ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -32,8 +33,10 @@ public: /// Destructor. virtual ~ACE_Refcountable_T (void); - // = Increment/Decrement refcount + /// Increment refcount long increment (void); + + /// Decrement refcount long decrement (void); /// Returns the current refcount. @@ -47,8 +50,6 @@ protected: ACE_Atomic_Op <ACE_LOCK, long> refcount_; }; -typedef ACE_Refcountable_T<ACE_Null_Mutex> ACE_Refcountable; - ACE_END_VERSIONED_NAMESPACE_DECL #if defined (__ACE_INLINE__) diff --git a/dep/acelite/ace/Registry.cpp b/dep/acelite/ace/Registry.cpp index 3178095afef..a62a5632b9d 100644 --- a/dep/acelite/ace/Registry.cpp +++ b/dep/acelite/ace/Registry.cpp @@ -1,11 +1,7 @@ -// $Id: Registry.cpp 88568 2010-01-15 10:23:25Z olli $ +// $Id: Registry.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Registry.h" -ACE_RCSID (ace, - Registry, - "$Id: Registry.cpp 88568 2010-01-15 10:23:25Z olli $") - #if defined (ACE_WIN32) && !defined (ACE_LACKS_WIN32_REGISTRY) # include "ace/os_include/os_netdb.h" diff --git a/dep/acelite/ace/Registry_Name_Space.cpp b/dep/acelite/ace/Registry_Name_Space.cpp index ce0099ba231..594e8032f70 100644 --- a/dep/acelite/ace/Registry_Name_Space.cpp +++ b/dep/acelite/ace/Registry_Name_Space.cpp @@ -1,8 +1,8 @@ -// $Id: Registry_Name_Space.cpp 84455 2009-02-13 13:31:02Z johnnyw $ +// $Id: Registry_Name_Space.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Registry_Name_Space.h" -ACE_RCSID(ace, Registry_Name_Space, "$Id: Registry_Name_Space.cpp 84455 2009-02-13 13:31:02Z johnnyw $") + #if (defined (ACE_WIN32) && defined (ACE_USES_WCHAR)) // This only works on Win32 platforms when ACE_USES_WCHAR is turned on diff --git a/dep/acelite/ace/Registry_Name_Space.h b/dep/acelite/ace/Registry_Name_Space.h index 6e37419e8d1..eb9f77587f6 100644 --- a/dep/acelite/ace/Registry_Name_Space.h +++ b/dep/acelite/ace/Registry_Name_Space.h @@ -4,7 +4,7 @@ /** * @file Registry_Name_Space.h * - * $Id: Registry_Name_Space.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Registry_Name_Space.h 92345 2010-10-24 12:39:33Z johnnyw $ * * @author Irfan Pyarali (irfan@cs.wustl.edu) */ @@ -78,7 +78,7 @@ public: int unbind (const ACE_NS_WString &name_in); /// Get value and type of a given name binding (Wide chars). The - /// caller is responsible for deleting both <value_out> and <type_out>! + /// caller is responsible for deleting both @a value_out and @a type_out! int resolve (const ACE_NS_WString &name_in, ACE_NS_WString &value_out, char *&type_out); diff --git a/dep/acelite/ace/Remote_Name_Space.cpp b/dep/acelite/ace/Remote_Name_Space.cpp index afbfd360f21..fd99feb8489 100644 --- a/dep/acelite/ace/Remote_Name_Space.cpp +++ b/dep/acelite/ace/Remote_Name_Space.cpp @@ -1,13 +1,10 @@ +// $Id: Remote_Name_Space.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Remote_Name_Space.h" #include "ace/Auto_Ptr.h" #include "ace/Log_Msg.h" #include "ace/SString.h" #include "ace/OS_NS_string.h" -ACE_RCSID (ace, - Remote_Name_Space, - "$Id: Remote_Name_Space.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL int diff --git a/dep/acelite/ace/Remote_Tokens.cpp b/dep/acelite/ace/Remote_Tokens.cpp index 56943ba30ea..07d3b6816bf 100644 --- a/dep/acelite/ace/Remote_Tokens.cpp +++ b/dep/acelite/ace/Remote_Tokens.cpp @@ -1,4 +1,4 @@ -// $Id: Remote_Tokens.cpp 84455 2009-02-13 13:31:02Z johnnyw $ +// $Id: Remote_Tokens.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Remote_Tokens.h" @@ -10,12 +10,6 @@ #include "ace/Remote_Tokens.inl" #endif /* __ACE_INLINE__ */ - -ACE_RCSID (ace, - Remote_Tokens, - "$Id: Remote_Tokens.cpp 84455 2009-02-13 13:31:02Z johnnyw $") - - #if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) #define ACE_TSS_CONNECTION_MUTEX ACE_Thread_Mutex #else diff --git a/dep/acelite/ace/Remote_Tokens.h b/dep/acelite/ace/Remote_Tokens.h index 0014a3f5552..3c9ed94f561 100644 --- a/dep/acelite/ace/Remote_Tokens.h +++ b/dep/acelite/ace/Remote_Tokens.h @@ -4,7 +4,7 @@ /** * @file Remote_Tokens.h * - * $Id: Remote_Tokens.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Remote_Tokens.h 92345 2010-10-24 12:39:33Z johnnyw $ * * @author Douglas C. Schmidt (schmidt@cs.wustl.edu) * @author Tim Harrison (harrison@cs.wustl.edu) @@ -41,7 +41,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * The Remote_Token_Proxy class implements the mechanisms for * distributed token operations. It is similar to the * ACE_Token_Proxy. - * = BUGS + * @todo * Distributed sleep_hooks have not been implemented. <owner_id> * is not implemented. */ @@ -56,8 +56,8 @@ public: /** * Same as Token_Proxy. @a name is the string uniquely identifying - * the token. <ignore_deadlock> can be 1 to disable deadlock - * notifications. <debug> prints debug messages. + * the token. @a ignore_deadlock can be 1 to disable deadlock + * notifications. @a debug prints debug messages. */ int open (const ACE_TCHAR *name, int ignore_deadlock = 0, @@ -88,7 +88,7 @@ public: /** * Try to acquire the distributed token. If the token is already - * held, the call returns without queueing the caller as a waiter. + * held, the call returns without queuing the caller as a waiter. * Returns 0 on success (the token was acquired), and -1 with * EWOULDBLOCK if the token was already held. */ @@ -98,7 +98,7 @@ public: * Renew the token by offering to release it if there are any other * waiters, otherwise get the token back immediately. This renew * has the same semantics as ACE_Local_Mutex release. It is - * semantically equivalent to <release> followed by <acquire>, but + * semantically equivalent to release() followed by acquire(), but * it is faster. options contains the timeout value used if renew * blocks. As with acquire, the timer is maintained at the token * server. If there are waiters and requeue_position == -1, the @@ -120,10 +120,9 @@ public: virtual int release (ACE_Synch_Options &options = ACE_Synch_Options::synch); - /// Become interface compliant for ACE_Guard<>. This has no + /// Become interface compliant for our guards. This has no /// functionality. - virtual int remove (ACE_Synch_Options &options = - ACE_Synch_Options::synch); + virtual int remove (ACE_Synch_Options &options = ACE_Synch_Options::synch); /// Override the default to do nothing. virtual void token_acquired (ACE_TPQ_Entry *); @@ -288,7 +287,7 @@ public: /// Factory Method that creates a new SOCK Stream. virtual ACE_SOCK_Stream *make_TSS_TYPE (void) const; - /// Inheritence and operator overloading don't mix. Redefine this + /// Inheritance and operator overloading don't mix. Redefine this /// from ACE_TSS so that we can use it. operator ACE_SOCK_Stream *(void); diff --git a/dep/acelite/ace/SOCK.cpp b/dep/acelite/ace/SOCK.cpp index b5b38ced073..fadc8504227 100644 --- a/dep/acelite/ace/SOCK.cpp +++ b/dep/acelite/ace/SOCK.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SOCK.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SOCK.h" #include "ace/Log_Msg.h" @@ -7,7 +7,7 @@ #include "ace/SOCK.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK, "$Id: SOCK.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SOCK.h b/dep/acelite/ace/SOCK.h index d37e68b2954..124a4ea4a8a 100644 --- a/dep/acelite/ace/SOCK.h +++ b/dep/acelite/ace/SOCK.h @@ -4,7 +4,7 @@ /** * @file SOCK.h * - * $Id: SOCK.h 84834 2009-03-16 12:28:51Z johnnyw $ + * $Id: SOCK.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -63,7 +63,7 @@ public: */ int close (void); - /// Return the local endpoint address in the referenced <ACE_Addr>. + /// Return the local endpoint address in the referenced ACE_Addr. /// Returns 0 if successful, else -1. int get_local_addr (ACE_Addr &) const; @@ -120,7 +120,7 @@ protected: /// Protected destructor. /** - * Not a virtual destructor. Protected destructor to prevent + * Not a virtual destructor. Protected destructor to prevent * operator delete() from being called through a base class ACE_SOCK * pointer/reference. */ diff --git a/dep/acelite/ace/SOCK_Acceptor.cpp b/dep/acelite/ace/SOCK_Acceptor.cpp index 9c6df6328f2..d6aa2bd5f21 100644 --- a/dep/acelite/ace/SOCK_Acceptor.cpp +++ b/dep/acelite/ace/SOCK_Acceptor.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: SOCK_Acceptor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SOCK_Acceptor.h" @@ -16,7 +16,7 @@ #include "ace/OS_QoS.h" #endif // ACE_HAS_WINCE -ACE_RCSID(ace, SOCK_Acceptor, "$Id: SOCK_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SOCK_CODgram.cpp b/dep/acelite/ace/SOCK_CODgram.cpp index 7babdad8e9d..9d9873acf36 100644 --- a/dep/acelite/ace/SOCK_CODgram.cpp +++ b/dep/acelite/ace/SOCK_CODgram.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_CODgram.cpp 82540 2008-08-06 13:02:53Z johnnyw $ +// $Id: SOCK_CODgram.cpp 91287 2010-08-05 10:30:49Z johnnyw $ #include "ace/SOCK_CODgram.h" #include "ace/Log_Msg.h" @@ -8,8 +8,6 @@ #include "ace/SOCK_CODgram.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK_CODgram, "$Id: SOCK_CODgram.cpp 82540 2008-08-06 13:02:53Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_SOCK_CODgram) diff --git a/dep/acelite/ace/SOCK_Connector.cpp b/dep/acelite/ace/SOCK_Connector.cpp index 641caea7e48..2cb0ce577d4 100644 --- a/dep/acelite/ace/SOCK_Connector.cpp +++ b/dep/acelite/ace/SOCK_Connector.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_Connector.cpp 83891 2008-11-28 11:01:50Z johnnyw $ +// $Id: SOCK_Connector.cpp 91626 2010-09-07 10:59:20Z johnnyw $ #include "ace/SOCK_Connector.h" #include "ace/INET_Addr.h" @@ -15,8 +15,6 @@ #include "ace/SOCK_Connector.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK_Connector, "$Id: SOCK_Connector.cpp 83891 2008-11-28 11:01:50Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_SOCK_Connector) @@ -83,11 +81,9 @@ ACE_SOCK_Connector::shared_connect_start (ACE_SOCK_Stream &new_stream, if (local_sap != ACE_Addr::sap_any) { sockaddr *laddr = reinterpret_cast<sockaddr *> (local_sap.get_addr ()); - int size = local_sap.get_size (); + int const size = local_sap.get_size (); - if (ACE_OS::bind (new_stream.get_handle (), - laddr, - size) == -1) + if (ACE_OS::bind (new_stream.get_handle (), laddr, size) == -1) { // Save/restore errno. ACE_Errno_Guard error (errno); @@ -150,9 +146,7 @@ ACE_SOCK_Connector::shared_connect_finish (ACE_SOCK_Stream &new_stream, #endif /* ACE_WIN32 */ } // Wait synchronously using timeout. - else if (this->complete (new_stream, - 0, - timeout) == -1) + else if (this->complete (new_stream, 0, timeout) == -1) error = errno; else return 0; @@ -179,7 +173,6 @@ ACE_SOCK_Connector::shared_connect_finish (ACE_SOCK_Stream &new_stream, } // Actively connect and produce a new ACE_SOCK_Stream if things go well... - int ACE_SOCK_Connector::connect (ACE_SOCK_Stream &new_stream, const ACE_Addr &remote_sap, @@ -206,9 +199,7 @@ ACE_SOCK_Connector::connect (ACE_SOCK_Stream &new_stream, reinterpret_cast<sockaddr *> (remote_sap.get_addr ()), remote_sap.get_size ()); - return this->shared_connect_finish (new_stream, - timeout, - result); + return this->shared_connect_finish (new_stream, timeout, result); } #if !defined (ACE_HAS_WINCE) @@ -244,9 +235,7 @@ ACE_SOCK_Connector::connect (ACE_SOCK_Stream &new_stream, remote_sap.get_size (), qos_params); - return this->shared_connect_finish (new_stream, - timeout, - result); + return this->shared_connect_finish (new_stream, timeout, result); } #endif // ACE_HAS_WINCE @@ -258,8 +247,7 @@ ACE_SOCK_Connector::complete (ACE_SOCK_Stream &new_stream, const ACE_Time_Value *tv) { ACE_TRACE ("ACE_SOCK_Connector::complete"); - ACE_HANDLE h = ACE::handle_timed_complete (new_stream.get_handle (), - tv); + ACE_HANDLE h = ACE::handle_timed_complete (new_stream.get_handle (), tv); // We failed to get connected. if (h == ACE_INVALID_HANDLE) { @@ -270,8 +258,7 @@ ACE_SOCK_Connector::complete (ACE_SOCK_Stream &new_stream, // then retry to see if it's a real failure. ACE_Time_Value time (0, ACE_NON_BLOCKING_BUG_DELAY); ACE_OS::sleep (time); - h = ACE::handle_timed_complete (new_stream.get_handle (), - tv); + h = ACE::handle_timed_complete (new_stream.get_handle (), tv); if (h == ACE_INVALID_HANDLE) { #endif /* ACE_WIN32 */ diff --git a/dep/acelite/ace/SOCK_Connector.h b/dep/acelite/ace/SOCK_Connector.h index 98ec8862f91..28e048e10a8 100644 --- a/dep/acelite/ace/SOCK_Connector.h +++ b/dep/acelite/ace/SOCK_Connector.h @@ -4,7 +4,7 @@ /** * @file SOCK_Connector.h * - * $Id: SOCK_Connector.h 84816 2009-03-13 08:16:32Z johnnyw $ + * $Id: SOCK_Connector.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Doug Schmidt <schmidt@cs.wustl.edu> */ @@ -43,7 +43,6 @@ class ACE_Time_Value; class ACE_Export ACE_SOCK_Connector { public: - // = Initialization and termination methods. /// Default constructor. ACE_SOCK_Connector (void); @@ -249,7 +248,7 @@ public: int perms = 0); #endif // ACE_HAS_WINCE - /// Default dtor. + /// Default destructor. ~ACE_SOCK_Connector (void); // = Completion routine. diff --git a/dep/acelite/ace/SOCK_Dgram.cpp b/dep/acelite/ace/SOCK_Dgram.cpp index 7ae3cf391b9..0530584b059 100644 --- a/dep/acelite/ace/SOCK_Dgram.cpp +++ b/dep/acelite/ace/SOCK_Dgram.cpp @@ -1,12 +1,12 @@ +// $Id: SOCK_Dgram.cpp 91622 2010-09-06 08:26:30Z sma $ + #include "ace/SOCK_Dgram.h" -#include "ace/Handle_Set.h" #include "ace/Log_Msg.h" #include "ace/INET_Addr.h" #include "ace/ACE.h" #include "ace/OS_NS_string.h" #include "ace/OS_Memory.h" -#include "ace/OS_NS_sys_select.h" #include "ace/OS_NS_ctype.h" #include "ace/os_include/net/os_if.h" #include "ace/Truncate.h" @@ -19,10 +19,6 @@ #include /**/ <iphlpapi.h> #endif -ACE_RCSID (ace, - SOCK_Dgram, - "$Id: SOCK_Dgram.cpp 85421 2009-05-22 11:12:30Z johnnyw $") - // This is a workaround for platforms with non-standard // definitions of the ip_mreq structure #if ! defined (IMR_MULTIADDR) @@ -54,34 +50,9 @@ ACE_SOCK_Dgram::recv (iovec *io_vec, { ACE_TRACE ("ACE_SOCK_Dgram::recv"); #if defined (FIONREAD) - ACE_Handle_Set handle_set; - handle_set.reset (); - handle_set.set_bit (this->get_handle ()); - - // Check the status of the current socket to make sure there's data - // to recv (or time out). -# if defined (ACE_WIN32) - // This arg is ignored on Windows and causes pointer truncation - // warnings on 64-bit compiles. - int select_width = 0; -# else - int select_width = int (this->get_handle ()) + 1; -# endif /* ACE_WIN32 */ - switch (ACE_OS::select (select_width, - handle_set, - 0, 0, - timeout)) + if( ACE::handle_read_ready (this->get_handle (), timeout) != 1 ) { - case -1: - return -1; - /* NOTREACHED */ - case 0: - errno = ETIME; return -1; - /* NOTREACHED */ - default: - // Goes fine, fallthrough to get data - break; } sockaddr *saddr = (sockaddr *) addr.get_addr (); @@ -453,35 +424,15 @@ ACE_SOCK_Dgram::recv (void *buf, int flags, const ACE_Time_Value *timeout) const { - ACE_Handle_Set handle_set; - handle_set.reset (); - handle_set.set_bit (this->get_handle ()); - - // Check the status of the current socket. -#if defined (ACE_WIN32) - // This arg is ignored on Windows and causes pointer truncation - // warnings on 64-bit compiles. - int select_width = 0; -#else - int select_width = int (this->get_handle ()) + 1; -#endif /* ACE_WIN32 */ - switch (ACE_OS::select (select_width, - handle_set, - 0, - 0, - timeout)) + if( ACE::handle_read_ready (this->get_handle (), timeout) == 1 ) { - case -1: - return -1; - /* NOTREACHED */ - case 0: - errno = ETIME; - return -1; - /* NOTREACHED */ - default: // Goes fine, call <recv> to get data return this->recv (buf, n, addr, flags); } + else + { + return -1; + } } ssize_t @@ -491,35 +442,16 @@ ACE_SOCK_Dgram::send (const void *buf, int flags, const ACE_Time_Value *timeout) const { - ACE_Handle_Set handle_set; - handle_set.reset (); - handle_set.set_bit (this->get_handle ()); - // Check the status of the current socket. -#if defined (ACE_WIN32) - // This arg is ignored on Windows and causes pointer truncation - // warnings on 64-bit compiles. - int select_width = 0; -#else - int select_width = int (this->get_handle ()) + 1; -#endif /* ACE_WIN32 */ - switch (ACE_OS::select (select_width, - 0, - handle_set, - 0, - timeout)) + if( ACE::handle_write_ready (this->get_handle (), timeout) == 1 ) { - case -1: - return -1; - /* NOTREACHED */ - case 0: - errno = ETIME; - return -1; - /* NOTREACHED */ - default: // Goes fine, call <send> to transmit the data. return this->send (buf, n, addr, flags); } + else + { + return -1; + } } int diff --git a/dep/acelite/ace/SOCK_Dgram_Bcast.cpp b/dep/acelite/ace/SOCK_Dgram_Bcast.cpp index 43a5f5a16a6..fec4c39a259 100644 --- a/dep/acelite/ace/SOCK_Dgram_Bcast.cpp +++ b/dep/acelite/ace/SOCK_Dgram_Bcast.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_Dgram_Bcast.cpp 84455 2009-02-13 13:31:02Z johnnyw $ +// $Id: SOCK_Dgram_Bcast.cpp 91685 2010-09-09 09:35:14Z johnnyw $ #include "ace/SOCK_Dgram_Bcast.h" @@ -13,7 +13,7 @@ #include "ace/SOCK_Dgram_Bcast.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK_Dgram_Bcast, "$Id: SOCK_Dgram_Bcast.cpp 84455 2009-02-13 13:31:02Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -151,18 +151,9 @@ ACE_SOCK_Dgram_Bcast::mk_broadcast (const ACE_TCHAR *host_name) if (hp == 0) return -1; else -#if defined(_UNICOS) - { - ACE_UINT64 haddr; // a place to put the address - char * haddrp = (char *) &haddr; // convert to char pointer - ACE_OS::memcpy(haddrp,(char *) hp->h_addr,hp->h_length); - host_addr.sin_addr.s_addr = haddr; - } -#else /* ! _UNICOS */ ACE_OS::memcpy ((char *) &host_addr.sin_addr.s_addr, (char *) hp->h_addr, hp->h_length); -#endif /* ! _UNICOS */ } diff --git a/dep/acelite/ace/SOCK_Dgram_Mcast.cpp b/dep/acelite/ace/SOCK_Dgram_Mcast.cpp index fc07a55295e..5f31771b0f1 100644 --- a/dep/acelite/ace/SOCK_Dgram_Mcast.cpp +++ b/dep/acelite/ace/SOCK_Dgram_Mcast.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_Dgram_Mcast.cpp 85421 2009-05-22 11:12:30Z johnnyw $ +// $Id: SOCK_Dgram_Mcast.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SOCK_Dgram_Mcast.h" @@ -20,10 +20,6 @@ #include "ace/SOCK_Dgram_Mcast.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - SOCK_Dgram_Mcast, - "$Id: SOCK_Dgram_Mcast.cpp 85421 2009-05-22 11:12:30Z johnnyw $") - #include "ace/Log_Msg.h" // This is a workaround for platforms with non-standard diff --git a/dep/acelite/ace/SOCK_Dgram_Mcast.h b/dep/acelite/ace/SOCK_Dgram_Mcast.h index a59b41bc45f..7c42e46e78a 100644 --- a/dep/acelite/ace/SOCK_Dgram_Mcast.h +++ b/dep/acelite/ace/SOCK_Dgram_Mcast.h @@ -4,7 +4,7 @@ /** * @file SOCK_Dgram_Mcast.h * - * $Id: SOCK_Dgram_Mcast.h 83891 2008-11-28 11:01:50Z johnnyw $ + * $Id: SOCK_Dgram_Mcast.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Irfan Pyrali <irfan@cs.wustl.edu> * @author Tim Harrison <harrison@cs.wustl.edu> @@ -89,7 +89,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * Some platforms, such as pSoS, support only cardinal numbers as network * interface specifications; for these platforms, just give these numbers in * alphanumeric form and <subscribe> will convert them into numbers via - * <ACE_OS::atoi>. + * ACE_OS::atoi(). */ class ACE_Export ACE_SOCK_Dgram_Mcast : public ACE_SOCK_Dgram { @@ -202,13 +202,13 @@ public: * This method is optional; if not explicitly invoked, it is invoked by * the first <subscribe>, using the subscribed address/port# and network * interface parameters. - * The <mcast_addr> parameter defines the default send address/port# and + * The @a mcast_addr parameter defines the default send address/port# and * also the port# and, if the OPT_BINDADDR_YES option is used, * the multicast address that is bound to this socket. * If the <send_net_if> parameter != 0, it defines the network interface * used for all sends by this instance, otherwise the system "default" * interface is used. (The <send_net_if> parameter is ignored if this - * feature is not supported by the envriornment.) + * feature is not supported by the environment.) * The port# in <mcast_addr> may be 0, in which case a system-assigned * (ephemeral) port# is used for sending and receiving. * If @a reuse_addr != 0, the SO_REUSEADDR option and, if it is supported, @@ -327,7 +327,7 @@ private: int reuse_addr); /// Do subscription processing w/out updating the subscription list. - // (Layered method for <subscribe> processing). + /// (Layered method for <subscribe> processing). int subscribe_i (const ACE_INET_Addr &mcast_addr, int reuse_addr = 1, const ACE_TCHAR *net_if = 0); @@ -337,7 +337,7 @@ private: const ACE_TCHAR *net_if = 0); /// Do unsubscription processing w/out udpating subscription list. - // (Layered method for <unsubscribe> processing). + /// (Layered method for <unsubscribe> processing). int unsubscribe_i (const ACE_INET_Addr &mcast_addr, const ACE_TCHAR *net_if = 0); @@ -353,7 +353,6 @@ protected: int clear_subs_list (void); private: - /// Per-instance options.. int opts_; diff --git a/dep/acelite/ace/SOCK_IO.cpp b/dep/acelite/ace/SOCK_IO.cpp index 772cbff18a5..10af6460b53 100644 --- a/dep/acelite/ace/SOCK_IO.cpp +++ b/dep/acelite/ace/SOCK_IO.cpp @@ -1,9 +1,7 @@ -// $Id: SOCK_IO.cpp 84213 2009-01-22 15:45:13Z johnnyw $ +// $Id: SOCK_IO.cpp 91622 2010-09-06 08:26:30Z sma $ #include "ace/SOCK_IO.h" -#include "ace/Handle_Set.h" -#include "ace/OS_NS_sys_select.h" #include "ace/OS_NS_sys_socket.h" #include "ace/OS_Memory.h" #include "ace/Truncate.h" @@ -12,7 +10,7 @@ #include "ace/SOCK_IO.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK_IO, "$Id: SOCK_IO.cpp 84213 2009-01-22 15:45:13Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -37,35 +35,10 @@ ACE_SOCK_IO::recvv (iovec *io_vec, { ACE_TRACE ("ACE_SOCK_IO::recvv"); #if defined (FIONREAD) - ACE_Handle_Set handle_set; - handle_set.reset (); - handle_set.set_bit (this->get_handle ()); - io_vec->iov_base = 0; - - // Check the status of the current socket. -# if defined (ACE_WIN32) - // This arg is ignored on Windows and causes pointer truncation - // warnings on 64-bit compiles. - int select_width = 0; -# else - int select_width = int (this->get_handle ()) + 1; -# endif /* ACE_WIN32 */ - switch (ACE_OS::select (select_width, - handle_set, - 0, 0, - timeout)) + if( ACE::handle_read_ready (this->get_handle (), timeout) != 1 ) { - case -1: - return -1; - /* NOTREACHED */ - case 0: - errno = ETIME; return -1; - /* NOTREACHED */ - default: - // Goes fine, fallthrough to get data - break; } int inlen = 0; diff --git a/dep/acelite/ace/SOCK_SEQPACK_Acceptor.cpp b/dep/acelite/ace/SOCK_SEQPACK_Acceptor.cpp index 9287c885c52..2a39527c33e 100644 --- a/dep/acelite/ace/SOCK_SEQPACK_Acceptor.cpp +++ b/dep/acelite/ace/SOCK_SEQPACK_Acceptor.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_SEQPACK_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: SOCK_SEQPACK_Acceptor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SOCK_SEQPACK_Acceptor.h" @@ -13,7 +13,7 @@ #include "ace/SOCK_SEQPACK_Acceptor.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK_SEQPACK_Acceptor, "SOCK_SEQPACK_Acceptor.cpp,v 4.30 2002/03/08 23:18:09 spark Exp") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SOCK_SEQPACK_Association.cpp b/dep/acelite/ace/SOCK_SEQPACK_Association.cpp index 02b7b25c0fd..8df2b125b78 100644 --- a/dep/acelite/ace/SOCK_SEQPACK_Association.cpp +++ b/dep/acelite/ace/SOCK_SEQPACK_Association.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_SEQPACK_Association.cpp 83832 2008-11-18 10:30:32Z johnnyw $ +// $Id: SOCK_SEQPACK_Association.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SOCK_SEQPACK_Association.h" @@ -11,7 +11,7 @@ #include "ace/SOCK_SEQPACK_Association.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK_SEQPACK_Association, "$Id: SOCK_SEQPACK_Association.cpp 83832 2008-11-18 10:30:32Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SOCK_SEQPACK_Connector.cpp b/dep/acelite/ace/SOCK_SEQPACK_Connector.cpp index 8405a6c7496..25b2bfe4174 100644 --- a/dep/acelite/ace/SOCK_SEQPACK_Connector.cpp +++ b/dep/acelite/ace/SOCK_SEQPACK_Connector.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_SEQPACK_Connector.cpp 83735 2008-11-14 09:41:52Z johnnyw $ +// $Id: SOCK_SEQPACK_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SOCK_SEQPACK_Connector.h" @@ -18,7 +18,7 @@ #include "ace/SOCK_SEQPACK_Connector.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK_SEQPACK_Connector, "SOCK_SEQPACK_Connector.cpp,v 4.35 2002/03/08 23:18:09 spark Exp") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SOCK_Stream.cpp b/dep/acelite/ace/SOCK_Stream.cpp index 36f0b8761c7..54148be89c6 100644 --- a/dep/acelite/ace/SOCK_Stream.cpp +++ b/dep/acelite/ace/SOCK_Stream.cpp @@ -1,4 +1,4 @@ -// $Id: SOCK_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SOCK_Stream.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SOCK_Stream.h" @@ -6,7 +6,7 @@ #include "ace/SOCK_Stream.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SOCK_Stream, "$Id: SOCK_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SPIPE.cpp b/dep/acelite/ace/SPIPE.cpp index cddd44e9004..00f2224a882 100644 --- a/dep/acelite/ace/SPIPE.cpp +++ b/dep/acelite/ace/SPIPE.cpp @@ -1,4 +1,4 @@ -// $Id: SPIPE.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SPIPE.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SPIPE.h" @@ -8,7 +8,7 @@ #include "ace/SPIPE.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SPIPE, "$Id: SPIPE.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SPIPE_Acceptor.cpp b/dep/acelite/ace/SPIPE_Acceptor.cpp index e532f9d4a84..6325e9259a7 100644 --- a/dep/acelite/ace/SPIPE_Acceptor.cpp +++ b/dep/acelite/ace/SPIPE_Acceptor.cpp @@ -1,4 +1,4 @@ -// $Id: SPIPE_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: SPIPE_Acceptor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SPIPE_Acceptor.h" #include "ace/Log_Msg.h" @@ -9,7 +9,7 @@ # include "ace/OS_NS_unistd.h" #endif // ACE_HAS_STREAM_PIPES -ACE_RCSID(ace, SPIPE_Acceptor, "$Id: SPIPE_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SPIPE_Addr.cpp b/dep/acelite/ace/SPIPE_Addr.cpp index e81da6d960d..256b5473c8d 100644 --- a/dep/acelite/ace/SPIPE_Addr.cpp +++ b/dep/acelite/ace/SPIPE_Addr.cpp @@ -1,4 +1,4 @@ -// $Id: SPIPE_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SPIPE_Addr.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SPIPE_Addr.h" #include "ace/OS_NS_string.h" @@ -9,7 +9,7 @@ #include "ace/SPIPE_Addr.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SPIPE_Addr, "$Id: SPIPE_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SPIPE_Connector.cpp b/dep/acelite/ace/SPIPE_Connector.cpp index c11bb7d9b39..269a2a19b4c 100644 --- a/dep/acelite/ace/SPIPE_Connector.cpp +++ b/dep/acelite/ace/SPIPE_Connector.cpp @@ -1,4 +1,4 @@ -// $Id: SPIPE_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SPIPE_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SPIPE_Connector.h" #include "ace/Log_Msg.h" @@ -10,7 +10,7 @@ #include "ace/SPIPE_Connector.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SPIPE_Connector, "$Id: SPIPE_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SPIPE_Stream.cpp b/dep/acelite/ace/SPIPE_Stream.cpp index 74a2ab350cb..67bc34e4b79 100644 --- a/dep/acelite/ace/SPIPE_Stream.cpp +++ b/dep/acelite/ace/SPIPE_Stream.cpp @@ -1,4 +1,4 @@ -// $Id: SPIPE_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SPIPE_Stream.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SPIPE_Stream.h" #include "ace/OS_Memory.h" @@ -7,7 +7,7 @@ #include "ace/SPIPE_Stream.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SPIPE_Stream, "$Id: SPIPE_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SSL/SSL_Asynch_BIO.cpp b/dep/acelite/ace/SSL/SSL_Asynch_BIO.cpp index 0870a232373..21c83287fe9 100644 --- a/dep/acelite/ace/SSL/SSL_Asynch_BIO.cpp +++ b/dep/acelite/ace/SSL/SSL_Asynch_BIO.cpp @@ -1,5 +1,5 @@ // -*- C++ -*- - +// $Id: SSL_Asynch_BIO.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "SSL_Asynch_BIO.h" #if OPENSSL_VERSION_NUMBER > 0x0090581fL && ((defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) || (defined (ACE_HAS_AIO_CALLS))) @@ -8,10 +8,6 @@ #include "ace/OS_NS_string.h" #include "ace/Truncate.h" -ACE_RCSID (ACE_SSL, - SSL_Asynch_BIO, - "$Id: SSL_Asynch_BIO.cpp 82574 2008-08-08 19:35:06Z parsons $") - #if (defined (ACE_HAS_VERSIONED_NAMESPACE) && ACE_HAS_VERSIONED_NAMESPACE == 1) # define ACE_ASYNCH_BIO_WRITE_NAME ACE_PREPROC_CONCATENATE(ACE_VERSIONED_NAMESPACE_NAME, _ACE_Asynch_BIO_write) # define ACE_ASYNCH_BIO_READ_NAME ACE_PREPROC_CONCATENATE(ACE_VERSIONED_NAMESPACE_NAME, _ACE_Asynch_BIO_read) diff --git a/dep/acelite/ace/SSL/SSL_Asynch_Stream.cpp b/dep/acelite/ace/SSL/SSL_Asynch_Stream.cpp index 15c648d18fe..8569c78c5d9 100644 --- a/dep/acelite/ace/SSL/SSL_Asynch_Stream.cpp +++ b/dep/acelite/ace/SSL/SSL_Asynch_Stream.cpp @@ -1,9 +1,6 @@ +// $Id: SSL_Asynch_Stream.cpp 91813 2010-09-17 07:52:52Z johnnyw $ #include "SSL_Asynch_Stream.h" -ACE_RCSID (ACE_SSL, - SSL_Asynch_Stream, - "$Id: SSL_Asynch_Stream.cpp 84181 2009-01-16 22:37:49Z shuston $") - // This only works on platforms with Asynchronous IO support. #if OPENSSL_VERSION_NUMBER > 0x0090581fL && ((defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) || (defined (ACE_HAS_AIO_CALLS))) @@ -505,7 +502,7 @@ ACE_SSL_Asynch_Stream::do_SSL_handshake (void) return -1; } } - return 1; + return 1; } if (this->flags_ & SF_REQ_SHUTDOWN) diff --git a/dep/acelite/ace/SSL/SSL_Asynch_Stream.h b/dep/acelite/ace/SSL/SSL_Asynch_Stream.h index af82300a428..221546f354d 100644 --- a/dep/acelite/ace/SSL/SSL_Asynch_Stream.h +++ b/dep/acelite/ace/SSL/SSL_Asynch_Stream.h @@ -4,7 +4,7 @@ /** * @file SSL_Asynch_Stream.h * - * $Id: SSL_Asynch_Stream.h 84181 2009-01-16 22:37:49Z shuston $ + * $Id: SSL_Asynch_Stream.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Alexander Libman <alibman@baltimore.com> */ @@ -306,13 +306,13 @@ protected: * * Check 1: * - * SSL clients that require a peer certificate must specify SSL_VERIFY_PEER + * SSL clients that require a peer certificate must specify SSL_VERIFY_PEER * via ACE_SSL_Context::default_verify_mode. If the peer sends an invalid * certificate, the SSL handshake will fail; however, if the peer does not - * send a certificate, the SSL handshake will complete successfully which + * send a certificate, the SSL handshake will complete successfully which * may not be acceptable. In this case, you must override this method in a * subclass and return false if the call to SSL_get_peer_certificate returns - * null. + * null. * * Check 2: * @@ -322,10 +322,10 @@ protected: * by your CA to usurp your session. For further info on this check, see * the post_connection_check method in Example 5-8 of 'Network Security with * OpenSSL' by Viega, et. al. - * + * * Return: - * - * false - Terminate the connection. Outstanding IO complete with ERR_CANCELED. + * + * false - Terminate the connection. Outstanding IO complete with ERR_CANCELED. * * true - Proceed with connection. The default implementation returns true. */ diff --git a/dep/acelite/ace/SSL/SSL_Context.cpp b/dep/acelite/ace/SSL/SSL_Context.cpp index c7915797c37..992cdeff921 100644 --- a/dep/acelite/ace/SSL/SSL_Context.cpp +++ b/dep/acelite/ace/SSL/SSL_Context.cpp @@ -1,3 +1,4 @@ +// $Id: SSL_Context.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "SSL_Context.h" #include "sslconf.h" @@ -26,11 +27,6 @@ #include <openssl/rand.h> #include <openssl/safestack.h> -ACE_RCSID (ACE_SSL, - SSL_Context, - "$Id: SSL_Context.cpp 85202 2009-04-28 18:52:57Z johnnyw $") - - namespace { /// Reference count of the number of times the ACE_SSL_Context was diff --git a/dep/acelite/ace/SSL/SSL_SOCK.cpp b/dep/acelite/ace/SSL/SSL_SOCK.cpp index b46762345ba..366bec52333 100644 --- a/dep/acelite/ace/SSL/SSL_SOCK.cpp +++ b/dep/acelite/ace/SSL/SSL_SOCK.cpp @@ -1,4 +1,4 @@ -// $Id: SSL_SOCK.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SSL_SOCK.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "SSL_SOCK.h" @@ -9,11 +9,6 @@ #include "ace/OS_NS_errno.h" #include "ace/os_include/os_signal.h" -ACE_RCSID (ACE_SSL, - SSL_SOCK, - "$Id: SSL_SOCK.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_SSL_SOCK::ACE_SSL_SOCK (void) diff --git a/dep/acelite/ace/SSL/SSL_SOCK.h b/dep/acelite/ace/SSL/SSL_SOCK.h index c07a4ecfda3..676bad7aa3a 100644 --- a/dep/acelite/ace/SSL/SSL_SOCK.h +++ b/dep/acelite/ace/SSL/SSL_SOCK.h @@ -4,7 +4,7 @@ /** * @file SSL_SOCK.h * - * $Id: SSL_SOCK.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: SSL_SOCK.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @author Ossama Othman <ossama@ece.uci.edu> */ @@ -24,16 +24,6 @@ #include "ace/SOCK.h" -#if defined (ACE_HAS_TEMPLATE_TYPEDEFS) -# define ACE_SSL_SOCK_ACCEPTOR ACE_SSL_SOCK_Acceptor -# define ACE_SSL_SOCK_CONNECTOR ACE_SSL_SOCK_Connector -# define ACE_SSL_SOCK_STREAM ACE_SSL_SOCK_Stream -#else -# define ACE_SSL_SOCK_ACCEPTOR ACE_SSL_SOCK_Acceptor, ACE_INET_Addr -# define ACE_SSL_SOCK_CONNECTOR ACE_SSL_SOCK_Connector, ACE_INET_Addr -# define ACE_SSL_SOCK_STREAM ACE_SSL_SOCK_Stream, ACE_INET_Addr -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ - ACE_BEGIN_VERSIONED_NAMESPACE_DECL /** diff --git a/dep/acelite/ace/SSL/SSL_SOCK_Acceptor.cpp b/dep/acelite/ace/SSL/SSL_SOCK_Acceptor.cpp index e94c988a392..a02099bdf7f 100644 --- a/dep/acelite/ace/SSL/SSL_SOCK_Acceptor.cpp +++ b/dep/acelite/ace/SSL/SSL_SOCK_Acceptor.cpp @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: SSL_SOCK_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: SSL_SOCK_Acceptor.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "SSL_SOCK_Acceptor.h" @@ -17,10 +17,6 @@ #include "SSL_SOCK_Acceptor.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ACE_SSL, - SSL_SOCK_Acceptor, - "$Id: SSL_SOCK_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_SSL_SOCK_Acceptor) diff --git a/dep/acelite/ace/SSL/SSL_SOCK_Connector.cpp b/dep/acelite/ace/SSL/SSL_SOCK_Connector.cpp index 4a05ed5e329..cc19d36907c 100644 --- a/dep/acelite/ace/SSL/SSL_SOCK_Connector.cpp +++ b/dep/acelite/ace/SSL/SSL_SOCK_Connector.cpp @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: SSL_SOCK_Connector.cpp 82577 2008-08-09 17:43:11Z mitza $ +// $Id: SSL_SOCK_Connector.cpp 91813 2010-09-17 07:52:52Z johnnyw $ #include "SSL_SOCK_Connector.h" @@ -17,10 +17,6 @@ #include "SSL_SOCK_Connector.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ACE_SSL, - SSL_SOCK_Connector, - "$Id: SSL_SOCK_Connector.cpp 82577 2008-08-09 17:43:11Z mitza $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_SSL_SOCK_Connector) @@ -75,7 +71,7 @@ ACE_SSL_SOCK_Connector::ssl_connect (ACE_SSL_SOCK_Stream &new_stream, ACE_Countdown_Time countdown ((timeout == 0 ? 0 : &t)); int status; - + do { // These handle sets are used to set up for whatever SSL_connect @@ -142,7 +138,7 @@ ACE_SSL_SOCK_Connector::ssl_connect (ACE_SSL_SOCK_Stream &new_stream, { status = -1; } - + break; default: diff --git a/dep/acelite/ace/SSL/SSL_SOCK_Stream.cpp b/dep/acelite/ace/SSL/SSL_SOCK_Stream.cpp index 42fc889c3b2..6e636124eb2 100644 --- a/dep/acelite/ace/SSL/SSL_SOCK_Stream.cpp +++ b/dep/acelite/ace/SSL/SSL_SOCK_Stream.cpp @@ -1,4 +1,4 @@ -// $Id: SSL_SOCK_Stream.cpp 82577 2008-08-09 17:43:11Z mitza $ +// $Id: SSL_SOCK_Stream.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Handle_Set.h" #include "ace/Log_Msg.h" @@ -15,10 +15,6 @@ #include "SSL_SOCK_Stream.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ACE_SSL, - SSL_SOCK_Stream, - "$Id: SSL_SOCK_Stream.cpp 82577 2008-08-09 17:43:11Z mitza $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_SSL_SOCK_Stream) diff --git a/dep/acelite/ace/SSL/SSL_SOCK_Stream.h b/dep/acelite/ace/SSL/SSL_SOCK_Stream.h index 15c5297414b..0ce31989bbc 100644 --- a/dep/acelite/ace/SSL/SSL_SOCK_Stream.h +++ b/dep/acelite/ace/SSL/SSL_SOCK_Stream.h @@ -4,7 +4,7 @@ /** * @file SSL_SOCK_Stream.h * - * $Id: SSL_SOCK_Stream.h 91103 2010-07-15 12:36:57Z mcorino $ + * $Id: SSL_SOCK_Stream.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Ossama Othman <ossama@uci.edu> * @author Carlos O'Ryan <coryan@uci.edu> @@ -233,7 +233,7 @@ public: int flags, const ACE_Time_Value *timeout, size_t *bytes_transferred = 0) const; - + /** * Try to receive exactly len bytes into buf (uses the recv() call). * The ACE_Time_Value indicates how long to blocking trying to diff --git a/dep/acelite/ace/SString.cpp b/dep/acelite/ace/SString.cpp index 56fc568b659..5a087e3e0a9 100644 --- a/dep/acelite/ace/SString.cpp +++ b/dep/acelite/ace/SString.cpp @@ -1,4 +1,4 @@ -// $Id: SString.cpp 85547 2009-06-07 17:57:11Z johnnyw $ +// $Id: SString.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Malloc_T.h" #include "ace/OS_Memory.h" @@ -17,11 +17,6 @@ #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - SString, - "SString.cpp,v 4.61 2001/03/04 00:55:30 brunsch Exp") - - // ************************************************************ ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SUN_Proactor.cpp b/dep/acelite/ace/SUN_Proactor.cpp index 9c27fbd43e7..ae7184494d0 100644 --- a/dep/acelite/ace/SUN_Proactor.cpp +++ b/dep/acelite/ace/SUN_Proactor.cpp @@ -1,4 +1,4 @@ -// $Id: SUN_Proactor.cpp 84455 2009-02-13 13:31:02Z johnnyw $ +// $Id: SUN_Proactor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SUN_Proactor.h" @@ -8,12 +8,6 @@ #include "ace/Log_Msg.h" #include "ace/Object_Manager.h" - -ACE_RCSID (ace, - POSIX_CB_Proactor, - "$Id: SUN_Proactor.cpp 84455 2009-02-13 13:31:02Z johnnyw $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_SUN_Proactor::ACE_SUN_Proactor (size_t max_aio_operations) diff --git a/dep/acelite/ace/SV_Message.cpp b/dep/acelite/ace/SV_Message.cpp index 5334cca6f77..4757c03d6b3 100644 --- a/dep/acelite/ace/SV_Message.cpp +++ b/dep/acelite/ace/SV_Message.cpp @@ -1,5 +1,5 @@ // SV_Message.cpp -// $Id: SV_Message.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SV_Message.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SV_Message.h" @@ -7,7 +7,7 @@ #include "ace/SV_Message.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SV_Message, "$Id: SV_Message.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SV_Message_Queue.cpp b/dep/acelite/ace/SV_Message_Queue.cpp index a1c9d88791a..82cd14cc602 100644 --- a/dep/acelite/ace/SV_Message_Queue.cpp +++ b/dep/acelite/ace/SV_Message_Queue.cpp @@ -1,4 +1,4 @@ -// $Id: SV_Message_Queue.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SV_Message_Queue.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SV_Message_Queue.h" #include "ace/Log_Msg.h" @@ -7,7 +7,7 @@ #include "ace/SV_Message_Queue.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SV_Message_Queue, "$Id: SV_Message_Queue.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/SV_Semaphore_Complex.cpp b/dep/acelite/ace/SV_Semaphore_Complex.cpp index c88c9dde46a..c2f4f94d4e7 100644 --- a/dep/acelite/ace/SV_Semaphore_Complex.cpp +++ b/dep/acelite/ace/SV_Semaphore_Complex.cpp @@ -1,5 +1,4 @@ -// SV_Semaphore_Complex.cpp -// $Id: SV_Semaphore_Complex.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SV_Semaphore_Complex.cpp 91321 2010-08-09 06:38:18Z johnnyw $ #include "ace/SV_Semaphore_Complex.h" #include "ace/Log_Msg.h" @@ -9,8 +8,6 @@ #include "ace/SV_Semaphore_Complex.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SV_Semaphore_Complex, "$Id: SV_Semaphore_Complex.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_SV_Semaphore_Complex) diff --git a/dep/acelite/ace/SV_Semaphore_Simple.cpp b/dep/acelite/ace/SV_Semaphore_Simple.cpp index 071ee4bb4d7..643cbce3c74 100644 --- a/dep/acelite/ace/SV_Semaphore_Simple.cpp +++ b/dep/acelite/ace/SV_Semaphore_Simple.cpp @@ -1,3 +1,5 @@ +// $Id: SV_Semaphore_Simple.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/SV_Semaphore_Simple.h" #include "ace/Log_Msg.h" #include "ace/ACE.h" @@ -7,10 +9,6 @@ #include "ace/SV_Semaphore_Simple.inl" #endif /* !__ACE_INLINE__ */ -ACE_RCSID (ace, - SV_Semaphore_Simple, - "$Id: SV_Semaphore_Simple.cpp 85110 2009-04-20 09:18:43Z msmit $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE (ACE_SV_Semaphore_Simple) diff --git a/dep/acelite/ace/SV_Shared_Memory.cpp b/dep/acelite/ace/SV_Shared_Memory.cpp index 9db097ca2e8..406204746e7 100644 --- a/dep/acelite/ace/SV_Shared_Memory.cpp +++ b/dep/acelite/ace/SV_Shared_Memory.cpp @@ -1,4 +1,4 @@ -// $Id: SV_Shared_Memory.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: SV_Shared_Memory.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/SV_Shared_Memory.h" #include "ace/Log_Msg.h" @@ -7,7 +7,7 @@ #include "ace/SV_Shared_Memory.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, SV_Shared_Memory, "$Id: SV_Shared_Memory.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Sample_History.cpp b/dep/acelite/ace/Sample_History.cpp index 03e5d7a8c57..78a7558703f 100644 --- a/dep/acelite/ace/Sample_History.cpp +++ b/dep/acelite/ace/Sample_History.cpp @@ -1,4 +1,4 @@ -// $Id: Sample_History.cpp 83891 2008-11-28 11:01:50Z johnnyw $ +// $Id: Sample_History.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Sample_History.h" @@ -10,7 +10,7 @@ #include "ace/Log_Msg.h" #include "ace/OS_Memory.h" -ACE_RCSID(ace, Sample_History, "$Id: Sample_History.cpp 83891 2008-11-28 11:01:50Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Sbrk_Memory_Pool.cpp b/dep/acelite/ace/Sbrk_Memory_Pool.cpp index c8c5d3f5a3b..bee21bdd2ab 100644 --- a/dep/acelite/ace/Sbrk_Memory_Pool.cpp +++ b/dep/acelite/ace/Sbrk_Memory_Pool.cpp @@ -1,10 +1,10 @@ -// $Id: Sbrk_Memory_Pool.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Sbrk_Memory_Pool.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/OS_NS_unistd.h" #include "ace/Sbrk_Memory_Pool.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, Sbrk_Memory_Pool, "$Id: Sbrk_Memory_Pool.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_LACKS_SBRK) diff --git a/dep/acelite/ace/Sched_Params.cpp b/dep/acelite/ace/Sched_Params.cpp index 61a044f81c7..5002f52a797 100644 --- a/dep/acelite/ace/Sched_Params.cpp +++ b/dep/acelite/ace/Sched_Params.cpp @@ -3,7 +3,7 @@ /** * @file Sched_Params.cpp * - * $Id: Sched_Params.cpp 83624 2008-11-09 11:45:59Z johnnyw $ + * $Id: Sched_Params.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * @author David Levine */ @@ -21,7 +21,7 @@ # include /**/ <sys/priocntl.h> #endif /* ACE_HAS_PRIOCNTL && ACE_HAS_THREADS */ -ACE_RCSID(ace, Sched_Params, "$Id: Sched_Params.cpp 83624 2008-11-09 11:45:59Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Select_Reactor.h b/dep/acelite/ace/Select_Reactor.h index fdfd78eb6e5..2dd96f34914 100644 --- a/dep/acelite/ace/Select_Reactor.h +++ b/dep/acelite/ace/Select_Reactor.h @@ -4,7 +4,7 @@ /** * @file Select_Reactor.h * - * $Id: Select_Reactor.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Select_Reactor.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -26,10 +26,15 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL //@@ TAO_REACTOR_SPL_COMMENT_HOOK_START typedef ACE_Reactor_Token_T<ACE_SELECT_TOKEN> ACE_Select_Reactor_Token; +#if defined (_MSC_VER) && (_MSC_VER >= 1600) +template class ACE_Export ACE_Select_Reactor_T<ACE_Select_Reactor_Token>; +#endif /* _MSC_VER */ + typedef ACE_Select_Reactor_T<ACE_Select_Reactor_Token> ACE_Select_Reactor; //@@ TAO_REACTOR_SPL_COMMENT_HOOK_END #if defined (ACE_MT_SAFE) && (ACE_MT_SAFE == 0) +// FUZZ: disable check_for_ACE_Guard /** * @class ACE_Guard< ACE_Reactor_Token_T<ACE_Noop_Token> > * @@ -61,6 +66,7 @@ private: void operator= (const ACE_Guard< ACE_Reactor_Token_T<ACE_Noop_Token> > &); }; +// FUZZ: enable check_for_ACE_Guard #endif /* ACE_MT_SAFE && ACE_MT_SAFE == 0 */ ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Select_Reactor_Base.cpp b/dep/acelite/ace/Select_Reactor_Base.cpp index 5ffb8a53247..2165d6e16c2 100644 --- a/dep/acelite/ace/Select_Reactor_Base.cpp +++ b/dep/acelite/ace/Select_Reactor_Base.cpp @@ -1,4 +1,4 @@ -// $Id: Select_Reactor_Base.cpp 90989 2010-07-05 11:22:50Z johnnyw $ +// $Id: Select_Reactor_Base.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Select_Reactor_Base.h" #include "ace/Reactor.h" @@ -18,11 +18,6 @@ # include <algorithm> #endif /* !ACE_WIN32 */ -ACE_RCSID (ace, - Select_Reactor_Base, - "$Id: Select_Reactor_Base.cpp 90989 2010-07-05 11:22:50Z johnnyw $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL template<typename iterator> diff --git a/dep/acelite/ace/Select_Reactor_T.cpp b/dep/acelite/ace/Select_Reactor_T.cpp index 44596979c31..b70b2d427c3 100644 --- a/dep/acelite/ace/Select_Reactor_T.cpp +++ b/dep/acelite/ace/Select_Reactor_T.cpp @@ -1,4 +1,4 @@ -// $Id: Select_Reactor_T.cpp 85505 2009-06-04 10:14:56Z johnnyw $ +// $Id: Select_Reactor_T.cpp 92201 2010-10-11 19:07:59Z johnnyw $ #ifndef ACE_SELECT_REACTOR_T_CPP #define ACE_SELECT_REACTOR_T_CPP @@ -32,10 +32,6 @@ #include "ace/Select_Reactor_T.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Select_Reactor_T, - "$Id: Select_Reactor_T.cpp 85505 2009-06-04 10:14:56Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Select_Reactor_T) @@ -1397,13 +1393,13 @@ ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::handle_events { ACE_TRACE ("ACE_Select_Reactor_T::handle_events"); -#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) - // Stash the current time -- the destructor of this object will // automatically compute how much time elapsed since this method was // called. ACE_Countdown_Time countdown (max_wait_time); +#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) + ACE_GUARD_RETURN (ACE_SELECT_REACTOR_TOKEN, ace_mon, this->token_, -1); if (ACE_OS::thr_equal (ACE_Thread::self (), diff --git a/dep/acelite/ace/Semaphore.cpp b/dep/acelite/ace/Semaphore.cpp index 2be156b8d7c..04588668b3a 100644 --- a/dep/acelite/ace/Semaphore.cpp +++ b/dep/acelite/ace/Semaphore.cpp @@ -1,4 +1,4 @@ -// $Id: Semaphore.cpp 84282 2009-01-30 15:04:29Z msmit $ +// $Id: Semaphore.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Semaphore.h" @@ -9,10 +9,6 @@ #include "ace/Log_Msg.h" #include "ace/ACE.h" -ACE_RCSID (ace, - Semaphore, - "$Id: Semaphore.cpp 84282 2009-01-30 15:04:29Z msmit $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Semaphore) diff --git a/dep/acelite/ace/Service_Config.cpp b/dep/acelite/ace/Service_Config.cpp index b1ec0329eb5..d63f46c1b86 100644 --- a/dep/acelite/ace/Service_Config.cpp +++ b/dep/acelite/ace/Service_Config.cpp @@ -1,4 +1,4 @@ -// $Id: Service_Config.cpp 84619 2009-02-26 12:26:16Z johnnyw $ +// $Id: Service_Config.cpp 91693 2010-09-09 12:57:54Z johnnyw $ #include "ace/Service_Config.h" @@ -24,26 +24,23 @@ #include "ace/Log_Msg.h" #include "ace/ACE.h" -ACE_RCSID (ace, - Service_Config, - "$Id: Service_Config.cpp 84619 2009-02-26 12:26:16Z johnnyw $") ACE_BEGIN_VERSIONED_NAMESPACE_DECL -ACE_Threading_Helper<ACE_Thread_Mutex>::~ACE_Threading_Helper () +ACE_Threading_Helper<ACE_Thread_Mutex>::~ACE_Threading_Helper (void) { - ACE_OS::thr_key_detach (this->key_, 0); + ACE_OS::thr_key_detach (this->key_); ACE_OS::thr_keyfree (this->key_); } -ACE_Threading_Helper<ACE_Thread_Mutex>::ACE_Threading_Helper () +ACE_Threading_Helper<ACE_Thread_Mutex>::ACE_Threading_Helper (void) : key_ (ACE_OS::NULL_key) { # if defined (ACE_HAS_TSS_EMULATION) ACE_Object_Manager::init_tss (); # endif - if (ACE_Thread::keycreate (&key_, 0, 0) == -1) + if (ACE_Thread::keycreate (&key_, 0) == -1) { ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P|%t) Failed to create thread key: %p\n"), diff --git a/dep/acelite/ace/Service_Config.inl b/dep/acelite/ace/Service_Config.inl index 35be0e84db9..78e11bcfe42 100644 --- a/dep/acelite/ace/Service_Config.inl +++ b/dep/acelite/ace/Service_Config.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Service_Config.inl 83302 2008-10-16 19:28:11Z mesnier_p $ +// $Id: Service_Config.inl 91813 2010-09-17 07:52:52Z johnnyw $ #include "ace/OS_NS_string.h" @@ -50,7 +50,7 @@ ACE_Service_Config::open (int argc, ignore_default_svc_conf, ignore_debug_flag) == -1) return -1; - + return current()->open (argc, argv, logger_key, diff --git a/dep/acelite/ace/Service_Gestalt.cpp b/dep/acelite/ace/Service_Gestalt.cpp index 47ea3d1e81b..29e2804b4b6 100644 --- a/dep/acelite/ace/Service_Gestalt.cpp +++ b/dep/acelite/ace/Service_Gestalt.cpp @@ -1,4 +1,4 @@ -// $Id: Service_Gestalt.cpp 91158 2010-07-21 15:54:12Z mesnier_p $ +// $Id: Service_Gestalt.cpp 92357 2010-10-25 14:11:44Z mesnier_p $ #include "ace/Svc_Conf.h" #include "ace/Get_Opt.h" @@ -29,10 +29,6 @@ #include "ace/Svc_Conf_Param.h" -ACE_RCSID (ace, - Service_Gestalt, - "$Id: Service_Gestalt.cpp 91158 2010-07-21 15:54:12Z mesnier_p $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Service_Type_Dynamic_Guard::ACE_Service_Type_Dynamic_Guard @@ -205,6 +201,9 @@ ACE_Service_Gestalt::~ACE_Service_Gestalt (void) delete this->svc_conf_file_queue_; this->svc_conf_file_queue_ = 0; + + delete this->svc_queue_; + this->svc_queue_ = 0; } ACE_Service_Gestalt::ACE_Service_Gestalt (size_t size, @@ -1063,7 +1062,7 @@ ACE_Service_Gestalt::open_i (const ACE_TCHAR program_name[], if (!ignore_default_svc_conf_file) { bool add_default = true; - bool has_files = this->svc_conf_file_queue_ && + bool has_files = this->svc_conf_file_queue_ && !this->svc_conf_file_queue_->is_empty (); bool has_cmdline = this->svc_queue_ && !this->svc_queue_->is_empty (); if (has_files || has_cmdline) @@ -1112,8 +1111,13 @@ ACE_Service_Gestalt::open_i (const ACE_TCHAR program_name[], else { result = this->process_directives (); - if (result != -1 || errno == ENOENT) - result = this->process_commandline_directives (); + if (result != -1) + { + int temp = this->process_commandline_directives (); + if (temp == -1) + result = -1; + else result += temp; + } } // Reset debugging back to the way it was when we came into diff --git a/dep/acelite/ace/Service_Gestalt.h b/dep/acelite/ace/Service_Gestalt.h index 68a2ce7e7cc..1f2522a361b 100644 --- a/dep/acelite/ace/Service_Gestalt.h +++ b/dep/acelite/ace/Service_Gestalt.h @@ -4,7 +4,7 @@ /** * @file Service_Gestalt.h * - * $Id: Service_Gestalt.h 91158 2010-07-21 15:54:12Z mesnier_p $ + * $Id: Service_Gestalt.h 91626 2010-09-07 10:59:20Z johnnyw $ * * @author Iliyan Jeliazkov <iliyan@ociweb.com> */ @@ -67,15 +67,8 @@ class ACE_Svc_Conf_Param; * Service Config in particular. * */ -class ACE_Export ACE_Service_Gestalt +class ACE_Export ACE_Service_Gestalt : private ACE_Copy_Disabled { -private: - /// - /// Not implemented to enforce no copying - // - ACE_UNIMPLEMENTED_FUNC (ACE_Service_Gestalt(const ACE_Service_Gestalt&)) - ACE_UNIMPLEMENTED_FUNC (ACE_Service_Gestalt& operator=(const ACE_Service_Gestalt&)) - public: enum { @@ -512,8 +505,10 @@ private: size_t repo_begin_; ACE_TCHAR const * const name_; -# if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) +#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) +// FUZZ: disable check_for_ACE_Guard ACE_Guard< ACE_Recursive_Thread_Mutex > repo_monitor_; +// FUZZ: enable check_for_ACE_Guard #endif }; diff --git a/dep/acelite/ace/Service_Manager.cpp b/dep/acelite/ace/Service_Manager.cpp index 5a4dbcb89bd..38bd0e57601 100644 --- a/dep/acelite/ace/Service_Manager.cpp +++ b/dep/acelite/ace/Service_Manager.cpp @@ -1,4 +1,4 @@ -// $Id: Service_Manager.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: Service_Manager.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Service_Manager.h" @@ -12,10 +12,6 @@ #include "ace/OS_NS_stdio.h" #include "ace/OS_NS_string.h" -ACE_RCSID (ace, - Service_Manager, - "$Id: Service_Manager.cpp 82723 2008-09-16 09:35:44Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE (ACE_Service_Manager) diff --git a/dep/acelite/ace/Service_Object.cpp b/dep/acelite/ace/Service_Object.cpp index 0ac76be21cb..912fa39532c 100644 --- a/dep/acelite/ace/Service_Object.cpp +++ b/dep/acelite/ace/Service_Object.cpp @@ -1,4 +1,4 @@ -// $Id: Service_Object.cpp 90077 2010-05-05 16:19:16Z cbeaulac $ +// $Id: Service_Object.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/config-all.h" @@ -17,10 +17,6 @@ # include "ace/Lib_Find.h" #endif -ACE_RCSID (ace, - Service_Object, - "$Id: Service_Object.cpp 90077 2010-05-05 16:19:16Z cbeaulac $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Service_Object) diff --git a/dep/acelite/ace/Service_Repository.cpp b/dep/acelite/ace/Service_Repository.cpp index 10195145ff1..1f4f5c3b32f 100644 --- a/dep/acelite/ace/Service_Repository.cpp +++ b/dep/acelite/ace/Service_Repository.cpp @@ -1,4 +1,4 @@ -// $Id: Service_Repository.cpp 90337 2010-05-28 20:00:49Z cbeaulac $ +// $Id: Service_Repository.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Service_Repository.h" @@ -14,11 +14,7 @@ #include "ace/OS_NS_errno.h" #include "ace/OS_NS_string.h" -ACE_RCSID (ace, - Service_Repository, - "$Id: Service_Repository.cpp 90337 2010-05-28 20:00:49Z cbeaulac $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL +ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Service_Repository) diff --git a/dep/acelite/ace/Service_Templates.h b/dep/acelite/ace/Service_Templates.h deleted file mode 100644 index d05d0d611d2..00000000000 --- a/dep/acelite/ace/Service_Templates.h +++ /dev/null @@ -1,29 +0,0 @@ - -//============================================================================= -/** - * @file Service_Templates.h - * - * $Id: Service_Templates.h 80826 2008-03-04 14:51:23Z wotte $ - * - * @author Priyanka Gontla <pgontla@ece.uci.edu> - */ -//============================================================================= - - -#ifndef ACE_SERVICE_TEMPLATES_H -#define ACE_SERVICE_TEMPLATES_H -#include /**/ "ace/pre.h" - -#include "ace/Svc_Conf.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "ace/Auto_Ptr.h" -#include "ace/Thread_Manager.h" -#include "ace/Stream_Modules.h" -#include "ace/Stream.h" - -#include /**/ "ace/post.h" -#endif /* ACE_SERVICE_TEMPLATES_H */ diff --git a/dep/acelite/ace/Service_Types.cpp b/dep/acelite/ace/Service_Types.cpp index 3465d774d53..b3f7d098054 100644 --- a/dep/acelite/ace/Service_Types.cpp +++ b/dep/acelite/ace/Service_Types.cpp @@ -1,4 +1,4 @@ -// $Id: Service_Types.cpp 90072 2010-05-04 21:34:39Z cbeaulac $ +// $Id: Service_Types.cpp 91813 2010-09-17 07:52:52Z johnnyw $ #include "ace/Service_Types.h" @@ -11,11 +11,6 @@ #include "ace/OS_NS_stdio.h" #include "ace/OS_NS_string.h" - -ACE_RCSID (ace, - Service_Types, - "$Id: Service_Types.cpp 90072 2010-05-04 21:34:39Z cbeaulac $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL typedef ACE_Stream<ACE_SYNCH> MT_Stream; @@ -380,7 +375,7 @@ ACE_Stream_Type::fini (void) const // Final arg is an indication to *not* delete the Module. str->remove (m->name (), - MT_Module::M_DELETE_NONE); + MT_Module::M_DELETE_NONE); m = t; } str->close (); diff --git a/dep/acelite/ace/Shared_Memory.cpp b/dep/acelite/ace/Shared_Memory.cpp index ccb1f26c401..97ad069396f 100644 --- a/dep/acelite/ace/Shared_Memory.cpp +++ b/dep/acelite/ace/Shared_Memory.cpp @@ -1,8 +1,8 @@ -// $Id: Shared_Memory.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Shared_Memory.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Shared_Memory.h" -ACE_RCSID(ace, Shared_Memory, "$Id: Shared_Memory.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Shared_Memory_MM.cpp b/dep/acelite/ace/Shared_Memory_MM.cpp index d6d1ed90cce..be3f5d6dcc8 100644 --- a/dep/acelite/ace/Shared_Memory_MM.cpp +++ b/dep/acelite/ace/Shared_Memory_MM.cpp @@ -1,4 +1,4 @@ -// $Id: Shared_Memory_MM.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Shared_Memory_MM.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Shared_Memory_MM.h" @@ -6,11 +6,6 @@ #include "ace/Shared_Memory_MM.inl" #endif /* __ACE_INLINE__ */ - -ACE_RCSID (ace, - Shared_Memory_MM, - "$Id: Shared_Memory_MM.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Shared_Memory_MM) diff --git a/dep/acelite/ace/Shared_Memory_Pool.cpp b/dep/acelite/ace/Shared_Memory_Pool.cpp index 0ef93925e89..72e272517e0 100644 --- a/dep/acelite/ace/Shared_Memory_Pool.cpp +++ b/dep/acelite/ace/Shared_Memory_Pool.cpp @@ -1,11 +1,11 @@ -// $Id: Shared_Memory_Pool.cpp 84455 2009-02-13 13:31:02Z johnnyw $ +// $Id: Shared_Memory_Pool.cpp 91685 2010-09-09 09:35:14Z johnnyw $ // Shared_Memory_Pool.cpp #include "ace/Shared_Memory_Pool.h" #include "ace/OS_NS_sys_shm.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, Shared_Memory_Pool, "$Id: Shared_Memory_Pool.cpp 84455 2009-02-13 13:31:02Z johnnyw $") + #if !defined (ACE_LACKS_SYSV_SHMEM) @@ -168,7 +168,6 @@ ACE_Shared_Memory_Pool::handle_signal (int , siginfo_t *siginfo, ucontext_t *) ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P|%t) %p\n"), ACE_TEXT ("in_use"))); -#if !defined(_UNICOS) else if (!(siginfo->si_code == SEGV_MAPERR && siginfo->si_addr < (((char *) this->base_addr_) + offset) && siginfo->si_addr >= ((char *) this->base_addr_))) @@ -176,15 +175,6 @@ ACE_Shared_Memory_Pool::handle_signal (int , siginfo_t *siginfo, ucontext_t *) "(%P|%t) address %u out of range\n", siginfo->si_addr), -1); -#else /* ! _UNICOS */ - else if (!(siginfo->si_code == SEGV_MEMERR - && siginfo->si_addr < (((unsigned long) this->base_addr_) + offset) - && siginfo->si_addr >= ((unsigned long) this->base_addr_))) - ACE_ERROR_RETURN ((LM_ERROR, - "(%P|%t) address %u out of range\n", - siginfo->si_addr), - -1); -#endif /* ! _UNICOS */ } // The above if case will check to see that the address is in the @@ -194,11 +184,7 @@ ACE_Shared_Memory_Pool::handle_signal (int , siginfo_t *siginfo, ucontext_t *) size_t counter; // ret value to get shmid from the st table. -#if !defined(_UNICOS) if (this->find_seg (siginfo->si_addr, offset, counter) == -1) -#else /* ! _UNICOS */ - if (this->find_seg ((const void *)siginfo->si_addr, offset, counter) == -1) -#endif /* ! _UNICOS */ ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("(%P|%t) %p\n"), ACE_TEXT ("in_use")), diff --git a/dep/acelite/ace/Shared_Memory_SV.cpp b/dep/acelite/ace/Shared_Memory_SV.cpp index fe26688b098..56f11a421b7 100644 --- a/dep/acelite/ace/Shared_Memory_SV.cpp +++ b/dep/acelite/ace/Shared_Memory_SV.cpp @@ -1,4 +1,4 @@ -// $Id: Shared_Memory_SV.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Shared_Memory_SV.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Shared_Memory_SV.h" @@ -7,11 +7,6 @@ #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Shared_Memory_SV, - "$Id: Shared_Memory_SV.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE(ACE_Shared_Memory_SV) diff --git a/dep/acelite/ace/Shared_Object.cpp b/dep/acelite/ace/Shared_Object.cpp index 76c27df1cb1..242a2e7c209 100644 --- a/dep/acelite/ace/Shared_Object.cpp +++ b/dep/acelite/ace/Shared_Object.cpp @@ -1,4 +1,4 @@ -// $Id: Shared_Object.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Shared_Object.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Shared_Object.h" #include "ace/Global_Macros.h" @@ -11,11 +11,7 @@ #include "ace/Shared_Object.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Shared_Object, - "$Id: Shared_Object.cpp 80826 2008-03-04 14:51:23Z wotte $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL +ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Initializes object when dynamic linking occurs. diff --git a/dep/acelite/ace/Sig_Adapter.cpp b/dep/acelite/ace/Sig_Adapter.cpp index d1af40f12d5..856d611559c 100644 --- a/dep/acelite/ace/Sig_Adapter.cpp +++ b/dep/acelite/ace/Sig_Adapter.cpp @@ -1,8 +1,8 @@ -// $Id: Sig_Adapter.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Sig_Adapter.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Sig_Adapter.h" -ACE_RCSID(ace, Sig_Adapter, "$Id: Sig_Adapter.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_Sig_Adapter::ACE_Sig_Adapter (ACE_Sig_Action &sa, int sigkey) diff --git a/dep/acelite/ace/Sig_Handler.cpp b/dep/acelite/ace/Sig_Handler.cpp index 8691f817fa0..82ff19ebfa8 100644 --- a/dep/acelite/ace/Sig_Handler.cpp +++ b/dep/acelite/ace/Sig_Handler.cpp @@ -1,4 +1,4 @@ -// $Id: Sig_Handler.cpp 88360 2009-12-30 08:42:20Z olli $ +// $Id: Sig_Handler.cpp 91626 2010-09-07 10:59:20Z johnnyw $ #include "ace/Sig_Handler.h" #include "ace/Sig_Adapter.h" @@ -12,7 +12,7 @@ #include "ace/Sig_Handler.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Sig_Handler, "$Id: Sig_Handler.cpp 88360 2009-12-30 08:42:20Z olli $") + #if defined (ACE_HAS_SIG_C_FUNC) @@ -71,7 +71,7 @@ ACE_Sig_Handler::sig_pending (void) ACE_MT (ACE_Recursive_Thread_Mutex *lock = ACE_Managed_Object<ACE_Recursive_Thread_Mutex>::get_preallocated_object (ACE_Object_Manager::ACE_SIG_HANDLER_LOCK); - ACE_Guard<ACE_Recursive_Thread_Mutex> m (*lock)); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, m, *lock, 0)); return ACE_Sig_Handler::sig_pending_ != 0; } @@ -83,7 +83,7 @@ ACE_Sig_Handler::sig_pending (int pending) ACE_MT (ACE_Recursive_Thread_Mutex *lock = ACE_Managed_Object<ACE_Recursive_Thread_Mutex>::get_preallocated_object (ACE_Object_Manager::ACE_SIG_HANDLER_LOCK); - ACE_Guard<ACE_Recursive_Thread_Mutex> m (*lock)); + ACE_GUARD (ACE_Recursive_Thread_Mutex, m, *lock)); ACE_Sig_Handler::sig_pending_ = pending; } @@ -94,7 +94,7 @@ ACE_Sig_Handler::handler (int signum) ACE_MT (ACE_Recursive_Thread_Mutex *lock = ACE_Managed_Object<ACE_Recursive_Thread_Mutex>::get_preallocated_object (ACE_Object_Manager::ACE_SIG_HANDLER_LOCK); - ACE_Guard<ACE_Recursive_Thread_Mutex> m (*lock)); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, m, *lock, 0)); if (ACE_Sig_Handler::in_range (signum)) return ACE_Sig_Handler::signal_handlers_[signum]; @@ -127,7 +127,7 @@ ACE_Sig_Handler::handler (int signum, ACE_MT (ACE_Recursive_Thread_Mutex *lock = ACE_Managed_Object<ACE_Recursive_Thread_Mutex>::get_preallocated_object (ACE_Object_Manager::ACE_SIG_HANDLER_LOCK); - ACE_Guard<ACE_Recursive_Thread_Mutex> m (*lock)); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, m, *lock, 0)); return ACE_Sig_Handler::handler_i (signum, new_sh); } @@ -185,7 +185,7 @@ ACE_Sig_Handler::register_handler (int signum, ACE_MT (ACE_Recursive_Thread_Mutex *lock = ACE_Managed_Object<ACE_Recursive_Thread_Mutex>::get_preallocated_object (ACE_Object_Manager::ACE_SIG_HANDLER_LOCK); - ACE_Guard<ACE_Recursive_Thread_Mutex> m (*lock)); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, m, *lock, -1)); return ACE_Sig_Handler::register_handler_i (signum, new_sh, @@ -206,7 +206,7 @@ ACE_Sig_Handler::remove_handler (int signum, ACE_MT (ACE_Recursive_Thread_Mutex *lock = ACE_Managed_Object<ACE_Recursive_Thread_Mutex>::get_preallocated_object (ACE_Object_Manager::ACE_SIG_HANDLER_LOCK); - ACE_Guard<ACE_Recursive_Thread_Mutex> m (*lock)); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, m, *lock, -1)); if (ACE_Sig_Handler::in_range (signum)) { @@ -221,7 +221,7 @@ ACE_Sig_Handler::remove_handler (int signum, return new_disp->register_action (signum, old_disp); } - return -1; + return -1; } // Master dispatcher function that gets called by a signal handler and @@ -270,8 +270,7 @@ ACE_Sig_Handler::dispatch (int signum, // dispatched. Therefore, to workaround this "feature" we // must re-register the <ACE_Event_Handler> with <signum> // explicitly. - ACE_Sig_Handler::register_handler_i (signum, - eh); + ACE_Sig_Handler::register_handler_i (signum, eh); #endif /* ACE_WIN32*/ } } @@ -345,7 +344,7 @@ ACE_Sig_Handlers::register_handler (int signum, ACE_MT (ACE_Recursive_Thread_Mutex *lock = ACE_Managed_Object<ACE_Recursive_Thread_Mutex>::get_preallocated_object (ACE_Object_Manager::ACE_SIG_HANDLER_LOCK); - ACE_Guard<ACE_Recursive_Thread_Mutex> m (*lock)); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, m, *lock, -1)); if (ACE_Sig_Handler::in_range (signum)) { @@ -474,7 +473,7 @@ ACE_Sig_Handlers::remove_handler (int signum, ACE_MT (ACE_Recursive_Thread_Mutex *lock = ACE_Managed_Object<ACE_Recursive_Thread_Mutex>::get_preallocated_object (ACE_Object_Manager::ACE_SIG_HANDLER_LOCK); - ACE_Guard<ACE_Recursive_Thread_Mutex> m (*lock)); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, m, *lock, -1)); if (ACE_Sig_Handler::in_range (signum)) { diff --git a/dep/acelite/ace/Signal.cpp b/dep/acelite/ace/Signal.cpp index 5f17455502b..69f0d29b5a8 100644 --- a/dep/acelite/ace/Signal.cpp +++ b/dep/acelite/ace/Signal.cpp @@ -1,4 +1,4 @@ -// $Id: Signal.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Signal.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Signal.h" // #include "ace/Log_Msg.h" @@ -7,7 +7,7 @@ #include "ace/Signal.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Signal, "$Id: Signal.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Signal.inl b/dep/acelite/ace/Signal.inl index 858c33c26fb..088d580aad3 100644 --- a/dep/acelite/ace/Signal.inl +++ b/dep/acelite/ace/Signal.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Signal.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Signal.inl 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/OS_NS_signal.h" #include "ace/config-all.h" @@ -150,22 +150,6 @@ ACE_Sig_Action::handler (ACE_SignalHandler handler) #endif /* !ACE_HAS_TANDEM_SIGNALS */ } -#if 0 -ACE_INLINE ACE_SignalHandler -ACE_Sig_Action::sigaction (void) -{ - ACE_TRACE ("ACE_Sig_Action::sigaction"); - return ACE_SignalHandler (this->sa_.sa_sigaction); -} - -ACE_INLINE void -ACE_Sig_Action::sigaction (ACE_SignalHandler handler) -{ - ACE_TRACE ("ACE_Sig_Action::sigaction"); - this->sa_.sa_sigaction = (void (*)()) ACE_SignalHandlerV (handler); -} -#endif /* 0 */ - ACE_INLINE void ACE_Sig_Action::set (struct sigaction *sa) { diff --git a/dep/acelite/ace/Singleton.cpp b/dep/acelite/ace/Singleton.cpp index 25b7983a2a6..80cacc99121 100644 --- a/dep/acelite/ace/Singleton.cpp +++ b/dep/acelite/ace/Singleton.cpp @@ -1,4 +1,4 @@ -// $Id: Singleton.cpp 84273 2009-01-30 12:55:25Z johnnyw $ +// $Id: Singleton.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #ifndef ACE_SINGLETON_CPP #define ACE_SINGLETON_CPP @@ -19,10 +19,6 @@ #include "ace/Guard_T.h" #include "ace/os_include/os_typeinfo.h" -ACE_RCSID (ace, - Singleton, - "$Id: Singleton.cpp 84273 2009-01-30 12:55:25Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL template <class TYPE, class ACE_LOCK> void diff --git a/dep/acelite/ace/Sock_Connect.cpp b/dep/acelite/ace/Sock_Connect.cpp index dc4362e697e..ce2a17d2bf5 100644 --- a/dep/acelite/ace/Sock_Connect.cpp +++ b/dep/acelite/ace/Sock_Connect.cpp @@ -1,4 +1,4 @@ -// $Id: Sock_Connect.cpp 90399 2010-06-03 21:35:20Z mesnier_p $ +// $Id: Sock_Connect.cpp 91685 2010-09-09 09:35:14Z johnnyw $ #include "ace/Sock_Connect.h" #include "ace/INET_Addr.h" @@ -157,11 +157,6 @@ static ACE_Auto_Array_Ptr<sockaddr> force_compiler_to_include_socket_h; #endif /* AIX && __IBMCPP__ >= 500 */ -ACE_RCSID (ace, - Sock_Connect, - "$Id: Sock_Connect.cpp 90399 2010-06-03 21:35:20Z mesnier_p $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Bind socket to an unused port. @@ -247,29 +242,16 @@ ACE::get_bcast_addr (ACE_UINT32 &bcast_addr, if (hp == 0) return -1; else -#if !defined(_UNICOS) ACE_OS::memcpy ((char *) &ip_addr.sin_addr.s_addr, (char *) hp->h_addr, hp->h_length); -#else /* _UNICOS */ - { - ACE_UINT64 haddr; // a place to put the address - char * haddrp = (char *) &haddr; // convert to char pointer - ACE_OS::memcpy(haddrp,(char *) hp->h_addr,hp->h_length); - ip_addr.sin_addr.s_addr = haddr; - } -#endif /* ! _UNICOS */ } else { ACE_OS::memset ((void *) &ip_addr, 0, sizeof ip_addr); -#if !defined(_UNICOS) ACE_OS::memcpy ((void *) &ip_addr.sin_addr, (void*) &host_addr, sizeof ip_addr.sin_addr); -#else /* _UNICOS */ - ip_addr.sin_addr.s_addr = host_addr; // just copy to the bitfield -#endif /* ! _UNICOS */ } #if !defined(AIX) && !defined (__QNX__) && !defined (__FreeBSD__) && !defined(__NetBSD__) && !defined (__Lynx__) @@ -1284,7 +1266,6 @@ ACE::get_ip_interfaces (size_t &count, ACE_INET_Addr *&addrs) ) { -# if !defined(_UNICOS) struct sockaddr_in *addr = reinterpret_cast<sockaddr_in *> (&pcur->IFR_ADDR); @@ -1305,23 +1286,6 @@ ACE::get_ip_interfaces (size_t &count, ACE_INET_Addr *&addrs) addrs[count].set (addr, addrlen); ++count; } -# else /* ! _UNICOS */ - // need to explicitly copy on the Cray, since the bitfields kinda - // screw things up here - struct sockaddr_in inAddr; - - inAddr.sin_len = pcur->IFR_ADDR.sa_len; - inAddr.sin_family = pcur->IFR_ADDR.sa_family; - memcpy((void *)&(inAddr.sin_addr), - (const void *)&(pcur->IFR_ADDR.sa_data[8]), - sizeof(struct in_addr)); - - if (inAddr.sin_addr.s_addr != 0) - { - addrs[count].set(&inAddr, sizeof(struct sockaddr_in)); - ++count; - } -# endif /* ! _UNICOS */ } #if !defined (__QNX__) && !defined (__FreeBSD__) && !defined(__NetBSD__) && !defined (ACE_HAS_RTEMS) && !defined (__Lynx__) diff --git a/dep/acelite/ace/Stack_Trace.cpp b/dep/acelite/ace/Stack_Trace.cpp index 3beb1c52f3e..6c04e192886 100644 --- a/dep/acelite/ace/Stack_Trace.cpp +++ b/dep/acelite/ace/Stack_Trace.cpp @@ -2,7 +2,7 @@ /** * @file Stack_Trace.cpp * - * $Id: Stack_Trace.cpp 90041 2010-04-29 03:38:07Z cleeland $ + * $Id: Stack_Trace.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * @brief Encapsulate string representation of stack trace. * @@ -22,7 +22,7 @@ * * If you add support for a new platform, please add a bullet to the * above list with durable references to the origins of your code. - * + * */ //============================================================================= @@ -31,8 +31,6 @@ #include "ace/OS_NS_string.h" #include "ace/OS_NS_stdio.h" -ACE_RCSID (ace, Stack_Trace, "$Id: Stack_Trace.cpp 90041 2010-04-29 03:38:07Z cleeland $") - /* This is ugly, simply because it's very platform-specific. */ @@ -122,7 +120,7 @@ struct ACE_Stack_Trace_stackstate size_t starting_frame; }; -//@TODO: Replace with a TSS-based pointer to avoid problems in multithreaded environs, +//@TODO: Replace with a TSS-based pointer to avoid problems in multithreaded environs, // or use a mutex to serialize access to this. static ACE_Stack_Trace_stackstate* ACE_Stack_Trace_stateptr = 0; @@ -509,7 +507,7 @@ typedef struct _dbghelp_functions # pragma warning (push) -# pragma warning (disable:4706) +# pragma warning (disable:4706) static bool load_dbghelp_library_if_needed (dbghelp_functions *pDbg) { //@TODO: See codeproject's StackWalker.cpp for the list of locations to @@ -609,7 +607,7 @@ cs_operate(int (*func)(struct frame_state const *, void *), void *usrarg, ZeroMemory (&fs.sf, sizeof (fs.sf)); fs.pDbg = &dbg; emptyStack (); //Not sure what this should do, Chad? - + CONTEXT c; ZeroMemory (&c, sizeof (CONTEXT)); c.ContextFlags = CONTEXT_FULL; @@ -711,7 +709,7 @@ ACE_Stack_Trace::generate_trace (ssize_t starting_frame_offset, void ACE_Stack_Trace::generate_trace (ssize_t, size_t) { -// Call determine_starting_frame() on HP aCC build to resolve declared +// Call determine_starting_frame() on HP aCC build to resolve declared // method never referenced warning. #if defined (__HP_aCC) size_t starting_frame = determine_starting_frame (0, 0); diff --git a/dep/acelite/ace/Stack_Trace.h b/dep/acelite/ace/Stack_Trace.h index 56cf8a09208..09febe40c62 100644 --- a/dep/acelite/ace/Stack_Trace.h +++ b/dep/acelite/ace/Stack_Trace.h @@ -3,7 +3,7 @@ /** * @file Stack_Trace.h * - * $Id: Stack_Trace.h 81926 2008-06-12 14:43:09Z mitza $ + * $Id: Stack_Trace.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Chris Cleeland (cleeland.ociweb.com) */ @@ -37,31 +37,31 @@ * A new conversion character, the question mark, was added to ACE_Log_Msg for stack * trace logging. The %? conversion character was added as a convenience so that users * need not instantiate an ACE_Stack_Trace instance solely for the purpose of printing - * it in an ACE logging message. The following are functionally equivalent: + * it in an ACE logging message. The following are functionally equivalent: * * \code - * ACE_DEBUG((LM_DEBUG, "%?")); + * ACE_DEBUG((LM_DEBUG, "%?")); * * ACE_Stack_Trace st; - * ACE_DEBUG ((LM_DEBUG, "%s", st.c_str() )); + * ACE_DEBUG ((LM_DEBUG, "%s", st.c_str() )); * \endcode * * These usage examples were shown in $ACE_ROOT/tests/Stack_Trace_Test.cpp. * * @note The stack trace functionality was currently supported on platforms: - * - Any platform using glibc as its runtime library, or where ACE_HAS_EXECINFO_H is defined + * - Any platform using glibc as its runtime library, or where ACE_HAS_EXECINFO_H is defined * (this covers Linux and Mac) and gcc version >= 3.3. * - VxWorks, both kernel and RTP * - Solaris * - Windows 32 and 64 bit (Visual C++, excluding WinCE/mobile) * - * @note Since stack trace buffer size has limitation(@c ACE_STACK_TRACE_SYMBUFSIZ), you will not - * get a complete stack trace if @c ACE_STACK_TRACE_SYMBUFSIZ value is less than actual stack - * trace data length. To get a complete stack trace, you need set @c ACE_STACK_TRACE_SYMBUFSIZ - * with a larger value that is enough for the stack trace data in your @c config.h file + * @note Since stack trace buffer size has limitation(@c ACE_STACK_TRACE_SYMBUFSIZ), you will not + * get a complete stack trace if @c ACE_STACK_TRACE_SYMBUFSIZ value is less than actual stack + * trace data length. To get a complete stack trace, you need set @c ACE_STACK_TRACE_SYMBUFSIZ + * with a larger value that is enough for the stack trace data in your @c config.h file * and rebuild ACE. * - * @note Using ACE logging mechanism (%?) to log the stack trace also has ACE_MAXLOGMSGLEN size limitation. + * @note Using ACE logging mechanism (%?) to log the stack trace also has ACE_MAXLOGMSGLEN size limitation. * To get a complete stack trace, you could use different output method. Following is an example. * * \code @@ -75,8 +75,8 @@ public: /** * @brief Grab a snapshot of the current stack trace and hold it for later use. * - * @param starting_frame_offset offset into the array of frames to start printing; 0 is the - * platform-specific offset for the first frame, positive numbers give less frames, negative give + * @param starting_frame_offset offset into the array of frames to start printing; 0 is the + * platform-specific offset for the first frame, positive numbers give less frames, negative give * more frames * @param num_frames the number of stack frames to include (0 indicates platform-specific maximum) * diff --git a/dep/acelite/ace/Stats.cpp b/dep/acelite/ace/Stats.cpp index 840dc40e7f5..856d0e04db5 100644 --- a/dep/acelite/ace/Stats.cpp +++ b/dep/acelite/ace/Stats.cpp @@ -1,4 +1,4 @@ -// $Id: Stats.cpp 83735 2008-11-14 09:41:52Z johnnyw $ +// $Id: Stats.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Stats.h" @@ -9,7 +9,7 @@ #include "ace/OS_NS_stdio.h" #include "ace/OS_NS_string.h" -ACE_RCSID(ace, Stats, "$Id: Stats.cpp 83735 2008-11-14 09:41:52Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Strategies_T.h b/dep/acelite/ace/Strategies_T.h index f7c598aa9f1..25cd265f66c 100644 --- a/dep/acelite/ace/Strategies_T.h +++ b/dep/acelite/ace/Strategies_T.h @@ -4,7 +4,7 @@ /** * @file Strategies_T.h * - * $Id: Strategies_T.h 84316 2009-02-03 19:46:05Z johnnyw $ + * $Id: Strategies_T.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -24,7 +24,7 @@ #include "ace/Reactor.h" #include "ace/Thread_Manager.h" #include "ace/Connection_Recycling_Strategy.h" -#include "ace/Refcountable.h" +#include "ace/Refcountable_T.h" #include "ace/Hashable.h" #include "ace/Recyclable.h" #include "ace/Reverse_Lock_T.h" @@ -785,7 +785,7 @@ public: }; template <class T> -class ACE_Refcounted_Hash_Recyclable : public ACE_Refcountable, +class ACE_Refcounted_Hash_Recyclable : public ACE_Refcountable_T<ACE_Null_Mutex>, public ACE_Hashable, public ACE_Recyclable { diff --git a/dep/acelite/ace/Strategies_T.inl b/dep/acelite/ace/Strategies_T.inl index f3ae267bc13..b1347928686 100644 --- a/dep/acelite/ace/Strategies_T.inl +++ b/dep/acelite/ace/Strategies_T.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Strategies_T.inl 81503 2008-04-28 18:28:15Z johnnyw $ +// $Id: Strategies_T.inl 91688 2010-09-09 11:21:50Z johnnyw $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -183,7 +183,7 @@ ACE_Schedule_All_Threaded_Strategy<SVC_HANDLER>::ACE_Schedule_All_Threaded_Strat template <class T> ACE_INLINE ACE_Refcounted_Hash_Recyclable<T>::ACE_Refcounted_Hash_Recyclable (void) - : ACE_Refcountable (0), + : ACE_Refcountable_T<ACE_Null_Mutex> (0), ACE_Hashable (), ACE_Recyclable (ACE_RECYCLABLE_UNKNOWN), t_ () @@ -194,7 +194,7 @@ template <class T> ACE_INLINE ACE_Refcounted_Hash_Recyclable<T>::ACE_Refcounted_Hash_Recyclable (const T &t, long refcount, ACE_Recyclable_State state) - : ACE_Refcountable (refcount), + : ACE_Refcountable_T<ACE_Null_Mutex> (refcount), ACE_Hashable (), ACE_Recyclable (state), t_ (t) diff --git a/dep/acelite/ace/String_Base.h b/dep/acelite/ace/String_Base.h index 90d5554b3ed..128fe76a2b6 100644 --- a/dep/acelite/ace/String_Base.h +++ b/dep/acelite/ace/String_Base.h @@ -4,7 +4,7 @@ /** * @file String_Base.h * - * $Id: String_Base.h 88793 2010-02-01 17:50:34Z cleeland $ + * $Id: String_Base.h 92057 2010-09-27 14:52:00Z johnnyw $ * * @author Douglas C. Schmidt (schmidt@cs.wustl.edu) * @author Nanbor Wang <nanbor@cs.wustl.edu> @@ -99,7 +99,7 @@ public: * * @param s Zero terminated input string * @param the_allocator ACE_Allocator associated with string - * @param release Allocator responsible(true)/not reponsible(false) for + * @param release Allocator responsible(true)/not responsible(false) for * freeing memory. * @return ACE_String_Base containing const ACE_CHAR_T *s */ @@ -120,7 +120,7 @@ public: * @param s Non-zero terminated input string * @param len Length of non-zero terminated input string * @param the_allocator ACE_Allocator associated with string - * @param release Allocator responsible(true)/not reponsible(false) for + * @param release Allocator responsible(true)/not responsible(false) for * freeing memory. * @return ACE_String_Base containing const ACE_CHAR_T *s */ @@ -224,7 +224,7 @@ public: * used, and instead the internal buffer is set to NULL_String_. * * @param s Null terminated input string - * @param release Allocator responsible(true)/not reponsible(false) for + * @param release Allocator responsible(true)/not responsible(false) for * freeing memory. */ void set (const ACE_CHAR_T * s, bool release = true); @@ -244,7 +244,7 @@ public: * * @param s Non-zero terminated input string * @param len Length of input string 's' - * @param release Allocator responsible(true)/not reponsible(false) for + * @param release Allocator responsible(true)/not responsible(false) for * freeing memory. */ void set (const ACE_CHAR_T * s, size_type len, bool release); @@ -400,7 +400,7 @@ public: const ACE_CHAR_T *fast_rep (void) const; /** - * Same as STL String's <c_str> and <fast_rep>. + * Same as STL String's c_str() and fast_rep(). */ const ACE_CHAR_T *c_str (void) const; @@ -415,7 +415,7 @@ public: size_type strstr (const ACE_String_Base<ACE_CHAR_T> &s) const; /** - * Find <str> starting at pos. Returns the slot of the first + * Find @a str starting at pos. Returns the slot of the first * location that matches (will be >= pos), else @c npos. * * @param str Input ACE_String_Base string to search for in stored string. @@ -426,7 +426,7 @@ public: size_type find (const ACE_String_Base<ACE_CHAR_T> &str, size_type pos = 0) const; /** - * Find @a s starting at pos. Returns the slot of the first + * Find @a s starting at @a pos. Returns the slot of the first * location that matches (will be >= pos), else @c npos. * * @param s non-zero input string to search for in stored string. @@ -437,7 +437,7 @@ public: size_type find (const ACE_CHAR_T *s, size_type pos = 0) const; /** - * Find @a c starting at pos. Returns the slot of the first + * Find @a c starting at @a pos. Returns the slot of the first * location that matches (will be >= pos), else @c npos. * * @param c Input character to search for in stored string. @@ -448,7 +448,7 @@ public: size_type find (ACE_CHAR_T c, size_type pos = 0) const; /** - * Find @a c starting at pos (counting from the end). Returns the + * Find @a c starting at @a pos (counting from the end). Returns the * slot of the first location that matches, else @c npos. * * @param c Input character to search for in stored string. diff --git a/dep/acelite/ace/Svc_Conf.y b/dep/acelite/ace/Svc_Conf.y index cc46e2d2bb3..8ddc6a8d3a7 100644 --- a/dep/acelite/ace/Svc_Conf.y +++ b/dep/acelite/ace/Svc_Conf.y @@ -1,5 +1,5 @@ %{ -// $Id: Svc_Conf.y 82136 2008-06-23 15:28:40Z sma $ +// $Id: Svc_Conf.y 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Svc_Conf.h" @@ -10,10 +10,6 @@ #include "ace/Service_Types.h" #include "ace/ace_wchar.h" -ACE_RCSID (ace, - Svc_Conf_y, - "$Id: Svc_Conf.y 82136 2008-06-23 15:28:40Z sma $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Prototypes. diff --git a/dep/acelite/ace/Svc_Conf_Lexer.cpp b/dep/acelite/ace/Svc_Conf_Lexer.cpp index d83f23ede7e..95b2a2625a5 100644 --- a/dep/acelite/ace/Svc_Conf_Lexer.cpp +++ b/dep/acelite/ace/Svc_Conf_Lexer.cpp @@ -1,4 +1,4 @@ -// $Id: Svc_Conf_Lexer.cpp 81312 2008-04-09 21:01:34Z iliyan $ +// $Id: Svc_Conf_Lexer.cpp 92178 2010-10-08 07:44:20Z olli $ #include "ace/Svc_Conf_Lexer.h" #if (ACE_USES_CLASSIC_SVC_CONF == 1) @@ -239,9 +239,7 @@ ACE_Svc_Conf_Lexer::input (ACE_Svc_Conf_Param* param, if (errno == EINTR) { errno = 0; -#if !defined (ACE_LACKS_CLEARERR) ACE_OS::clearerr (param->source.file); -#endif /* !ACE_LACKS_CLEARERR */ } else { @@ -395,7 +393,7 @@ ACE_Svc_Conf_Lexer::scan (YYSTYPE* ace_yylval, if (current == buffer->index_ + 1) { - int lower = ACE_OS::ace_tolower ( + int const lower = ACE_OS::ace_tolower ( buffer->input_[current - 1]); if (c == ':' && (buffer->input_[current - 1] == '%' || diff --git a/dep/acelite/ace/Svc_Conf_y.cpp b/dep/acelite/ace/Svc_Conf_y.cpp index bf2b562b5a1..e14286699cd 100644 --- a/dep/acelite/ace/Svc_Conf_y.cpp +++ b/dep/acelite/ace/Svc_Conf_y.cpp @@ -1,3 +1,4 @@ +// $Id: Svc_Conf_y.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ /* A Bison parser, made by GNU Bison 2.3. */ /* Skeleton implementation for Bison's Yacc-like parsers in C @@ -104,7 +105,7 @@ /* Copy the first part of user declarations. */ -// $Id: Svc_Conf_y.cpp 82137 2008-06-23 15:30:20Z sma $ +// $Id: Svc_Conf_y.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Svc_Conf.h" @@ -115,9 +116,6 @@ #include "ace/Service_Types.h" #include "ace/ace_wchar.h" -ACE_RCSID (ace, - Svc_Conf_y, - "$Id: Svc_Conf_y.cpp 82137 2008-06-23 15:30:20Z sma $") ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Synch.h b/dep/acelite/ace/Synch.h index 4a1924a76df..13320937310 100644 --- a/dep/acelite/ace/Synch.h +++ b/dep/acelite/ace/Synch.h @@ -4,7 +4,7 @@ /** * @file Synch.h * - * $Id: Synch.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Synch.h 91688 2010-09-09 11:21:50Z johnnyw $ * * Wrapper Facades for various synchronization mechanisms. * @@ -47,18 +47,6 @@ #include "ace/Thread_Semaphore.h" #include "ace/TSS_Adapter.h" -// Include the templates here. -// FUZZ: disable check_for_synch_include -#include "ace/Synch_T.h" - -#if defined (ACE_LEGACY_MODE) -# include "ace/File_Lock.h" -# include "ace/Process_Semaphore.h" -# include "ace/Process_Mutex.h" -# include "ace/RW_Process_Mutex.h" -# include "ace/Test_and_Set.h" -#endif /* ACE_LEGACY_MODE */ - #endif /* DO_NOT_INCLUDE_SYNCH_H */ #include /**/ "ace/post.h" diff --git a/dep/acelite/ace/Synch_Options.cpp b/dep/acelite/ace/Synch_Options.cpp index dc857e289ec..dd204ce2630 100644 --- a/dep/acelite/ace/Synch_Options.cpp +++ b/dep/acelite/ace/Synch_Options.cpp @@ -1,12 +1,10 @@ +// $Id: Synch_Options.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Synch_Options.h" #include "ace/Global_Macros.h" #include "ace/config-all.h" -ACE_RCSID (ace, - Synch_Options, - "$Id: Synch_Options.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE (ACE_Synch_Options) diff --git a/dep/acelite/ace/Synch_T.cpp b/dep/acelite/ace/Synch_T.cpp deleted file mode 100644 index c66e02768d6..00000000000 --- a/dep/acelite/ace/Synch_T.cpp +++ /dev/null @@ -1,22 +0,0 @@ -// $Id: Synch_T.cpp 80826 2008-03-04 14:51:23Z wotte $ - -#ifndef ACE_SYNCH_T_CPP -#define ACE_SYNCH_T_CPP - -#include "ace/Thread.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -// FUZZ: disable check_for_synch_include -#include "ace/Synch_T.h" -#include "ace/Log_Msg.h" - -#include "ace/Lock_Adapter_T.cpp" -#include "ace/Reverse_Lock_T.cpp" -#include "ace/Guard_T.cpp" -#include "ace/TSS_T.cpp" -#include "ace/Condition_T.cpp" - -#endif /* ACE_SYNCH_T_CPP */ diff --git a/dep/acelite/ace/Synch_T.h b/dep/acelite/ace/Synch_T.h deleted file mode 100644 index e5349e0bd98..00000000000 --- a/dep/acelite/ace/Synch_T.h +++ /dev/null @@ -1,42 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file Synch_T.h - * - * $Id: Synch_T.h 80826 2008-03-04 14:51:23Z wotte $ - * - * @author Douglas C. Schmidt <schmidt@uci.edu> - */ -//============================================================================= - -#ifndef ACE_SYNCH_T_H -#define ACE_SYNCH_T_H -#include /**/ "ace/pre.h" - -#include /**/ "ace/config-all.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -// FUZZ: disable check_for_synch_include -#include "ace/Synch.h" - -#include "ace/Lock_Adapter_T.h" -#include "ace/Reverse_Lock_T.h" -#include "ace/Guard_T.h" -#include "ace/TSS_T.h" -#include "ace/Condition_T.h" -#include "ace/Synch_Traits.h" - -#if defined (ACE_TEMPLATES_REQUIRE_SOURCE) -#include "ace/Synch_T.cpp" -#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ - -#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA) -#pragma implementation ("Synch_T.cpp") -#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */ - -#include /**/ "ace/post.h" -#endif /* ACE_SYNCH_T_H */ diff --git a/dep/acelite/ace/Synch_Traits.h b/dep/acelite/ace/Synch_Traits.h index 80f23e948e9..785b9fd0eec 100644 --- a/dep/acelite/ace/Synch_Traits.h +++ b/dep/acelite/ace/Synch_Traits.h @@ -4,7 +4,7 @@ /** * @file Synch_Traits.h * - * $Id: Synch_Traits.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Synch_Traits.h 91626 2010-09-07 10:59:20Z johnnyw $ * * Moved from Synch.h. * @@ -38,8 +38,6 @@ class ACE_Condition_Thread_Mutex; class ACE_Condition_Recursive_Thread_Mutex; class ACE_Thread_Semaphore; -#if defined (ACE_HAS_TEMPLATE_TYPEDEFS) - /** * @class ACE_NULL_SYNCH * @@ -101,41 +99,6 @@ public: #define ACE_SYNCH_NULL_SEMAPHORE ACE_SYNCH::NULL_SEMAPHORE #define ACE_SYNCH_SEMAPHORE ACE_SYNCH::SEMAPHORE -#else /* !ACE_HAS_TEMPLATE_TYPEDEFS */ - -#if defined (ACE_HAS_OPTIMIZED_MESSAGE_QUEUE) -#define ACE_NULL_SYNCH ACE_Null_Mutex, ACE_Null_Condition, ACE_Null_Mutex -#define ACE_MT_SYNCH ACE_Thread_Mutex, ACE_Condition_Thread_Mutex, ACE_Thread_Semaphore -#else -#define ACE_NULL_SYNCH ACE_Null_Mutex, ACE_Null_Condition -#define ACE_MT_SYNCH ACE_Thread_Mutex, ACE_Condition_Thread_Mutex -#endif /* ACE_HAS_OPTIMIZED_MESSAGE_QUEUE */ - -#if defined (ACE_HAS_THREADS) - -#define ACE_SYNCH_MUTEX ACE_Thread_Mutex -#define ACE_SYNCH_NULL_MUTEX ACE_Null_Mutex -#define ACE_SYNCH_RECURSIVE_MUTEX ACE_Recursive_Thread_Mutex -#define ACE_SYNCH_RW_MUTEX ACE_RW_Thread_Mutex -#define ACE_SYNCH_CONDITION ACE_Condition_Thread_Mutex -#define ACE_SYNCH_RECURSIVE_CONDITION ACE_Condition_Recursive_Thread_Mutex -#define ACE_SYNCH_SEMAPHORE ACE_Thread_Semaphore -#define ACE_SYNCH_NULL_SEMAPHORE ACE_Null_Semaphore - -#else /* ACE_HAS_THREADS */ - -#define ACE_SYNCH_MUTEX ACE_Null_Mutex -#define ACE_SYNCH_NULL_MUTEX ACE_Null_Mutex -#define ACE_SYNCH_RECURSIVE_MUTEX ACE_Null_Mutex -#define ACE_SYNCH_RW_MUTEX ACE_Null_Mutex -#define ACE_SYNCH_CONDITION ACE_Null_Condition -#define ACE_SYNCH_RECURSIVE_CONDITION ACE_Null_Condition -#define ACE_SYNCH_SEMAPHORE ACE_Null_Semaphore -#define ACE_SYNCH_NULL_SEMAPHORE ACE_Null_Mutex - -#endif /* ACE_HAS_THREADS */ -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ - // These are available on *all* platforms #define ACE_SYNCH_PROCESS_SEMAPHORE ACE_Process_Semaphore #define ACE_SYNCH_PROCESS_MUTEX ACE_Process_Mutex diff --git a/dep/acelite/ace/System_Time.cpp b/dep/acelite/ace/System_Time.cpp index 26af1253512..1a270dc7f09 100644 --- a/dep/acelite/ace/System_Time.cpp +++ b/dep/acelite/ace/System_Time.cpp @@ -1,4 +1,4 @@ -// $Id: System_Time.cpp 84834 2009-03-16 12:28:51Z johnnyw $ +// $Id: System_Time.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/System_Time.h" #include "ace/MMAP_Memory_Pool.h" @@ -8,7 +8,7 @@ #include "ace/OS_NS_string.h" #include "ace/OS_NS_time.h" -ACE_RCSID(ace, System_Time, "$Id: System_Time.cpp 84834 2009-03-16 12:28:51Z johnnyw $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/TLI.cpp b/dep/acelite/ace/TLI.cpp index 16ab241747a..6198d29f88e 100644 --- a/dep/acelite/ace/TLI.cpp +++ b/dep/acelite/ace/TLI.cpp @@ -1,4 +1,4 @@ -// $Id: TLI.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: TLI.cpp 91286 2010-08-05 09:04:31Z johnnyw $ // Defines the member functions for the base class of the ACE_TLI // abstraction. @@ -11,7 +11,7 @@ #include "ace/OS_NS_sys_socket.h" #include "ace/Auto_Ptr.h" -ACE_RCSID(ace, TLI, "$Id: TLI.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if defined (ACE_HAS_TLI) diff --git a/dep/acelite/ace/TLI_Acceptor.cpp b/dep/acelite/ace/TLI_Acceptor.cpp index 1fe77d56e2e..0ed2f0046ff 100644 --- a/dep/acelite/ace/TLI_Acceptor.cpp +++ b/dep/acelite/ace/TLI_Acceptor.cpp @@ -1,4 +1,4 @@ -// $Id: TLI_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: TLI_Acceptor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/TLI_Acceptor.h" #include "ace/Log_Msg.h" @@ -6,7 +6,7 @@ #include "ace/OS_NS_string.h" #include "ace/OS_Memory.h" -ACE_RCSID(ace, TLI_Acceptor, "$Id: TLI_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $") + #if defined (ACE_HAS_TLI) diff --git a/dep/acelite/ace/TLI_Connector.cpp b/dep/acelite/ace/TLI_Connector.cpp index 0392105f213..1acb7ee29af 100644 --- a/dep/acelite/ace/TLI_Connector.cpp +++ b/dep/acelite/ace/TLI_Connector.cpp @@ -1,8 +1,8 @@ -// $Id: TLI_Connector.cpp 83735 2008-11-14 09:41:52Z johnnyw $ +// $Id: TLI_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/TLI_Connector.h" -ACE_RCSID(ace, TLI_Connector, "$Id: TLI_Connector.cpp 83735 2008-11-14 09:41:52Z johnnyw $") + #if defined (ACE_HAS_TLI) diff --git a/dep/acelite/ace/TLI_Stream.cpp b/dep/acelite/ace/TLI_Stream.cpp index cb15738c407..d12fcbe6cba 100644 --- a/dep/acelite/ace/TLI_Stream.cpp +++ b/dep/acelite/ace/TLI_Stream.cpp @@ -1,4 +1,4 @@ -// $Id: TLI_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: TLI_Stream.cpp 91286 2010-08-05 09:04:31Z johnnyw $ /* Defines the member functions for the base class of the ACE_TLI_Stream abstraction. */ @@ -7,7 +7,7 @@ #include "ace/ACE.h" #include "ace/OS_NS_unistd.h" -ACE_RCSID(ace, TLI_Stream, "$Id: TLI_Stream.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if defined (ACE_HAS_TLI) diff --git a/dep/acelite/ace/TP_Reactor.cpp b/dep/acelite/ace/TP_Reactor.cpp index b542460e8de..683dfd58622 100644 --- a/dep/acelite/ace/TP_Reactor.cpp +++ b/dep/acelite/ace/TP_Reactor.cpp @@ -1,4 +1,4 @@ -// $Id: TP_Reactor.cpp 85604 2009-06-11 13:26:00Z johnnyw $ +// $Id: TP_Reactor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/TP_Reactor.h" #include "ace/Thread.h" @@ -11,10 +11,6 @@ #include "ace/TP_Reactor.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - TP_Reactor, - "$Id: TP_Reactor.cpp 85604 2009-06-11 13:26:00Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_ALLOC_HOOK_DEFINE (ACE_TP_Reactor) diff --git a/dep/acelite/ace/TSS_Adapter.cpp b/dep/acelite/ace/TSS_Adapter.cpp index da6218dddb8..748ad1c13e6 100644 --- a/dep/acelite/ace/TSS_Adapter.cpp +++ b/dep/acelite/ace/TSS_Adapter.cpp @@ -1,7 +1,7 @@ /** * @file TSS_Adapter.cpp * - * $Id: TSS_Adapter.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: TSS_Adapter.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * Originally in Synch.cpp * @@ -10,7 +10,7 @@ #include "ace/TSS_Adapter.h" -ACE_RCSID(ace, TSS_Adapter, "$Id: TSS_Adapter.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/TSS_T.cpp b/dep/acelite/ace/TSS_T.cpp index 79603f8467c..9cc112f3ec7 100644 --- a/dep/acelite/ace/TSS_T.cpp +++ b/dep/acelite/ace/TSS_T.cpp @@ -1,4 +1,4 @@ -// $Id: TSS_T.cpp 91136 2010-07-20 08:56:37Z vzykov $ +// $Id: TSS_T.cpp 91693 2010-09-09 12:57:54Z johnnyw $ #ifndef ACE_TSS_T_CPP #define ACE_TSS_T_CPP @@ -28,7 +28,7 @@ ACE_ALLOC_HOOK_DEFINE(ACE_TSS) #if defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION)) # if defined (ACE_HAS_THR_C_DEST) -extern "C" void ACE_TSS_C_cleanup (void *); // defined in Synch.cpp +extern "C" void ACE_TSS_C_cleanup (void *); # endif /* ACE_HAS_THR_C_DEST */ #endif /* defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION)) */ @@ -48,7 +48,7 @@ ACE_TSS<TYPE>::~ACE_TSS (void) ACE_TSS<TYPE>::cleanup (ts_obj); # endif /* ACE_HAS_THR_C_DEST */ - ACE_OS::thr_key_detach (this->key_, this); + ACE_OS::thr_key_detach (this->key_); ACE_OS::thr_keyfree (this->key_); } #else // defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION)) @@ -83,7 +83,6 @@ template <class TYPE> void ACE_TSS<TYPE>::dump (void) const { #if defined (ACE_HAS_DUMP) -// ACE_TRACE ("ACE_TSS<TYPE>::dump"); #if defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION)) ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); this->keylock_.dump (); @@ -115,11 +114,11 @@ ACE_TSS<TYPE>::ts_init (void) { if (ACE_Thread::keycreate (&this->key_, #if defined (ACE_HAS_THR_C_DEST) - &ACE_TSS_C_cleanup, + &ACE_TSS_C_cleanup #else - &ACE_TSS<TYPE>::cleanup, + &ACE_TSS<TYPE>::cleanup #endif /* ACE_HAS_THR_C_DEST */ - (void *) this) != 0) + ) != 0) return -1; // Major problems, this should *never* happen! else { @@ -339,8 +338,6 @@ template <class ACE_LOCK> void ACE_TSS_Guard<ACE_LOCK>::dump (void) const { #if defined (ACE_HAS_DUMP) -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::dump"); - ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("key_ = %d\n"), this->key_)); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); @@ -350,8 +347,6 @@ ACE_TSS_Guard<ACE_LOCK>::dump (void) const template <class ACE_LOCK> void ACE_TSS_Guard<ACE_LOCK>::init_key (void) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::init_key"); - this->key_ = ACE_OS::NULL_key; ACE_Thread::keycreate (&this->key_, #if defined (ACE_HAS_THR_C_DEST) @@ -365,27 +360,24 @@ ACE_TSS_Guard<ACE_LOCK>::init_key (void) template <class ACE_LOCK> ACE_TSS_Guard<ACE_LOCK>::ACE_TSS_Guard (void) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::ACE_TSS_Guard"); this->init_key (); } template <class ACE_LOCK> int ACE_TSS_Guard<ACE_LOCK>::release (void) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::release"); - - ACE_Guard<ACE_LOCK> *guard = 0; + Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ return guard->release (); @@ -394,20 +386,18 @@ ACE_TSS_Guard<ACE_LOCK>::release (void) template <class ACE_LOCK> int ACE_TSS_Guard<ACE_LOCK>::remove (void) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::remove"); - - ACE_Guard<ACE_LOCK> *guard = 0; + Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ return guard->remove (); @@ -416,20 +406,18 @@ ACE_TSS_Guard<ACE_LOCK>::remove (void) template <class ACE_LOCK> ACE_TSS_Guard<ACE_LOCK>::~ACE_TSS_Guard (void) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::~ACE_TSS_Guard"); - - ACE_Guard<ACE_LOCK> *guard = 0; + Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ // Make sure that this pointer is NULL when we shut down... @@ -442,22 +430,17 @@ ACE_TSS_Guard<ACE_LOCK>::~ACE_TSS_Guard (void) template <class ACE_LOCK> void ACE_TSS_Guard<ACE_LOCK>::cleanup (void *ptr) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::cleanup"); - // Destructor releases lock. - delete (ACE_Guard<ACE_LOCK> *) ptr; + delete (Guard_Type *) ptr; } template <class ACE_LOCK> ACE_TSS_Guard<ACE_LOCK>::ACE_TSS_Guard (ACE_LOCK &lock, bool block) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::ACE_TSS_Guard"); - this->init_key (); - ACE_Guard<ACE_LOCK> *guard = 0; + Guard_Type *guard = 0; ACE_NEW (guard, - ACE_Guard<ACE_LOCK> (lock, - block)); + Guard_Type (lock, block)); #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; @@ -475,20 +458,18 @@ ACE_TSS_Guard<ACE_LOCK>::ACE_TSS_Guard (ACE_LOCK &lock, bool block) template <class ACE_LOCK> int ACE_TSS_Guard<ACE_LOCK>::acquire (void) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::acquire"); - - ACE_Guard<ACE_LOCK> *guard = 0; + Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ return guard->acquire (); @@ -497,20 +478,18 @@ ACE_TSS_Guard<ACE_LOCK>::acquire (void) template <class ACE_LOCK> int ACE_TSS_Guard<ACE_LOCK>::tryacquire (void) { -// ACE_TRACE ("ACE_TSS_Guard<ACE_LOCK>::tryacquire"); - - ACE_Guard<ACE_LOCK> *guard = 0; + Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ return guard->tryacquire (); @@ -520,44 +499,37 @@ template <class ACE_LOCK> ACE_TSS_Write_Guard<ACE_LOCK>::ACE_TSS_Write_Guard (ACE_LOCK &lock, bool block) { -// ACE_TRACE ("ACE_TSS_Write_Guard<ACE_LOCK>::ACE_TSS_Write_Guard"); - this->init_key (); - ACE_Guard<ACE_LOCK> *guard = 0; + Guard_Type *guard = 0; ACE_NEW (guard, - ACE_Write_Guard<ACE_LOCK> (lock, - block)); + Write_Guard_Type (lock, block)); #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; ACE_NEW (tss_adapter, ACE_TSS_Adapter ((void *) guard, ACE_TSS_Guard<ACE_LOCK>::cleanup)); - ACE_Thread::setspecific (this->key_, - (void *) tss_adapter); + ACE_Thread::setspecific (this->key_, (void *) tss_adapter); #else - ACE_Thread::setspecific (this->key_, - (void *) guard); + ACE_Thread::setspecific (this->key_, (void *) guard); #endif /* ACE_HAS_THR_C_DEST */ } template <class ACE_LOCK> int ACE_TSS_Write_Guard<ACE_LOCK>::acquire (void) { -// ACE_TRACE ("ACE_TSS_Write_Guard<ACE_LOCK>::acquire"); - - ACE_Write_Guard<ACE_LOCK> *guard = 0; + Write_Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Write_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Write_Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Write_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Write_Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ return guard->acquire_write (); @@ -566,20 +538,18 @@ ACE_TSS_Write_Guard<ACE_LOCK>::acquire (void) template <class ACE_LOCK> int ACE_TSS_Write_Guard<ACE_LOCK>::tryacquire (void) { -// ACE_TRACE ("ACE_TSS_Write_Guard<ACE_LOCK>::tryacquire"); - - ACE_Write_Guard<ACE_LOCK> *guard = 0; + Write_Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Write_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Write_Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Write_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Write_Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ return guard->tryacquire_write (); @@ -588,16 +558,12 @@ ACE_TSS_Write_Guard<ACE_LOCK>::tryacquire (void) template <class ACE_LOCK> int ACE_TSS_Write_Guard<ACE_LOCK>::acquire_write (void) { -// ACE_TRACE ("ACE_TSS_Write_Guard<ACE_LOCK>::acquire_write"); - return this->acquire (); } template <class ACE_LOCK> int ACE_TSS_Write_Guard<ACE_LOCK>::tryacquire_write (void) { -// ACE_TRACE ("ACE_TSS_Write_Guard<ACE_LOCK>::tryacquire_write"); - return this->tryacquire (); } @@ -605,7 +571,6 @@ template <class ACE_LOCK> void ACE_TSS_Write_Guard<ACE_LOCK>::dump (void) const { #if defined (ACE_HAS_DUMP) -// ACE_TRACE ("ACE_TSS_Write_Guard<ACE_LOCK>::dump"); ACE_TSS_Guard<ACE_LOCK>::dump (); #endif /* ACE_HAS_DUMP */ } @@ -613,13 +578,10 @@ ACE_TSS_Write_Guard<ACE_LOCK>::dump (void) const template <class ACE_LOCK> ACE_TSS_Read_Guard<ACE_LOCK>::ACE_TSS_Read_Guard (ACE_LOCK &lock, bool block) { -// ACE_TRACE ("ACE_TSS_Read_Guard<ACE_LOCK>::ACE_TSS_Read_Guard"); - this->init_key (); - ACE_Guard<ACE_LOCK> *guard = 0; + Guard_Type *guard = 0; ACE_NEW (guard, - ACE_Read_Guard<ACE_LOCK> (lock, - block)); + Read_Guard_Type (lock, block)); #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter; ACE_NEW (tss_adapter, @@ -636,20 +598,18 @@ ACE_TSS_Read_Guard<ACE_LOCK>::ACE_TSS_Read_Guard (ACE_LOCK &lock, bool block) template <class ACE_LOCK> int ACE_TSS_Read_Guard<ACE_LOCK>::acquire (void) { -// ACE_TRACE ("ACE_TSS_Read_Guard<ACE_LOCK>::acquire"); - - ACE_Read_Guard<ACE_LOCK> *guard = 0; + Read_Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Read_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Read_Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Read_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Read_Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ return guard->acquire_read (); @@ -658,20 +618,18 @@ ACE_TSS_Read_Guard<ACE_LOCK>::acquire (void) template <class ACE_LOCK> int ACE_TSS_Read_Guard<ACE_LOCK>::tryacquire (void) { -// ACE_TRACE ("ACE_TSS_Read_Guard<ACE_LOCK>::tryacquire"); - - ACE_Read_Guard<ACE_LOCK> *guard = 0; + Read_Guard_Type *guard = 0; #if defined (ACE_HAS_THR_C_DEST) ACE_TSS_Adapter *tss_adapter = 0; void *temp = tss_adapter; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); tss_adapter = static_cast <ACE_TSS_Adapter *> (temp); - guard = static_cast <ACE_Read_Guard<ACE_LOCK> *> (tss_adapter->ts_obj_); + guard = static_cast <Read_Guard_Type *> (tss_adapter->ts_obj_); #else void *temp = guard; // Need this temp to keep G++ from complaining. ACE_Thread::getspecific (this->key_, &temp); - guard = static_cast <ACE_Read_Guard<ACE_LOCK> *> (temp); + guard = static_cast <Read_Guard_Type *> (temp); #endif /* ACE_HAS_THR_C_DEST */ return guard->tryacquire_read (); @@ -680,16 +638,12 @@ ACE_TSS_Read_Guard<ACE_LOCK>::tryacquire (void) template <class ACE_LOCK> int ACE_TSS_Read_Guard<ACE_LOCK>::acquire_read (void) { -// ACE_TRACE ("ACE_TSS_Read_Guard<ACE_LOCK>::acquire_read"); - return this->acquire (); } template <class ACE_LOCK> int ACE_TSS_Read_Guard<ACE_LOCK>::tryacquire_read (void) { -// ACE_TRACE ("ACE_TSS_Read_Guard<ACE_LOCK>::tryacquire_read"); - return this->tryacquire (); } @@ -697,7 +651,6 @@ template <class ACE_LOCK> void ACE_TSS_Read_Guard<ACE_LOCK>::dump (void) const { #if defined (ACE_HAS_DUMP) -// ACE_TRACE ("ACE_TSS_Read_Guard<ACE_LOCK>::dump"); ACE_TSS_Guard<ACE_LOCK>::dump (); #endif /* ACE_HAS_DUMP */ } diff --git a/dep/acelite/ace/TSS_T.h b/dep/acelite/ace/TSS_T.h index d4fa8d52974..7c877545b01 100644 --- a/dep/acelite/ace/TSS_T.h +++ b/dep/acelite/ace/TSS_T.h @@ -4,7 +4,7 @@ /** * @file TSS_T.h * - * $Id: TSS_T.h 91124 2010-07-19 11:54:35Z vzykov $ + * $Id: TSS_T.h 91703 2010-09-10 11:05:38Z msmit $ * * Moved from Synch.h. * @@ -36,6 +36,7 @@ # endif /* ACE_HAS_THREADS && (ACE_HAS_THREAD_SPECIFIC_STORAGE || ACE_HAS_TSS_EMULATION) */ #include "ace/Thread_Mutex.h" +#include "ace/Copy_Disabled.h" ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -76,7 +77,7 @@ class ACE_TSS_Adapter; * */ template <class TYPE> -class ACE_TSS +class ACE_TSS : private ACE_Copy_Disabled { public: /** @@ -212,9 +213,6 @@ protected: int ts_value (TYPE *new_ts_obj) const; # endif /* ACE_HAS_THR_C_DEST */ #endif /* defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION)) */ - // = Disallow copying... - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS<TYPE> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_TSS (const ACE_TSS<TYPE> &)) }; /** diff --git a/dep/acelite/ace/TTY_IO.cpp b/dep/acelite/ace/TTY_IO.cpp index 6d5be6f2c38..696794ba57d 100644 --- a/dep/acelite/ace/TTY_IO.cpp +++ b/dep/acelite/ace/TTY_IO.cpp @@ -1,4 +1,4 @@ -// $Id: TTY_IO.cpp 86739 2009-09-21 07:33:22Z olli $ +// $Id: TTY_IO.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/TTY_IO.h" #include "ace/OS_NS_errno.h" @@ -11,10 +11,6 @@ # include <termio.h> #endif -ACE_RCSID (ace, - TTY_IO, - "$Id: TTY_IO.cpp 86739 2009-09-21 07:33:22Z olli $") - namespace { const char ACE_TTY_IO_NONE[] = "none"; diff --git a/dep/acelite/ace/Task.cpp b/dep/acelite/ace/Task.cpp index b3d8aad7a86..c570fc0dc89 100644 --- a/dep/acelite/ace/Task.cpp +++ b/dep/acelite/ace/Task.cpp @@ -1,4 +1,4 @@ -// $Id: Task.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Task.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Task.h" #include "ace/Module.h" @@ -8,10 +8,6 @@ #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Task, - "$Id: Task.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Task_Base::ACE_Task_Base (ACE_Thread_Manager *thr_man) diff --git a/dep/acelite/ace/Task.h b/dep/acelite/ace/Task.h index 08147a6459a..d6c0a68ee43 100644 --- a/dep/acelite/ace/Task.h +++ b/dep/acelite/ace/Task.h @@ -4,7 +4,7 @@ /** * @file Task.h * - * $Id: Task.h 91058 2010-07-12 08:20:09Z johnnyw $ + * $Id: Task.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -286,7 +286,6 @@ protected: /// Holds the thread ID of the last thread to exit svc() in this object. ACE_thread_t last_thread_id_; - private: // = Disallow these operations. diff --git a/dep/acelite/ace/Task_Ex_T.h b/dep/acelite/ace/Task_Ex_T.h index 00233d4e7d9..70a97247b04 100644 --- a/dep/acelite/ace/Task_Ex_T.h +++ b/dep/acelite/ace/Task_Ex_T.h @@ -4,7 +4,7 @@ /** * @file Task_Ex_T.h * - * $Id: Task_Ex_T.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Task_Ex_T.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Kobi Cohen-Arazi <kobi-co@barak-online.net> */ @@ -58,7 +58,8 @@ template <ACE_SYNCH_DECL> class ACE_Module; * code is in action. */ template <ACE_SYNCH_DECL, class ACE_MESSAGE_TYPE> -class ACE_Task_Ex : public ACE_Task_Base +class ACE_Task_Ex : public ACE_Task_Base, + private ACE_Copy_Disabled { public: friend class ACE_Module<ACE_SYNCH_USE>; @@ -125,12 +126,6 @@ public: // Should be protected: */ int put_next (ACE_MESSAGE_TYPE *msg, ACE_Time_Value *timeout = 0); - /** - * Tests whether we can enqueue a message without blocking. - * @deprecated This method is deprecated and will go away in the future. - */ - int can_put (ACE_MESSAGE_TYPE *); - // = ACE_Task utility routines to identify names et al. /// Return the name of the enclosing Module if there's one associated /// with the Task, else returns 0. @@ -179,12 +174,6 @@ public: // Should be protected: /// Declare the dynamic allocation hooks. ACE_ALLOC_HOOK_DECLARE; - -private: - - // = Disallow these operations. - ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Task_Ex<ACE_SYNCH_USE, ACE_MESSAGE_TYPE> &)) - ACE_UNIMPLEMENTED_FUNC (ACE_Task_Ex (const ACE_Task_Ex<ACE_SYNCH_USE, ACE_MESSAGE_TYPE> &)) }; ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Task_Ex_T.inl b/dep/acelite/ace/Task_Ex_T.inl index dd90bcd499a..9b5c864c6ad 100644 --- a/dep/acelite/ace/Task_Ex_T.inl +++ b/dep/acelite/ace/Task_Ex_T.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Task_Ex_T.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Task_Ex_T.inl 91688 2010-09-09 11:21:50Z johnnyw $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -23,13 +23,6 @@ ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::getq (ACE_MESSAGE_TYPE *&mb, ACE_Ti } template <ACE_SYNCH_DECL, class ACE_MESSAGE_TYPE> ACE_INLINE int -ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::can_put (ACE_MESSAGE_TYPE *) -{ - ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::can_put"); - ACE_NOTSUP_RETURN (-1); -} - -template <ACE_SYNCH_DECL, class ACE_MESSAGE_TYPE> ACE_INLINE int ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::putq (ACE_MESSAGE_TYPE *mb, ACE_Time_Value *tv) { ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::putq"); diff --git a/dep/acelite/ace/Task_T.h b/dep/acelite/ace/Task_T.h index d79a5fb0e46..1946f45cfe5 100644 --- a/dep/acelite/ace/Task_T.h +++ b/dep/acelite/ace/Task_T.h @@ -4,7 +4,7 @@ /** * @file Task_T.h * - * $Id: Task_T.h 91016 2010-07-06 11:29:50Z johnnyw $ + * $Id: Task_T.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -111,13 +111,6 @@ public: // Should be protected: */ int put_next (ACE_Message_Block *msg, ACE_Time_Value *timeout = 0); - /** - * Tests whether we can enqueue a message without blocking. - * - * @deprecated This method is deprecated and will go away in the future. - */ - int can_put (ACE_Message_Block *); - // = ACE_Task utility routines to identify names et al. /// Return the name of the enclosing Module if there's one associated /// with the Task, else returns 0. diff --git a/dep/acelite/ace/Task_T.inl b/dep/acelite/ace/Task_T.inl index a441ca9d0b3..5eda4c2bf90 100644 --- a/dep/acelite/ace/Task_T.inl +++ b/dep/acelite/ace/Task_T.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Task_T.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Task_T.inl 91688 2010-09-09 11:21:50Z johnnyw $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -23,13 +23,6 @@ ACE_Task<ACE_SYNCH_USE>::getq (ACE_Message_Block *&mb, ACE_Time_Value *tv) } template <ACE_SYNCH_DECL> ACE_INLINE int -ACE_Task<ACE_SYNCH_USE>::can_put (ACE_Message_Block *) -{ - ACE_TRACE ("ACE_Task<ACE_SYNCH_USE>::can_put"); - ACE_NOTSUP_RETURN (-1); -} - -template <ACE_SYNCH_DECL> ACE_INLINE int ACE_Task<ACE_SYNCH_USE>::putq (ACE_Message_Block *mb, ACE_Time_Value *tv) { ACE_TRACE ("ACE_Task<ACE_SYNCH_USE>::putq"); diff --git a/dep/acelite/ace/Thread.cpp b/dep/acelite/ace/Thread.cpp index 2fb009b67d2..952a51b6e69 100644 --- a/dep/acelite/ace/Thread.cpp +++ b/dep/acelite/ace/Thread.cpp @@ -1,11 +1,7 @@ -// $Id: Thread.cpp 84163 2009-01-15 07:57:27Z johnnyw $ +// $Id: Thread.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Thread.h" -ACE_RCSID(ace, - Thread, - "$Id: Thread.cpp 84163 2009-01-15 07:57:27Z johnnyw $") - #if !defined (__ACE_INLINE__) #include "ace/Thread.inl" #endif /* !defined (__ACE_INLINE__) */ diff --git a/dep/acelite/ace/Thread.h b/dep/acelite/ace/Thread.h index 4d44858fa5b..d654ffea534 100644 --- a/dep/acelite/ace/Thread.h +++ b/dep/acelite/ace/Thread.h @@ -4,7 +4,7 @@ /** * @file Thread.h * - * $Id: Thread.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Thread.h 92060 2010-09-27 18:08:48Z johnnyw $ * * @author Douglas Schmidt <schmidt@cs.wustl.edu> */ @@ -53,9 +53,9 @@ class ACE_Export ACE_Thread public: /** * Creates a new thread having @a flags attributes and running @a func - * with <args> (if <thread_adapter> is non-0 then @a func and <args> - * are ignored and are obtained from <thread_adapter>). <thr_id> - * and <t_handle> are set to the thread's ID and handle (?), + * with @a args (if @a thread_adapter is non-0 then @a func and @a args + * are ignored and are obtained from @a thread_adapter>. @a thr_id + * and @a t_handle are set to the thread's ID and handle (?), * respectively. The thread runs at @a priority priority (see * below). * @@ -70,15 +70,15 @@ public: * * By default, or if @a priority is set to * ACE_DEFAULT_THREAD_PRIORITY, an "appropriate" priority value for - * the given scheduling policy (specified in <flags}>, e.g., - * <THR_SCHED_DEFAULT>) is used. This value is calculated + * the given scheduling policy (specified in @a flags, e.g., + * @c THR_SCHED_DEFAULT is used. This value is calculated * dynamically, and is the median value between the minimum and * maximum priority values for the given policy. If an explicit * value is given, it is used. Note that actual priority values are - * EXTREMEMLY implementation-dependent, and are probably best + * EXTREMELY implementation-dependent, and are probably best * avoided. * - * Note that <thread_adapter> is always deleted when <spawn> + * Note that @a thread_adapter is always deleted when @a spawn * is called, so it must be allocated with global operator new. */ static int spawn (ACE_THR_FUNC func, @@ -120,7 +120,7 @@ public: * Spawn @a n new threads, which execute @a func with argument @a arg * (if @a thread_adapter is non-0 then @a func and @a args are ignored * and are obtained from @a thread_adapter). The thread_ids of - * successfully spawned threads will be placed into the <thread_ids> + * successfully spawned threads will be placed into the @a thread_ids * buffer (which must be the same size as @a n). If @a stack != 0 it * is assumed to be an array of @a n pointers to the base of the * stacks to use for the threads being spawned. If @a stack_size != @@ -226,11 +226,11 @@ public: */ static int keycreate (ACE_thread_key_t *keyp, #if defined (ACE_HAS_THR_C_DEST) - ACE_THR_C_DEST destructor, + ACE_THR_C_DEST destructor #else - ACE_THR_DEST destructor, + ACE_THR_DEST destructor #endif /* ACE_HAS_THR_C_DEST */ - void * = 0); + ); /// Free up the key so that other threads can reuse it. static int keyfree (ACE_thread_key_t key); diff --git a/dep/acelite/ace/Thread.inl b/dep/acelite/ace/Thread.inl index 87e47e13580..b1fd120a261 100644 --- a/dep/acelite/ace/Thread.inl +++ b/dep/acelite/ace/Thread.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Thread.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Thread.inl 91693 2010-09-09 12:57:54Z johnnyw $ #include "ace/OS_NS_string.h" @@ -13,14 +13,14 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE int ACE_Thread::keycreate (ACE_thread_key_t *keyp, #if defined (ACE_HAS_THR_C_DEST) - ACE_THR_C_DEST destructor, + ACE_THR_C_DEST destructor #else - ACE_THR_DEST destructor, + ACE_THR_DEST destructor #endif /* ACE_HAS_THR_C_DEST */ - void *inst) + ) { // ACE_TRACE ("ACE_Thread::keycreate"); - return ACE_OS::thr_keycreate (keyp, destructor, inst); + return ACE_OS::thr_keycreate (keyp, destructor); } // Free up the key so that other threads can reuse it. diff --git a/dep/acelite/ace/Thread_Adapter.cpp b/dep/acelite/ace/Thread_Adapter.cpp index 9dbad0580b8..754691857a0 100644 --- a/dep/acelite/ace/Thread_Adapter.cpp +++ b/dep/acelite/ace/Thread_Adapter.cpp @@ -1,4 +1,4 @@ -// $Id: Thread_Adapter.cpp 81239 2008-04-04 22:28:48Z iliyan $ +// $Id: Thread_Adapter.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Thread_Adapter.h" #include "ace/Thread_Manager.h" @@ -7,10 +7,6 @@ #include "ace/Object_Manager_Base.h" #include "ace/Service_Config.h" -ACE_RCSID (ace, - Thread_Adapter, - "$Id: Thread_Adapter.cpp 81239 2008-04-04 22:28:48Z iliyan $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/Thread_Adapter.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/Thread_Adapter.h b/dep/acelite/ace/Thread_Adapter.h index 8f1f259eff3..d7ab4056de4 100644 --- a/dep/acelite/ace/Thread_Adapter.h +++ b/dep/acelite/ace/Thread_Adapter.h @@ -4,7 +4,7 @@ /** * @file Thread_Adapter.h * - * $Id: Thread_Adapter.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Thread_Adapter.h 92060 2010-09-27 18:08:48Z johnnyw $ * * @author Carlos O'Ryan <coryan@uci.edu> */ @@ -69,21 +69,17 @@ public: ACE_Thread_Manager *thr_mgr (void); protected: - /// Ensure that this object must be allocated on the heap. ~ACE_Thread_Adapter (void); private: - /// Called by invoke, mainly here to separate the SEH stuff because /// SEH on Win32 doesn't compile with local vars with destructors. virtual ACE_THR_FUNC_RETURN invoke_i (void); private: - /// Optional thread manager. ACE_Thread_Manager *thr_mgr_; - }; ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Thread_Control.cpp b/dep/acelite/ace/Thread_Control.cpp index 51d0f4c18eb..2f38849e339 100644 --- a/dep/acelite/ace/Thread_Control.cpp +++ b/dep/acelite/ace/Thread_Control.cpp @@ -1,19 +1,8 @@ -// $Id: Thread_Control.cpp 80826 2008-03-04 14:51:23Z wotte $ - -// <HACK ON> -#include "ace/config-all.h" -#if defined (ACE_LEGACY_MODE) -// This silly include breaks a cycle when compiling in backwards -// compatibility mode -# include "ace/Thread_Exit.h" -#endif /* ACE_LEGACY_MODE */ -// </HACK OFF> +// $Id: Thread_Control.cpp 91688 2010-09-09 11:21:50Z johnnyw $ #include "ace/Thread_Control.h" #include "ace/Thread_Manager.h" -ACE_RCSID(ace, Thread_Control, "$Id: Thread_Control.cpp 80826 2008-03-04 14:51:23Z wotte $") - #if !defined (ACE_HAS_INLINED_OSCALLS) # include "ace/Thread_Control.inl" #endif /* ACE_HAS_INLINED_OSCALLS */ diff --git a/dep/acelite/ace/Thread_Control.inl b/dep/acelite/ace/Thread_Control.inl index 6ebd3ac2c56..0f8e0c9ec96 100644 --- a/dep/acelite/ace/Thread_Control.inl +++ b/dep/acelite/ace/Thread_Control.inl @@ -1,6 +1,7 @@ // -*- C++ -*- -// -// $Id: Thread_Control.inl 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Thread_Control.inl 91730 2010-09-13 09:31:11Z johnnyw $ + +#include "ace/OS_NS_macros.h" ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Thread_Exit.cpp b/dep/acelite/ace/Thread_Exit.cpp index cc6a8620cbe..b85d48d1701 100644 --- a/dep/acelite/ace/Thread_Exit.cpp +++ b/dep/acelite/ace/Thread_Exit.cpp @@ -1,11 +1,11 @@ -// $Id: Thread_Exit.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Thread_Exit.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Thread_Exit.h" #include "ace/Managed_Object.h" #include "ace/Thread_Manager.h" #include "ace/Guard_T.h" -ACE_RCSID(ace, Thread_Exit, "$Id: Thread_Exit.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Thread_Hook.cpp b/dep/acelite/ace/Thread_Hook.cpp index 79d937f9ff5..1121e4b44ae 100644 --- a/dep/acelite/ace/Thread_Hook.cpp +++ b/dep/acelite/ace/Thread_Hook.cpp @@ -1,9 +1,9 @@ -// $Id: Thread_Hook.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Thread_Hook.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Thread_Hook.h" #include "ace/Object_Manager_Base.h" -ACE_RCSID(ace, Thread_Hook, "$Id: Thread_Hook.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Thread_Manager.cpp b/dep/acelite/ace/Thread_Manager.cpp index 4737dcbfaad..587636b6776 100644 --- a/dep/acelite/ace/Thread_Manager.cpp +++ b/dep/acelite/ace/Thread_Manager.cpp @@ -1,4 +1,4 @@ -// $Id: Thread_Manager.cpp 85341 2009-05-14 11:07:37Z johnnyw $ +// $Id: Thread_Manager.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/TSS_T.h" #include "ace/Thread_Manager.h" @@ -15,10 +15,6 @@ #include "ace/Thread_Manager.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Thread_Manager, - "$Id: Thread_Manager.cpp 85341 2009-05-14 11:07:37Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_At_Thread_Exit::~ACE_At_Thread_Exit (void) diff --git a/dep/acelite/ace/Thread_Mutex.cpp b/dep/acelite/ace/Thread_Mutex.cpp index 4ebdc412e6f..a56ef66e379 100644 --- a/dep/acelite/ace/Thread_Mutex.cpp +++ b/dep/acelite/ace/Thread_Mutex.cpp @@ -1,7 +1,7 @@ /** * @file Thread_Mutex.cpp * - * $Id: Thread_Mutex.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Thread_Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * Originally in Synch.cpp * @@ -19,7 +19,7 @@ #include "ace/Log_Msg.h" #include "ace/Malloc_T.h" -ACE_RCSID(ace, Thread_Mutex, "$Id: Thread_Mutex.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Thread_Mutex.h b/dep/acelite/ace/Thread_Mutex.h index fd8f3959587..7bda270e5d3 100644 --- a/dep/acelite/ace/Thread_Mutex.h +++ b/dep/acelite/ace/Thread_Mutex.h @@ -4,7 +4,7 @@ /** * @file Thread_Mutex.h * - * $Id: Thread_Mutex.h 89127 2010-02-22 19:58:18Z schmidt $ + * $Id: Thread_Mutex.h 92060 2010-09-27 18:08:48Z johnnyw $ * * Moved from Synch.h. * @@ -78,7 +78,7 @@ public: int acquire (ACE_Time_Value &tv); /** - * If @a tv == 0 the call <acquire()> directly. Otherwise, Block the + * If @a tv == 0 the call acquire() directly. Otherwise, Block the * thread until we acquire the mutex or until @a tv times out, in * which case -1 is returned with @c errno == @c ETIME. Note that * @a tv is assumed to be in "absolute" rather than "relative" time. diff --git a/dep/acelite/ace/Thread_Mutex.inl b/dep/acelite/ace/Thread_Mutex.inl index d52fce904d0..dfd2d16007a 100644 --- a/dep/acelite/ace/Thread_Mutex.inl +++ b/dep/acelite/ace/Thread_Mutex.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Thread_Mutex.inl 89127 2010-02-22 19:58:18Z schmidt $ +// $Id: Thread_Mutex.inl 91813 2010-09-17 07:52:52Z johnnyw $ ACE_BEGIN_VERSIONED_NAMESPACE_DECL @@ -12,7 +12,7 @@ ACE_Thread_Mutex::lock (void) const } ACE_INLINE ACE_thread_mutex_t & -ACE_Thread_Mutex::lock (void) +ACE_Thread_Mutex::lock (void) { // ACE_TRACE ("ACE_Thread_Mutex::lock"); return this->lock_; diff --git a/dep/acelite/ace/Thread_Semaphore.cpp b/dep/acelite/ace/Thread_Semaphore.cpp index 39b28931db5..0affc662b66 100644 --- a/dep/acelite/ace/Thread_Semaphore.cpp +++ b/dep/acelite/ace/Thread_Semaphore.cpp @@ -1,7 +1,7 @@ /** * @file Thread_Semaphore.cpp * - * $Id: Thread_Semaphore.cpp 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Thread_Semaphore.cpp 91286 2010-08-05 09:04:31Z johnnyw $ * * Originally in Synch.cpp * @@ -18,7 +18,7 @@ #include "ace/ACE.h" -ACE_RCSID(ace, Thread_Semaphore, "$Id: Thread_Semaphore.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Throughput_Stats.cpp b/dep/acelite/ace/Throughput_Stats.cpp index 6e667299729..87a63c715ef 100644 --- a/dep/acelite/ace/Throughput_Stats.cpp +++ b/dep/acelite/ace/Throughput_Stats.cpp @@ -1,4 +1,4 @@ -// $Id: Throughput_Stats.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Throughput_Stats.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #include "ace/Throughput_Stats.h" @@ -7,22 +7,13 @@ #include "ace/High_Res_Timer.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, Throughput_Stats, "$Id: Throughput_Stats.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Throughput_Stats::ACE_Throughput_Stats (void) : ACE_Basic_Stats () , throughput_last_ (0) -#if 0 - // @@TODO: This is what I really wanted to compute, but it just - // does not work. - , throughput_sum_x_ (0) - , throughput_sum_x2_ (0) - , throughput_sum_y_ (0) - , throughput_sum_y2_ (0) - , throughput_sum_xy_ (0) -#endif /* 0 */ { } @@ -34,35 +25,11 @@ ACE_Throughput_Stats::sample (ACE_UINT64 throughput, if (this->samples_count () == 1u) { - this->throughput_last_ = throughput; -#if 0 - // @@TODO: This is what I really wanted to compute, but it just - // does not work. - this->throughput_sum_y_ = this->samples_count_; - this->throughput_sum_y2_ = this->samples_count_ * this->samples_count_; - this->throughput_sum_x_ = throughput; - this->throughput_sum_x2_ = throughput * throughput; - this->throughput_sum_xy_ = throughput * this->samples_count_; - - ACE_OS::printf ("%f %qu\n", throughput / 400000000.0, this->samples_count_); -#endif /* 0 */ } else { this->throughput_last_ = throughput; - -#if 0 - // @@TODO: This is what I really wanted to compute, but it just - // does not work. - this->throughput_sum_y_ += this->samples_count_; - this->throughput_sum_y2_ += this->samples_count_ * this->samples_count_; - this->throughput_sum_x_ += throughput; - this->throughput_sum_x2_ += throughput * throughput; - this->throughput_sum_xy_ += throughput * this->samples_count_; - - ACE_OS::printf ("%f %qu\n", throughput / 400000000.0, this->samples_count_); -#endif /* 0 */ } } @@ -77,32 +44,11 @@ ACE_Throughput_Stats::accumulate (const ACE_Throughput_Stats &rhs) if (this->samples_count () == 0u) { this->throughput_last_ = rhs.throughput_last_; -#if 0 - // @@TODO: This is what I really wanted to compute, but it just - // does not work. - this->throughput_sum_x_ = rhs.throughput_sum_x_; - this->throughput_sum_x2_ = rhs.throughput_sum_x2_; - this->throughput_sum_y_ = rhs.throughput_sum_y_; - this->throughput_sum_y2_ = rhs.throughput_sum_y2_; - this->throughput_sum_xy_ = rhs.throughput_sum_xy_; -#endif /* 0 */ - return; } - if (this->throughput_last_ < rhs.throughput_last_) this->throughput_last_ = rhs.throughput_last_; - -#if 0 - // @@TODO: This is what I really wanted to compute, but it just - // does not work. - this->throughput_sum_x_ += rhs.throughput_sum_x_; - this->throughput_sum_x2_ += rhs.throughput_sum_x2_; - this->throughput_sum_y_ += rhs.throughput_sum_y_; - this->throughput_sum_y2_ += rhs.throughput_sum_y2_; - this->throughput_sum_xy_ += rhs.throughput_sum_xy_; -#endif /* 0 */ } void @@ -121,51 +67,6 @@ ACE_Throughput_Stats::dump_results (const ACE_TCHAR* msg, ACE_Throughput_Stats::dump_throughput (msg, sf, this->throughput_last_, this->samples_count ()); - -#if 0 - // @@TODO: This is what I really wanted to generate, but it just - // doesn't work. - double t_sum_x = - ACE_CU64_TO_CU32 (this->throughput_sum_x_);// / sf); - //t_sum_x /= 1000000.0; - double t_sum_y = - ACE_CU64_TO_CU32 (this->throughput_sum_y_); - double t_sum_x2 = - ACE_CU64_TO_CU32 (this->throughput_sum_x2_);// / (sf*sf)); - //t_sum_x2 /= 1000000.0; - //t_sum_x2 /= 1000000.0; - double t_sum_y2 = - ACE_CU64_TO_CU32 (this->throughput_sum_y2_); - double t_sum_xy = - ACE_CU64_TO_CU32 (this->throughput_sum_xy_);// / sf); - //t_sum_xy /= 1000000.0; - double t_avgx = t_sum_x / this->samples_count (); - double t_avgy = t_sum_y / this->samples_count (); - - double t_a = - (this->samples_count () * t_sum_xy - t_sum_x * t_sum_y) - / (this->samples_count () * t_sum_x2 - t_sum_x * t_sum_x); - double t_b = (t_avgy - t_a * t_avgx); - - t_a *= 1000000.0; - - double d_r = - (t_sum_xy - t_avgx * t_sum_y - t_avgy * t_sum_x - + this->samples_count () * t_avgx * t_avgy); - double n_r = - (t_sum_x2 - - this->samples_count () * t_avgx * t_avgx) - * (t_sum_y2 - - this->samples_count () * t_avgy * t_avgy); - double t_r = d_r * d_r / n_r; - - // ACE_DEBUG ((LM_DEBUG, - // "%s throughput: %.2f/%.2f/%.2f/%.6f/%.2f (avg/a/b/r/elapsed)\n", - // msg, t_avg, t_a, t_b, t_r, seconds)); - // ACE_DEBUG ((LM_DEBUG, - // "%s data: %.2f/%.2f/%.2f/%.6f/%.2f (x/x2/y/y2/xy)\n", - // msg, t_sum_x, t_sum_x2, t_sum_y, t_sum_y2, t_sum_xy)); -#endif } void diff --git a/dep/acelite/ace/Throughput_Stats.h b/dep/acelite/ace/Throughput_Stats.h index c306c856c5e..f9a97122aae 100644 --- a/dep/acelite/ace/Throughput_Stats.h +++ b/dep/acelite/ace/Throughput_Stats.h @@ -4,7 +4,7 @@ /** * @file Throughput_Stats.h * - * $Id: Throughput_Stats.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Throughput_Stats.h 92069 2010-09-28 11:38:59Z johnnyw $ * * @author David L. Levine */ @@ -65,18 +65,6 @@ public: private: /// The last throughput measurement. ACE_UINT64 throughput_last_; - -#if 0 - /// These are the fields that we should keep to perform linear - /// regression - //@{ - ///@} - ACE_UINT64 throughput_sum_x_; - ACE_UINT64 throughput_sum_x2_; - ACE_UINT64 throughput_sum_y_; - ACE_UINT64 throughput_sum_y2_; - ACE_UINT64 throughput_sum_xy_; -#endif /* 0 */ }; ACE_END_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Time_Value.cpp b/dep/acelite/ace/Time_Value.cpp index af07c54422a..045df4d4e66 100644 --- a/dep/acelite/ace/Time_Value.cpp +++ b/dep/acelite/ace/Time_Value.cpp @@ -1,8 +1,6 @@ -#include "ace/Time_Value.h" +// $Id: Time_Value.cpp 92069 2010-09-28 11:38:59Z johnnyw $ -ACE_RCSID (ace, - Time_Value, - "$Id: Time_Value.cpp 89791 2010-04-07 14:36:21Z schmidt $") +#include "ace/Time_Value.h" #if !defined (__ACE_INLINE__) #include "ace/Time_Value.inl" @@ -156,15 +154,6 @@ ACE_Time_Value::operator FILETIME () const void ACE_Time_Value::dump (void) const { -#if defined (ACE_HAS_DUMP) - // ACE_OS_TRACE ("ACE_Time_Value::dump"); -#if 0 - ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\ntv_sec_ = %d"), this->tv_.tv_sec)); - ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\ntv_usec_ = %d\n"), this->tv_.tv_usec)); - ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); -#endif /* 0 */ -#endif /* ACE_HAS_DUMP */ } void diff --git a/dep/acelite/ace/Timeprobe.cpp b/dep/acelite/ace/Timeprobe.cpp index 1fe8459ed8d..69a2d0080e0 100644 --- a/dep/acelite/ace/Timeprobe.cpp +++ b/dep/acelite/ace/Timeprobe.cpp @@ -1,8 +1,8 @@ -// $Id: Timeprobe.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Timeprobe.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/config-all.h" -ACE_RCSID(ace, Timeprobe, "$Id: Timeprobe.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if defined (ACE_COMPILE_TIMEPROBES) diff --git a/dep/acelite/ace/Timer_Hash_T.cpp b/dep/acelite/ace/Timer_Hash_T.cpp index d8153c1eee2..3bc82b8a194 100644 --- a/dep/acelite/ace/Timer_Hash_T.cpp +++ b/dep/acelite/ace/Timer_Hash_T.cpp @@ -1,4 +1,4 @@ -// $Id: Timer_Hash_T.cpp 89254 2010-02-25 22:10:39Z cleeland $ +// $Id: Timer_Hash_T.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #ifndef ACE_TIMER_HASH_T_CPP #define ACE_TIMER_HASH_T_CPP @@ -13,10 +13,6 @@ #include "ace/Guard_T.h" #include "ace/Log_Msg.h" -ACE_RCSID(ace, - Timer_Hash_T, - "$Id: Timer_Hash_T.cpp 89254 2010-02-25 22:10:39Z cleeland $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL template <class TYPE> @@ -423,14 +419,6 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::reschedule ( expired->get_interval ()); ACE_ASSERT (h->orig_id_ != -1); -#if 0 - ACE_DEBUG ((LM_DEBUG, "Hash::reschedule() resets %d in slot %d where it's id is %d and token is %x\n", - expired->get_timer_value ().msec (), - h->pos_, - h->orig_id_, - h)); -#endif - // Since schedule() above will allocate a new node // then here schedule <expired> for deletion. Don't call // this->free_node() because that will invalidate <h> @@ -474,14 +462,6 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::schedule_i ( interval); ACE_ASSERT (h->orig_id_ != -1); -#if 0 - ACE_DEBUG ((LM_DEBUG, "Hash::schedule() placing %d in slot %d where it's id is %d and token is %x\n", - future_time.msec (), - position, - h->orig_id_, - h)); -#endif - if (this->table_[this->earliest_position_]->is_empty () || this->table_[position]->earliest_time () < this->table_[this->earliest_position_]->earliest_time ()) @@ -810,14 +790,6 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::expire (const ACE_Time_Value ACE_ASSERT (h->pos_ == i); -#if 0 - ACE_DEBUG ((LM_DEBUG, "Hash::expire() expiring %d in slot %d where it's id is %d and token is %x\n", - expired->get_timer_value ().msec (), - h->pos_, - h->orig_id_, - h)); -#endif - // Check if this is an interval timer. if (expired->get_interval () > ACE_Time_Value::zero) { diff --git a/dep/acelite/ace/Timer_Heap_T.cpp b/dep/acelite/ace/Timer_Heap_T.cpp index 75ec9ef70fc..1343915030c 100644 --- a/dep/acelite/ace/Timer_Heap_T.cpp +++ b/dep/acelite/ace/Timer_Heap_T.cpp @@ -1,4 +1,4 @@ -// $Id: Timer_Heap_T.cpp 84962 2009-03-24 15:16:25Z johnnyw $ +// $Id: Timer_Heap_T.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #ifndef ACE_TIMER_HEAP_T_CPP #define ACE_TIMER_HEAP_T_CPP @@ -522,21 +522,7 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::grow_heap (void) // All the containers will double in size from max_size_. size_t new_size = this->max_size_ * 2; -#if 0 - // Yikes - there's no way to flag a failure of going out of range of - // a 'long' - this is a problem that should be addressed at some point. - if (new_size > ACE_Numeric_Limits<long>::max ()) - new_size = ACE_Numeric_Limits<long>::max (); - - if (new_size <= this->max_size_) // We are already at the limit - { - errno = ENOMEM; - return -1; - } -#endif /* 0 */ - - // First grow the heap itself. - + // First grow the heap itself. ACE_Timer_Node_T<TYPE> **new_heap = 0; ACE_NEW (new_heap, diff --git a/dep/acelite/ace/Timer_List_T.cpp b/dep/acelite/ace/Timer_List_T.cpp index c3b837bb289..3e4ba78f521 100644 --- a/dep/acelite/ace/Timer_List_T.cpp +++ b/dep/acelite/ace/Timer_List_T.cpp @@ -1,4 +1,4 @@ -// $Id: Timer_List_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Timer_List_T.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #ifndef ACE_TIMER_LIST_T_C #define ACE_TIMER_LIST_T_C @@ -11,7 +11,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -ACE_RCSID(ace, Timer_List_T, "$Id: Timer_List_T.cpp 80826 2008-03-04 14:51:23Z wotte $") + // Default Constructor diff --git a/dep/acelite/ace/Timer_Queue_Adapters.cpp b/dep/acelite/ace/Timer_Queue_Adapters.cpp index 54e8f8ade5f..190d11c4f08 100644 --- a/dep/acelite/ace/Timer_Queue_Adapters.cpp +++ b/dep/acelite/ace/Timer_Queue_Adapters.cpp @@ -1,4 +1,4 @@ -// $Id: Timer_Queue_Adapters.cpp 89482 2010-03-15 07:58:50Z johnnyw $ +// $Id: Timer_Queue_Adapters.cpp 92285 2010-10-20 16:34:57Z shuston $ #ifndef ACE_TIMER_QUEUE_ADAPTERS_CPP #define ACE_TIMER_QUEUE_ADAPTERS_CPP @@ -17,6 +17,7 @@ # include "ace/Timer_Queue_Adapters.inl" # endif /* __ACE_INLINE__ */ +#include "ace/Reverse_Lock_T.h" #include "ace/Signal.h" #include "ace/OS_NS_unistd.h" #include "ace/OS_NS_sys_time.h" @@ -278,8 +279,15 @@ ACE_Thread_Timer_Queue_Adapter<TQ, TYPE>::svc (void) } } - // Expire timers anyway, at worst this is a no-op. - this->timer_queue_->expire (); + // Expire timers anyway, at worst this is a no-op. Release the lock + // while dispatching; the timer queue has its own lock to protect + // itself. + { + ACE_Reverse_Lock<ACE_SYNCH_RECURSIVE_MUTEX> rel (this->mutex_); + ACE_GUARD_RETURN (ACE_Reverse_Lock<ACE_SYNCH_RECURSIVE_MUTEX>, + rmon, rel, -1); + this->timer_queue_->expire (); + } } // Thread cancellation point, if ACE supports it. diff --git a/dep/acelite/ace/Timer_Queue_T.cpp b/dep/acelite/ace/Timer_Queue_T.cpp index 258e68edd55..838d4422bcf 100644 --- a/dep/acelite/ace/Timer_Queue_T.cpp +++ b/dep/acelite/ace/Timer_Queue_T.cpp @@ -1,4 +1,4 @@ -// $Id: Timer_Queue_T.cpp 89254 2010-02-25 22:10:39Z cleeland $ +// $Id: Timer_Queue_T.cpp 92285 2010-10-20 16:34:57Z shuston $ #ifndef ACE_TIMER_QUEUE_T_CPP #define ACE_TIMER_QUEUE_T_CPP @@ -18,6 +18,7 @@ #include "ace/Guard_T.h" #include "ace/Log_Msg.h" #include "ace/Reactor_Timer_Interface.h" +#include "ace/Reverse_Lock_T.h" #include "ace/Null_Mutex.h" #include "ace/OS_NS_sys_time.h" @@ -267,6 +268,9 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::expire (const ACE_Time_Value &cur_ti while ((result = this->dispatch_info_i (cur_time, info)) != 0) { + ACE_MT (ACE_Reverse_Lock<ACE_LOCK> rev_lk(this->mutex_)); + ACE_MT (ACE_GUARD_RETURN (ACE_Reverse_Lock<ACE_LOCK>, rmon, rev_lk, -1)); + const void *upcall_act = 0; this->preinvoke (info, cur_time, upcall_act); diff --git a/dep/acelite/ace/Token.cpp b/dep/acelite/ace/Token.cpp index 9993261be17..c63370fa534 100644 --- a/dep/acelite/ace/Token.cpp +++ b/dep/acelite/ace/Token.cpp @@ -1,4 +1,4 @@ -// $Id: Token.cpp 83735 2008-11-14 09:41:52Z johnnyw $ +// $Id: Token.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Token.h" @@ -6,7 +6,7 @@ # include "ace/Token.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Token, "$Id: Token.cpp 83735 2008-11-14 09:41:52Z johnnyw $") + #if defined (ACE_HAS_THREADS) diff --git a/dep/acelite/ace/Token_Collection.cpp b/dep/acelite/ace/Token_Collection.cpp index 23a5813c958..4e124b89257 100644 --- a/dep/acelite/ace/Token_Collection.cpp +++ b/dep/acelite/ace/Token_Collection.cpp @@ -1,3 +1,4 @@ +// $Id: Token_Collection.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/Token_Collection.h" #if defined (ACE_HAS_TOKENS_LIBRARY) @@ -7,10 +8,6 @@ #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Token_Collection, - "$Id: Token_Collection.cpp 80826 2008-03-04 14:51:23Z wotte $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Token_Collection::ACE_Token_Collection (bool debug, diff --git a/dep/acelite/ace/Token_Collection.h b/dep/acelite/ace/Token_Collection.h index 16a9bb412b0..3db64182a40 100644 --- a/dep/acelite/ace/Token_Collection.h +++ b/dep/acelite/ace/Token_Collection.h @@ -4,7 +4,7 @@ /** * @file Token_Collection.h * - * $Id: Token_Collection.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Token_Collection.h 91688 2010-09-09 11:21:50Z johnnyw $ * * The ACE_Token class offers methods for acquiring, renewing, * and releasing a synchronization token on a per-token basis. The @@ -204,18 +204,6 @@ protected: typedef ACE_Map_Manager<TOKEN_NAME, ACE_Token_Proxy *, ACE_Null_Mutex> COLLECTION; - /// Allows iterations through collection_ - /** - * @deprecated Deprecated typedef. Use COLLECTION::ITERATOR trait instead. - */ - typedef COLLECTION::ITERATOR COLLECTION_ITERATOR; - - /// Allows iterations through collection_ - /** - * @deprecated Deprecated typedef. Use COLLECTION::ENTRY trait instead. - */ - typedef COLLECTION::ENTRY COLLECTION_ENTRY; - /// COLLECTION maintains a mapping from token names to ACE_Tokens*. COLLECTION collection_; diff --git a/dep/acelite/ace/Token_Invariants.cpp b/dep/acelite/ace/Token_Invariants.cpp index 52b1f85eebe..11d29fb1fbf 100644 --- a/dep/acelite/ace/Token_Invariants.cpp +++ b/dep/acelite/ace/Token_Invariants.cpp @@ -1,3 +1,5 @@ +// $Id: Token_Invariants.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Token_Invariants.h" #if defined (ACE_HAS_TOKENS_LIBRARY) @@ -5,10 +7,6 @@ #include "ace/Object_Manager.h" #include "ace/os_include/os_typeinfo.h" -ACE_RCSID (ace, - Token_Invariants, - "$Id: Token_Invariants.cpp 84179 2009-01-16 07:26:45Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Token_Invariant_Manager *ACE_Token_Invariant_Manager::instance_ = 0; diff --git a/dep/acelite/ace/Token_Invariants.h b/dep/acelite/ace/Token_Invariants.h index 5cec394763d..3e620b0365d 100644 --- a/dep/acelite/ace/Token_Invariants.h +++ b/dep/acelite/ace/Token_Invariants.h @@ -4,7 +4,7 @@ /** * @file Token_Invariants.h * - * $Id: Token_Invariants.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Token_Invariants.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Tim Harrison (harrison@cs.wustl.edu) * @@ -195,20 +195,6 @@ protected: typedef ACE_Map_Manager<TOKEN_NAME, ACE_Mutex_Invariants *, ACE_Null_Mutex> MUTEX_COLLECTION; - /// Allows iterations through collection. - /** - * @deprecated Deprecated typedef. Use MUTEX_COLLECTION::ITERATOR trait - * instead. - */ - typedef MUTEX_COLLECTION::ITERATOR MUTEX_COLLECTION_ITERATOR; - - /// Allows iterations through collection. - /** - * @deprecated Deprecated typedef. Use MUTEX_COLLECTION::ENTRY trait - * instead. - */ - typedef MUTEX_COLLECTION::ENTRY MUTEX_COLLECTION_ENTRY; - /// MUTEX_COLLECTION maintains a mapping from token names to mutexes. MUTEX_COLLECTION mutex_collection_; @@ -216,20 +202,6 @@ protected: typedef ACE_Map_Manager<TOKEN_NAME, ACE_RWLock_Invariants *, ACE_Null_Mutex> RWLOCK_COLLECTION; - /// Allows iterations through collection. - /** - * @deprecated Deprecated typedef. Use RWLOCK_COLLECTION::ITERATOR trait - * instead. - */ - typedef RWLOCK_COLLECTION::ITERATOR RWLOCK_COLLECTION_ITERATOR; - - /// Allows iterations through collection. - /** - * @deprecated Deprecated typedef. Use RWLOCK_COLLECTION::ENTRY trait - * instead. - */ - typedef RWLOCK_COLLECTION::ENTRY RWLOCK_COLLECTION_ENTRY; - /// MUTEX_COLLECTION maintains a mapping from token names to mutexes. RWLOCK_COLLECTION rwlock_collection_; diff --git a/dep/acelite/ace/Token_Manager.cpp b/dep/acelite/ace/Token_Manager.cpp index 1127622d96e..7492b675d83 100644 --- a/dep/acelite/ace/Token_Manager.cpp +++ b/dep/acelite/ace/Token_Manager.cpp @@ -1,3 +1,5 @@ +// $Id: Token_Manager.cpp 91287 2010-08-05 10:30:49Z johnnyw $ + #include "ace/Token_Manager.h" #if defined (ACE_HAS_TOKENS_LIBRARY) @@ -9,10 +11,6 @@ #include "ace/Token_Manager.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID (ace, - Token_Manager, - "$Id: Token_Manager.cpp 84179 2009-01-16 07:26:45Z johnnyw $") - ACE_BEGIN_VERSIONED_NAMESPACE_DECL // singleton token manager diff --git a/dep/acelite/ace/Token_Manager.h b/dep/acelite/ace/Token_Manager.h index 9882e28ef67..eb86a4dd95f 100644 --- a/dep/acelite/ace/Token_Manager.h +++ b/dep/acelite/ace/Token_Manager.h @@ -4,7 +4,7 @@ /** * @file Token_Manager.h * - * $Id: Token_Manager.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: Token_Manager.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Tim Harrison (harrison@cs.wustl.edu) */ @@ -120,20 +120,6 @@ private: typedef ACE_Map_Manager<TOKEN_NAME, ACE_Tokens *, ACE_Null_Mutex> COLLECTION; - /// Allows iterations through collection_ - /** - * @deprecated Deprecated typedef. Use COLLECTION::ITERATOR trait - * instead. - */ - typedef COLLECTION::ITERATOR COLLECTION_ITERATOR; - - /// Allows iterations through collection_ - /** - * @deprecated Deprecated typedef. Use COLLECTION::ENTRY trait - * instead. - */ - typedef COLLECTION::ENTRY COLLECTION_ENTRY; - /// COLLECTION maintains a mapping from token names to ACE_Tokens*. COLLECTION collection_; }; diff --git a/dep/acelite/ace/Token_Request_Reply.cpp b/dep/acelite/ace/Token_Request_Reply.cpp index 598afe01388..6d842ed2b2d 100644 --- a/dep/acelite/ace/Token_Request_Reply.cpp +++ b/dep/acelite/ace/Token_Request_Reply.cpp @@ -1,4 +1,4 @@ -// $Id: Token_Request_Reply.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Token_Request_Reply.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Token_Request_Reply.h" @@ -8,7 +8,7 @@ #include "ace/Token_Request_Reply.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, Token_Request_Reply, "$Id: Token_Request_Reply.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/Tokenizer_T.cpp b/dep/acelite/ace/Tokenizer_T.cpp index 00aa2abdc79..ccf7376798f 100644 --- a/dep/acelite/ace/Tokenizer_T.cpp +++ b/dep/acelite/ace/Tokenizer_T.cpp @@ -1,4 +1,4 @@ -// $Id: Tokenizer_T.cpp 88793 2010-02-01 17:50:34Z cleeland $ +// $Id: Tokenizer_T.cpp 91813 2010-09-17 07:52:52Z johnnyw $ #ifndef ACE_TOKENIZER_T_CPP #define ACE_TOKENIZER_T_CPP @@ -124,7 +124,7 @@ ACE_Tokenizer_T<ACE_CHAR_T>::next (void) index_ = 0; return 0; } - + // Check if a buffer has been passed if (!buffer_) { diff --git a/dep/acelite/ace/Trace.cpp b/dep/acelite/ace/Trace.cpp index 06269ccac1f..8acbb63421d 100644 --- a/dep/acelite/ace/Trace.cpp +++ b/dep/acelite/ace/Trace.cpp @@ -1,11 +1,7 @@ -// $Id: Trace.cpp 87823 2009-11-30 12:38:34Z johnnyw $ +// $Id: Trace.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/Trace.h" -ACE_RCSID (ace, - Trace, - "$Id: Trace.cpp 87823 2009-11-30 12:38:34Z johnnyw $") - // Turn off tracing for the duration of this file. #if defined (ACE_NTRACE) #undef ACE_NTRACE diff --git a/dep/acelite/ace/UNIX_Addr.cpp b/dep/acelite/ace/UNIX_Addr.cpp index 013af8a33ec..fa889d84eaa 100644 --- a/dep/acelite/ace/UNIX_Addr.cpp +++ b/dep/acelite/ace/UNIX_Addr.cpp @@ -1,8 +1,8 @@ -// $Id: UNIX_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: UNIX_Addr.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/UNIX_Addr.h" -ACE_RCSID(ace, UNIX_Addr, "$Id: UNIX_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS) diff --git a/dep/acelite/ace/UPIPE_Acceptor.cpp b/dep/acelite/ace/UPIPE_Acceptor.cpp index c2c10155c35..3cdf6e2f57c 100644 --- a/dep/acelite/ace/UPIPE_Acceptor.cpp +++ b/dep/acelite/ace/UPIPE_Acceptor.cpp @@ -1,8 +1,8 @@ -// $Id: UPIPE_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $ +// $Id: UPIPE_Acceptor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/UPIPE_Acceptor.h" -ACE_RCSID(ace, UPIPE_Acceptor, "$Id: UPIPE_Acceptor.cpp 82723 2008-09-16 09:35:44Z johnnyw $") + #if defined (ACE_HAS_THREADS) diff --git a/dep/acelite/ace/UPIPE_Connector.cpp b/dep/acelite/ace/UPIPE_Connector.cpp index 9b9bfcd3878..ce03c0fae88 100644 --- a/dep/acelite/ace/UPIPE_Connector.cpp +++ b/dep/acelite/ace/UPIPE_Connector.cpp @@ -1,8 +1,8 @@ -// $Id: UPIPE_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: UPIPE_Connector.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/UPIPE_Connector.h" -ACE_RCSID(ace, UPIPE_Connector, "$Id: UPIPE_Connector.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if defined (ACE_HAS_THREADS) diff --git a/dep/acelite/ace/UPIPE_Stream.cpp b/dep/acelite/ace/UPIPE_Stream.cpp index d07722a482e..03c063addcd 100644 --- a/dep/acelite/ace/UPIPE_Stream.cpp +++ b/dep/acelite/ace/UPIPE_Stream.cpp @@ -1,8 +1,8 @@ -// $Id: UPIPE_Stream.cpp 82559 2008-08-07 20:23:07Z parsons $ +// $Id: UPIPE_Stream.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/UPIPE_Stream.h" -ACE_RCSID(ace, UPIPE_Stream, "$Id: UPIPE_Stream.cpp 82559 2008-08-07 20:23:07Z parsons $") + #if defined (ACE_HAS_THREADS) @@ -215,7 +215,7 @@ ACE_UPIPE_Stream::recv_n (char *buf, len = this->recv (buf + bytes_read, n - bytes_read, timeout); - + if (len == -1) { return -1; diff --git a/dep/acelite/ace/UUID.cpp b/dep/acelite/ace/UUID.cpp index 800469481e7..8fdf150b0fd 100644 --- a/dep/acelite/ace/UUID.cpp +++ b/dep/acelite/ace/UUID.cpp @@ -1,4 +1,4 @@ -//$Id: UUID.cpp 88515 2010-01-13 08:47:38Z johnnyw $ +//$Id: UUID.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/UUID.h" #include "ace/Guard_T.h" @@ -15,11 +15,6 @@ #include "ace/OS_NS_unistd.h" #include "ace/ACE.h" -ACE_RCSID (ace, - UUID, - "$Id: UUID.cpp 88515 2010-01-13 08:47:38Z johnnyw $") - - ACE_BEGIN_VERSIONED_NAMESPACE_DECL namespace ACE_Utils diff --git a/dep/acelite/ace/Unbounded_Set.h b/dep/acelite/ace/Unbounded_Set.h index a75eac18fc3..1655609517f 100644 --- a/dep/acelite/ace/Unbounded_Set.h +++ b/dep/acelite/ace/Unbounded_Set.h @@ -4,7 +4,7 @@ /** * @file Unbounded_Set.h * - * $Id: Unbounded_Set.h 81642 2008-05-07 19:30:35Z shuston $ + * $Id: Unbounded_Set.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -50,7 +50,7 @@ public: // = Initialization method. ACE_Unbounded_Set_Iterator (ACE_Unbounded_Set<T> &s, bool end = false); - + ACE_Unbounded_Set_Iterator (const base_type &s); }; @@ -63,13 +63,13 @@ class ACE_Unbounded_Set_Const_Iterator : public ACE_Unbounded_Set_Ex_Const_Iterator<T, ACE_Unbounded_Set_Default_Comparator<T> > { public: - + typedef ACE_Unbounded_Set_Ex_Const_Iterator<T, ACE_Unbounded_Set_Default_Comparator<T> > base_type; - + // = Initialization method. ACE_Unbounded_Set_Const_Iterator (const ACE_Unbounded_Set<T> &s, bool end = false); - + ACE_Unbounded_Set_Const_Iterator (const base_type &s); }; diff --git a/dep/acelite/ace/Unbounded_Set.inl b/dep/acelite/ace/Unbounded_Set.inl index 365b025c0be..c83629496cc 100644 --- a/dep/acelite/ace/Unbounded_Set.inl +++ b/dep/acelite/ace/Unbounded_Set.inl @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: Unbounded_Set.inl 81642 2008-05-07 19:30:35Z shuston $ +// $Id: Unbounded_Set.inl 91813 2010-09-17 07:52:52Z johnnyw $ #include "ace/Global_Macros.h" @@ -13,7 +13,7 @@ ACE_Unbounded_Set_Default_Comparator<T>::operator () (const T &lhs, const T &rh } template<typename T> -ACE_Unbounded_Set_Iterator<T>::ACE_Unbounded_Set_Iterator (ACE_Unbounded_Set<T> &s, +ACE_Unbounded_Set_Iterator<T>::ACE_Unbounded_Set_Iterator (ACE_Unbounded_Set<T> &s, bool end) : base_type (s, end) { diff --git a/dep/acelite/ace/Vector_T.cpp b/dep/acelite/ace/Vector_T.cpp index 006e6db1b4a..f464665347f 100644 --- a/dep/acelite/ace/Vector_T.cpp +++ b/dep/acelite/ace/Vector_T.cpp @@ -1,4 +1,4 @@ -// $Id: Vector_T.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: Vector_T.cpp 92069 2010-09-28 11:38:59Z johnnyw $ #ifndef ACE_VECTOR_T_CPP #define ACE_VECTOR_T_CPP @@ -40,7 +40,7 @@ void ACE_Vector<T, DEFAULT_SIZE>::push_back (const T& elem) } else ACE_Array<T>::size (length_ + 1); - + ++length_; (*this)[length_-1] = elem; } @@ -48,14 +48,6 @@ void ACE_Vector<T, DEFAULT_SIZE>::push_back (const T& elem) template <class T, size_t DEFAULT_SIZE> void ACE_Vector<T, DEFAULT_SIZE>::dump (void) const { -#if defined (ACE_HAS_DUMP) -#if 0 - // Can't do this unless the vector is an object with a dump - // function. - for (size_t i = 0; i < this->size (); ++i) - (*this)[i].dump (); -#endif /* 0 */ -#endif /* ACE_HAS_DUMP */ } // Compare this vector with <s> for equality. @@ -75,61 +67,6 @@ ACE_Vector<T, DEFAULT_SIZE>::operator== (const ACE_Vector<T, DEFAULT_SIZE> &s) c return true; } -#if 0 -template<class T> -int compare(const ACE_Vector<T>& v1, - const ACE_Vector<T>& v2, - const size_t from_ndx, - const size_t to_ndx) -{ - size_t last1 = v1.size () - 1; - size_t last2 = v2.size () - 1; - if (last1 < from_ndx || last1 < to_ndx) - return false; - if (last2 < from_ndx || last2 < to_ndx) - return false; - if (last1 != last2) - return false; - - // cout<<"compare() <================="<<endl; - for (size_t i = from_ndx; i <= to_ndx; ++i) - // cout<<"V1["<<i<<"]="<<v1[i]; - // cout<<", V2["<<i<<"]="<<v2[i]; - // cout<<": NOT EQUAL == "<<(v1[i]!=v2[i])<<endl; - if (v1[i] != v2[i]) - return false; - - // cout<<"compare() ====================>"<<endl; - return true; -} - -template<class T> -int partial_compare(const ACE_Vector<T>& v1, - const ACE_Vector<T>& v2, - const size_t from_ndx, - const size_t to_ndx) -{ - size_t last1 = v1.size () - 1; - size_t last2 = v2.size () - 1; - - if (last1 < from_ndx || last1 < to_ndx) - return false; - if (last2 < from_ndx || last2 < to_ndx) - return false; - - // cout<<"partial_compare() <================="<<endl; - for (size_t i = from_ndx; i <= to_ndx; ++i) - // cout<<"V1["<<i<<"]="<<v1[i]; - // cout<<", V2["<<i<<"]="<<v2[i]; - // cout<<": NOT EQUAL == "<<(v1[i]!=v2[i])<<endl; - if (v1[i] != v2[i]) - return false; - - // cout<<"partial_compare() ====================>"<<endl; - return true; -} -#endif - // **************************************************************** template <class T, size_t DEFAULT_SIZE> int diff --git a/dep/acelite/ace/Vector_T.h b/dep/acelite/ace/Vector_T.h index 3d49f4391bb..8037bd6e247 100644 --- a/dep/acelite/ace/Vector_T.h +++ b/dep/acelite/ace/Vector_T.h @@ -4,7 +4,7 @@ /** * @file Vector_T.h * - * $Id: Vector_T.h 84477 2009-02-16 13:30:38Z johnnyw $ + * $Id: Vector_T.h 92069 2010-09-28 11:38:59Z johnnyw $ * * @author Craig L. Ching <cching@mqsoftware.com> * @author Gonzalo Diethelm <gonzalo.diethelm@aditiva.com> @@ -16,7 +16,7 @@ #include /**/ "ace/pre.h" -#include "ace/Array.h" +#include "ace/Containers_T.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once @@ -202,58 +202,6 @@ protected: friend class ACE_Vector_Iterator<T, DEFAULT_SIZE>; }; -#if 0 -/* - * Not sure about including these functions, if for no other reason, - * because they polute the global namespace! - */ - -/** - * Compare two vectors in the range of [from_ndx..to_ndx]. This - * template function requires class T to have the bool operator!=() - * declared in the class. It is safe to define vectors of scalar data - * types, like int, double, etc., including class ACE_TString. - * - * @param v1 The first vector (out of the two) to be compared. - * @param v2 The Second vector (out of the two) to be compared. - * @param from_ndx Compare vector v1 and v2, starting with the - * "from_ndx" index . - * @param to_ndx Compare vector v1 and v2, from "from_ndx" to - * "to_ndx". - * @return Returns true if v1==v2 in the specified index range, - * returns false otherwise. Also, returns false in case if - * v1's size is not equal to v2's size. - */ -template<class T> -int compare (const ACE_Vector<T>& v1, - const ACE_Vector<T>& v2, - const size_t from_ndx, - const size_t to_ndx); - -/** - * Does a partial comparison of two vectors in the range of - * [from_ndx..to_ndx]. The only difference between this function and - * the template compare<T> function is that this function does - * not require v1 and v2 to be of equal size. - * - * @param v1 The first vector (out of the two) to be compared. - * @param v2 The Second vector (out of the two) to be compared. - * @param from_ndx Compare vector v1 and v2, starting with the - * "from_ndx" index . - * @param to_ndx Compare vector v1 and v2, from "from_ndx" to - * "to_ndx". - * @return Returns true if vector v1 and v2 are equal in the specified - * index range. - */ - -template<class T> -int partial_compare (const ACE_Vector<T>& v1, - const ACE_Vector<T>& v2, - const size_t from_ndx, - const size_t to_ndx); -#endif /* 0 */ -// **************************************************************** - /** * @class ACE_Vector_Iterator * diff --git a/dep/acelite/ace/Version.h b/dep/acelite/ace/Version.h index 92d70e802ec..835fc849fd1 100644 --- a/dep/acelite/ace/Version.h +++ b/dep/acelite/ace/Version.h @@ -1,9 +1,9 @@ // -*- C++ -*- -// $Id: Version.h 91247 2010-08-01 09:46:33Z johnnyw $ -// This is file was automatically generated by \$ACE_ROOT/bin/make_release. +// $Id: Version.h 92364 2010-10-27 10:02:39Z johnnyw $ +// This is file was automatically generated by \$ACE_ROOT/bin/make_release.py #define ACE_MAJOR_VERSION 5 #define ACE_MINOR_VERSION 8 -#define ACE_BETA_VERSION 1 -#define ACE_VERSION "5.8.1" +#define ACE_BETA_VERSION 3 +#define ACE_VERSION "5.8.3" diff --git a/dep/acelite/ace/Versioned_Namespace.h b/dep/acelite/ace/Versioned_Namespace.h index 542254876ff..21158413457 100644 --- a/dep/acelite/ace/Versioned_Namespace.h +++ b/dep/acelite/ace/Versioned_Namespace.h @@ -4,7 +4,7 @@ /** * @file Versioned_Namespace.h * - * $Id$ + * $Id: Versioned_Namespace.h 92286 2010-10-20 18:22:07Z johnnyw $ * * Versioned namespace support. * diff --git a/dep/acelite/ace/WFMO_Reactor.cpp b/dep/acelite/ace/WFMO_Reactor.cpp index 713b5689cdb..a86b9798e50 100644 --- a/dep/acelite/ace/WFMO_Reactor.cpp +++ b/dep/acelite/ace/WFMO_Reactor.cpp @@ -1,4 +1,4 @@ -// $Id: WFMO_Reactor.cpp 85125 2009-04-20 16:47:38Z johnnyw $ +// $Id: WFMO_Reactor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/WFMO_Reactor.h" @@ -14,7 +14,7 @@ #include "ace/WFMO_Reactor.inl" #endif /* __ACE_INLINE__ */ -ACE_RCSID(ace, WFMO_Reactor, "$Id: WFMO_Reactor.cpp 85125 2009-04-20 16:47:38Z johnnyw $") + #include "ace/Auto_Ptr.h" diff --git a/dep/acelite/ace/WIN32_Asynch_IO.cpp b/dep/acelite/ace/WIN32_Asynch_IO.cpp index 3dd6efcd1c5..75da1ad6f08 100644 --- a/dep/acelite/ace/WIN32_Asynch_IO.cpp +++ b/dep/acelite/ace/WIN32_Asynch_IO.cpp @@ -1,11 +1,7 @@ -// $Id: WIN32_Asynch_IO.cpp 89454 2010-03-11 09:35:25Z johnnyw $ +// $Id: WIN32_Asynch_IO.cpp 91368 2010-08-16 13:03:34Z mhengstmengel $ #include "ace/WIN32_Asynch_IO.h" -ACE_RCSID (ace, - Win32_Asynch_IO, - "$Id: WIN32_Asynch_IO.cpp 89454 2010-03-11 09:35:25Z johnnyw $") - #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) && \ (defined (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 == 1)) diff --git a/dep/acelite/ace/WIN32_Asynch_IO.h b/dep/acelite/ace/WIN32_Asynch_IO.h index 34af77dabb2..2c8495a17df 100644 --- a/dep/acelite/ace/WIN32_Asynch_IO.h +++ b/dep/acelite/ace/WIN32_Asynch_IO.h @@ -4,7 +4,7 @@ /** * @file WIN32_Asynch_IO.h * - * $Id: WIN32_Asynch_IO.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: WIN32_Asynch_IO.h 92298 2010-10-21 11:15:17Z johnnyw $ * * * These classes only works on Win32 platforms. @@ -111,10 +111,10 @@ public: /// Destructor. virtual ~ACE_WIN32_Asynch_Result (void); - /// Simulate error value to use in the post_completion () + /// Simulate error value to use in the post_completion() void set_error (u_long errcode); - /// Simulate value to use in the post_completion () + /// Simulate value to use in the post_completion() void set_bytes_transferred (size_t nbytes); protected: @@ -158,8 +158,8 @@ class ACE_Export ACE_WIN32_Asynch_Operation : public virtual ACE_Asynch_Operatio public: /** * Initializes the factory with information which will be used with - * each asynchronous call. If (<handle> == ACE_INVALID_HANDLE), - * <ACE_Handler::handle> will be called on the @a handler to get the + * each asynchronous call. If (@a handle == ACE_INVALID_HANDLE), + * ACE_Handler::handle() will be called on the @a handler to get the * correct handle. */ int open (const ACE_Handler::Proxy_Ptr &handler_proxy, @@ -310,7 +310,7 @@ protected: * @brief This class is a factory for starting off asynchronous reads * on a stream. * - * Once <open> is called, multiple asynchronous <read>s can + * Once open() is called, multiple asynchronous read()s can * started using this class. An ACE_Asynch_Read_Stream::Result * will be passed back to the @a handler when the asynchronous * reads completes through the <ACE_Handler::handle_read_stream> @@ -351,8 +351,8 @@ public: /** * Initializes the factory with information which will be used with - * each asynchronous call. If (<handle> == ACE_INVALID_HANDLE), - * <ACE_Handler::handle> will be called on the @a handler to get the + * each asynchronous call. If (@a handle == ACE_INVALID_HANDLE), + * ACE_Handler::handle() will be called on the @a handler to get the * correct handle. */ int open (const ACE_Handler::Proxy_Ptr &handler_proxy, @@ -489,11 +489,11 @@ protected: * on a stream. * * - * Once <open> is called, multiple asynchronous <writes>s can + * Once open() is called, multiple asynchronous <writes>s can * started using this class. A ACE_Asynch_Write_Stream::Result * will be passed back to the @a handler when the asynchronous * write completes through the - * <ACE_Handler::handle_write_stream> callback. + * ACE_Handler::handle_write_stream() callback. */ class ACE_Export ACE_WIN32_Asynch_Write_Stream : public virtual ACE_Asynch_Write_Stream_Impl, public ACE_WIN32_Asynch_Operation @@ -530,8 +530,8 @@ public: /** * Initializes the factory with information which will be used with - * each asynchronous call. If (<handle> == ACE_INVALID_HANDLE), - * <ACE_Handler::handle> will be called on the @a handler to get the + * each asynchronous call. If (@a handle == ACE_INVALID_HANDLE), + * ACE_Handler::handle() will be called on the @a handler to get the * correct handle. */ int open (const ACE_Handler::Proxy_Ptr &handler_proxy, diff --git a/dep/acelite/ace/WIN32_Proactor.cpp b/dep/acelite/ace/WIN32_Proactor.cpp index a559838976f..3d1d3fcfa8f 100644 --- a/dep/acelite/ace/WIN32_Proactor.cpp +++ b/dep/acelite/ace/WIN32_Proactor.cpp @@ -1,6 +1,6 @@ -// $Id: WIN32_Proactor.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: WIN32_Proactor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ -// ACE_RCSID(ace, Proactor, "$Id: WIN32_Proactor.cpp 80826 2008-03-04 14:51:23Z wotte $") +// #include "ace/WIN32_Proactor.h" diff --git a/dep/acelite/ace/XTI_ATM_Mcast.cpp b/dep/acelite/ace/XTI_ATM_Mcast.cpp index 503e3fea0e2..e01c55eabc0 100644 --- a/dep/acelite/ace/XTI_ATM_Mcast.cpp +++ b/dep/acelite/ace/XTI_ATM_Mcast.cpp @@ -1,8 +1,8 @@ -// $Id: XTI_ATM_Mcast.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: XTI_ATM_Mcast.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/XTI_ATM_Mcast.h" -ACE_RCSID(ace, XTI_ATM_Mcast, "$Id: XTI_ATM_Mcast.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if defined (ACE_HAS_XTI_ATM) diff --git a/dep/acelite/ace/ace_wchar.cpp b/dep/acelite/ace/ace_wchar.cpp index bec8255447d..f969c78859f 100644 --- a/dep/acelite/ace/ace_wchar.cpp +++ b/dep/acelite/ace/ace_wchar.cpp @@ -1,11 +1,11 @@ // -*- C++ -*- // -// $Id: ace_wchar.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: ace_wchar.cpp 91286 2010-08-05 09:04:31Z johnnyw $ #include "ace/config-macros.h" #include "ace/ace_wchar.h" -ACE_RCSID(ace, ace_wchar, "$Id: ace_wchar.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/dep/acelite/ace/ace_wchar.h b/dep/acelite/ace/ace_wchar.h index f556e0f9cf8..77db8f83808 100644 --- a/dep/acelite/ace/ace_wchar.h +++ b/dep/acelite/ace/ace_wchar.h @@ -4,7 +4,7 @@ /** * @file ace_wchar.h * - * $Id: ace_wchar.h 82441 2008-07-28 13:04:13Z johnnyw $ + * $Id: ace_wchar.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Darrell Brunsch <brunsch@uci.edu> */ @@ -19,38 +19,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -// These macros have been deprecated and should be replaced by their -// ACE_TEXT_* equivalents. These macros are just hacks and may not -// completely provide the old functionality. -#if defined (ACE_LEGACY_MODE) -// Convert the old unicode indicators -# if defined (ACE_HAS_MOSTLY_UNICODE_APIS) -# define ACE_USES_WCHAR -# endif /* ACE_HAS_MOSTLY_UNICODE_APIS */ -# if defined (ACE_HAS_UNICODE) -# define ACE_HAS_WCHAR -# endif /* ACE_HAS_UNICODE */ - -// These are defined to get older stuff to compile -// FUZZ: disable check_for_tchar -# define ASYS_TCHAR ACE_TCHAR -# define ASYS_TEXT ACE_TEXT -# define ASYS_ONLY_MULTIBYTE_STRING ACE_TEXT_ALWAYS_CHAR -# define ASYS_MULTIBYTE_STRING ACE_TEXT_CHAR_TO_TCHAR -# define ASYS_WIDE_STRING ACE_TEXT_CHAR_TO_TCHAR -# define ACE_WIDE_STRING ACE_TEXT_CHAR_TO_TCHAR - -# if defined (ACE_USES_WCHAR) -# define ASYS_ONLY_WIDE_STRING(STRING) STRING -# else /* ACE_USES_WCHAR */ -# define ASYS_ONLY_WIDE_STRING(STRING) \ - ACE_Ascii_To_Wide (STRING).wchar_rep () -# endif /* ACE_USES_WCHAR */ - -# define ACE_TEXT_STRING ACE_TString - -#endif /* ACE_LEGACY_MODE */ - #if defined (ACE_HAS_XPG4_MULTIBYTE_CHAR) # if !defined (ACE_HAS_WCHAR) # define ACE_HAS_WCHAR @@ -123,9 +91,6 @@ using std::size_t; typedef wchar_t ACE_TCHAR; typedef char ACE_ANTI_TCHAR; # define ACE_TEXT(STRING) ACE_TEXT_WIDE (STRING) -# if !defined (ACE_LACKS_DEPRECATED_MACROS) -# define ACE_LIB_TEXT(STRING) ACE_TEXT_WIDE (STRING) -# endif # define ACE_TEXT_ALWAYS_CHAR(STRING) ACE_Wide_To_Ascii (STRING).char_rep () # define ACE_TEXT_ALWAYS_WCHAR(STRING) STRING # define ACE_TEXT_CHAR_TO_TCHAR(STRING) ACE_Ascii_To_Wide (STRING).wchar_rep () @@ -135,9 +100,6 @@ typedef char ACE_ANTI_TCHAR; typedef char ACE_TCHAR; typedef wchar_t ACE_ANTI_TCHAR; # define ACE_TEXT(STRING) STRING -# if !defined (ACE_LACKS_DEPRECATED_MACROS) -# define ACE_LIB_TEXT(STRING) STRING -# endif # define ACE_TEXT_ALWAYS_CHAR(STRING) STRING # define ACE_TEXT_ALWAYS_WCHAR(STRING) ACE_Ascii_To_Wide (STRING).wchar_rep () # define ACE_TEXT_CHAR_TO_TCHAR(STRING) STRING @@ -250,11 +212,6 @@ private: ACE_Ascii_To_Wide operator= (ACE_Ascii_To_Wide &); }; -#if defined (ACE_LEGACY_MODE) -typedef ACE_Ascii_To_Wide ACE_OS_CString; -typedef ACE_Wide_To_Ascii ACE_OS_WString; -#endif /* ACE_LEGACY_MODE */ - ACE_END_VERSIONED_NAMESPACE_DECL #endif /* ACE_HAS_WCHAR */ diff --git a/dep/acelite/ace/config-aix-5.x.h b/dep/acelite/ace/config-aix-5.x.h index d524e9530fc..3e212059507 100644 --- a/dep/acelite/ace/config-aix-5.x.h +++ b/dep/acelite/ace/config-aix-5.x.h @@ -1,4 +1,4 @@ -// $Id: config-aix-5.x.h 87268 2009-10-29 21:06:06Z olli $ +// $Id: config-aix-5.x.h 91685 2010-09-09 09:35:14Z johnnyw $ // // Config file for AIX 5.1 and higher. @@ -78,7 +78,6 @@ # define ACE_HAS_STANDARD_CPP_LIBRARY 1 # define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 -# define ACE_HAS_TEMPLATE_TYPEDEFS # define ACE_HAS_CUSTOM_EXPORT_MACROS # define ACE_Proper_Export_Flag # define ACE_Proper_Import_Flag diff --git a/dep/acelite/ace/config-doxygen.h b/dep/acelite/ace/config-doxygen.h index ddd84e88e7a..5664338e3a0 100644 --- a/dep/acelite/ace/config-doxygen.h +++ b/dep/acelite/ace/config-doxygen.h @@ -6,7 +6,7 @@ * * @file config-doxygen.h * - * $Id: config-doxygen.h 91101 2010-07-15 09:49:28Z johnnyw $ + * $Id: config-doxygen.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @author Carlos O'Ryan <coryan@uci.edu> * @author Darrell Brunsch <brunsch@uci.edu> @@ -58,9 +58,6 @@ /// Enable support for the SSL wrappers #define ACE_HAS_SSL 1 -/// Enable exceptions -#define ACE_HAS_EXCEPTIONS - /// Enable timeprobes #define ACE_COMPILE_TIMEPROBES @@ -93,18 +90,12 @@ /// Generate ACE_Dev_Poll_Reactor documentation #define ACE_HAS_DEV_POLL -/// Generate ACE_Event_Handler_T documentation -#define ACE_HAS_TEMPLATE_TYPEDEFS - /// Generate ACE_Log_Msg_NT_Event_Log documentation #define ACE_HAS_LOG_MSG_NT_EVENT_LOG /// Generate icmp documentation #define ACE_HAS_ICMP_SUPPORT 1 -/// Don't expand ACE_RCSID macro -#define ACE_USE_RCSID 0 - /// Parse some ACE_SSL classes that depend on recent versions of /// OpenSSL. #define OPENSSL_VERSION_NUMBER 0x00905820L diff --git a/dep/acelite/ace/config-g++-common.h b/dep/acelite/ace/config-g++-common.h index dc010182a70..4146b5c2147 100644 --- a/dep/acelite/ace/config-g++-common.h +++ b/dep/acelite/ace/config-g++-common.h @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: config-g++-common.h 89454 2010-03-11 09:35:25Z johnnyw $ +// $Id: config-g++-common.h 92120 2010-10-01 12:00:01Z johnnyw $ // This configuration file is designed to be included by another, // specific configuration file. It provides config information common @@ -10,9 +10,15 @@ #define ACE_GNUG_COMMON_H #include /**/ "ace/pre.h" +#if !defined (ACE_CC_NAME) +# define ACE_CC_NAME ACE_TEXT ("g++") +#endif +#define ACE_CC_MAJOR_VERSION __GNUC__ +#define ACE_CC_MINOR_VERSION __GNUC_MINOR__ +#define ACE_CC_BETA_VERSION (0) + #define ACE_HAS_CPLUSPLUS_HEADERS #define ACE_HAS_STDCPP_STL_INCLUDES -#define ACE_HAS_TEMPLATE_TYPEDEFS #define ACE_HAS_STANDARD_CPP_LIBRARY 1 #define ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR #define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 @@ -32,22 +38,11 @@ # define ACE_LACKS_NUMERIC_LIMITS #endif /* __GNUC__ < 3 */ -// __EXCEPTIONS is defined with -fexceptions, the egcs default. It -// is not defined with -fno-exceptions, the ACE default for g++. -// ACE_HAS_EXCEPTIONS is defined in -// include/makeinclude/wrapper_macros.GNU, so this really isn't -// necessary. Just in case . . . -#if defined (__EXCEPTIONS) && !defined (ACE_HAS_EXCEPTIONS) -# define ACE_HAS_EXCEPTIONS -#endif /* __EXCEPTIONS && ! ACE_HAS_EXCEPTIONS */ - -#if defined (ACE_HAS_EXCEPTIONS) -# define ACE_NEW_THROWS_EXCEPTIONS -# if (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)) +#define ACE_NEW_THROWS_EXCEPTIONS +#if (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)) // Versions of g++ prior to 3.3 had a buggy operator // new(nothrow)[](). -# define ACE_HAS_NEW_NOTHROW -# endif /* __GNUC__ >= 3.3 */ -#endif /* ACE_HAS_EXCEPTIONS */ +# define ACE_HAS_NEW_NOTHROW +#endif /* __GNUC__ >= 3.3 */ #if (defined (i386) || defined (__i386__)) && !defined (ACE_SIZEOF_LONG_DOUBLE) # define ACE_SIZEOF_LONG_DOUBLE 12 @@ -151,6 +146,7 @@ // GCC >= 4.1 provides __sync_XXXX builtins for use in atomic operations // although the builtins are provided globally they are not supported on all platforms +#if defined (ACE_HAS_THREADS) #if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 1)) # if defined (__powerpc__) // The builtins seem to be provided for all powerpc platforms @@ -170,14 +166,7 @@ # define ACE_HAS_GCC_ATOMIC_BUILTINS 1 # endif #endif - -#if defined (ACE_HAS_GNU_REPO) - // -frepo causes unresolved symbols of basic_string left- and - // right-shift operators with ACE_HAS_STRING_CLASS. -# if defined (ACE_HAS_STRING_CLASS) -# undef ACE_HAS_STRING_CLASS -# endif /* ACE_HAS_STRING_CLASS */ -#endif /* ! ACE_HAS_GNU_REPO */ +#endif /* ACE_HAS_THREADS */ #include /**/ "ace/post.h" #endif /* ACE_GNUG_COMMON_H */ diff --git a/dep/acelite/ace/config-hpux-11.00.h b/dep/acelite/ace/config-hpux-11.00.h index 82420f210f3..978a85a8e87 100644 --- a/dep/acelite/ace/config-hpux-11.00.h +++ b/dep/acelite/ace/config-hpux-11.00.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-hpux-11.00.h 89494 2010-03-15 20:11:18Z olli $ +// $Id: config-hpux-11.00.h 92102 2010-09-30 08:14:15Z johnnyw $ // The following configuration file is designed to work for HP // platforms running HP-UX 11.00 using aC++ or gcc (2.95 and up). @@ -24,15 +24,7 @@ // aC++... // Precompiler needs extra flags to ignore "invalid #pragma directive" -# ifndef ACE_USING_MCPP_PREPROCESSOR -# define ACE_CC_PREPROCESSOR_ARGS "-E +W 67" -# endif -// Compiler supports C++ exception handling. It's on by default. If the -// +noeh compiler option is used to disable exceptions, the compiler defines -// __HPACC_NOEH. -# if !defined (__HPACC_NOEH) -# define ACE_HAS_EXCEPTIONS 1 -# endif +# define ACE_CC_PREPROCESSOR_ARGS "-E +W 67" // If the -AA compile option is used, the compiler defines _HP_NAMESPACE_STD. // The -AA option enables the 2.0 standard C++ library. If not used, then @@ -57,10 +49,6 @@ # define ACE_LACKS_NUMERIC_LIMITS # endif /* _HP_NAMESPACE_STD */ -// Compiler implements templates that support typedefs inside of classes -// used as formal arguments to a template class. -# define ACE_HAS_TEMPLATE_TYPEDEFS - # define ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR // Platform lacks streambuf "linebuffered ()". diff --git a/dep/acelite/ace/config-icc-common.h b/dep/acelite/ace/config-icc-common.h index 1ebd0c52ed7..d55447f705d 100644 --- a/dep/acelite/ace/config-icc-common.h +++ b/dep/acelite/ace/config-icc-common.h @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: config-icc-common.h 81935 2008-06-12 22:01:53Z jtc $ +// $Id: config-icc-common.h 91685 2010-09-09 09:35:14Z johnnyw $ #ifndef ACE_LINUX_ICC_COMMON_H #define ACE_LINUX_ICC_COMMON_H @@ -8,7 +8,6 @@ # define ACE_HAS_CPLUSPLUS_HEADERS # define ACE_HAS_STDCPP_STL_INCLUDES -# define ACE_HAS_TEMPLATE_TYPEDEFS # define ACE_HAS_STANDARD_CPP_LIBRARY 1 # define ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR # define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 @@ -61,18 +60,7 @@ # define ACE_IMPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) __extension__ extern template class SINGLETON_TYPE<CLASS, LOCK>; #endif /* ACE_HAS_CUSTOM_EXPORT_MACROS == 0 */ -// __EXCEPTIONS is defined with -fexceptions, the egcs default. It -// is not defined with -fno-exceptions, the ACE default for g++. -// ACE_HAS_EXCEPTIONS is defined in -// include/makeinclude/wrapper_macros.GNU, so this really isn't -// necessary. Just in case . . . -# if defined (__EXCEPTIONS) && !defined (ACE_HAS_EXCEPTIONS) -# define ACE_HAS_EXCEPTIONS -# endif /* __EXCEPTIONS && ! ACE_HAS_EXCEPTIONS */ - -# if defined (ACE_HAS_EXCEPTIONS) -# define ACE_NEW_THROWS_EXCEPTIONS -# endif /* ACE_HAS_EXCEPTIONS */ +#define ACE_NEW_THROWS_EXCEPTIONS #if (defined (i386) || defined (__i386__)) && !defined (ACE_SIZEOF_LONG_DOUBLE) # define ACE_SIZEOF_LONG_DOUBLE 12 diff --git a/dep/acelite/ace/config-integritySCA.h b/dep/acelite/ace/config-integritySCA.h index 41afec58758..19362257ae2 100644 --- a/dep/acelite/ace/config-integritySCA.h +++ b/dep/acelite/ace/config-integritySCA.h @@ -8,7 +8,7 @@ * Integrity RTOS with SCA from Green Hills Software * http://www.ghs.com/products/rtos/integrity.html * - * $Id: config-integritySCA.h 88501 2010-01-12 19:41:53Z olli $ + * $Id: config-integritySCA.h 92181 2010-10-08 07:52:54Z olli $ */ #define ghs @@ -26,13 +26,9 @@ #define ACE_LACKS_GETEGID #define ACE_LACKS_GETGID -#ifndef ACE_HAS_EXCEPTIONS - #define ACE_HAS_EXCEPTIONS -#endif #define ACE_NEW_THROWS_EXCEPTIONS #define ACE_HAS_STANDARD_CPP_LIBRARY 1 #define ACE_TEMPLATES_REQUIRE_SOURCE 1 -#define ACE_HAS_TEMPLATE_TYPEDEFS #define TAO_USE_SEQUENCE_TEMPLATES #define ACE_NEEDS_FUNC_DEFINITIONS #define _REENTRANT @@ -109,7 +105,6 @@ #define ACE_LACKS_MSYNC #define ACE_LACKS_PID_STUFF #define ACE_LACKS_NETDB_REENTRANT_FUNCTIONS -#define ACE_LACKS_IPC_H #define ACE_LACKS_SETGID #define ACE_LACKS_PIPE #define ACE_LACKS_SYS_PARAM_H @@ -189,7 +184,6 @@ extern "C" #define ACE_LACKS_GETPPID #define NSIG (SIGRTMAX+1) #define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 -#define ACE_USE_RCSID 0 #define ACE_LACKS_CUSERID #define ACE_NEEDS_HUGE_THREAD_STACKSIZE 0x5000 #define fileno(file) ((file)->io_channel) //Hack to get Svc_Conf_l.cpp compiled diff --git a/dep/acelite/ace/config-kfreebsd.h b/dep/acelite/ace/config-kfreebsd.h new file mode 100644 index 00000000000..ab2cd8882f4 --- /dev/null +++ b/dep/acelite/ace/config-kfreebsd.h @@ -0,0 +1,628 @@ +// $Id: config-kfreebsd.h 91743 2010-09-13 18:24:51Z johnnyw $ + +#ifndef ACE_CONFIG_KFREEBSD_H +#define ACE_CONFIG_KFREEBSDH +#include "ace/config-g++-common.h" + + +/* Uses ctime_r & asctime_r with only two parameters vs. three. */ +#define ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R 1 + +/* Define to 1 if platform has 3 parameter readdir_r() */ +#define ACE_HAS_3_PARAM_READDIR_R 1 + +/* Define to 1 if platform has 3 parameter wcstok() */ +#define ACE_HAS_3_PARAM_WCSTOK 1 + +/* Platform has BSD 4.4 sendmsg()/recvmsg() APIs. */ +#define ACE_HAS_4_4BSD_SENDMSG_RECVMSG 1 + +/* Platform supports Asynchronous IO calls */ +#define ACE_HAS_AIO_CALLS 1 + +/* Use ACE's alternate cuserid() implementation since a system cuserid() may + not exist, or it is not desirable to use it. The implementation requires + ACE_LACKS_PWD_FUNCTIONS to be undefined and that the geteuid() system call + exists. */ +#define ACE_HAS_ALT_CUSERID 1 + +/* Compiler/platform correctly calls init()/fini() for shared libraries. */ +#define ACE_HAS_AUTOMATIC_INIT_FINI 1 + +/* Define to 1 if platform has bswap_16(). */ +#define ACE_HAS_BSWAP_16 1 + +/* Define to 1 if platform has bswap_32(). */ +#define ACE_HAS_BSWAP_32 1 + +/* Define to 1 if platform has bswap_64(). */ +#define ACE_HAS_BSWAP_64 1 + +/* Define to 1 if platform has the <byteswap.h> header file. */ +#define ACE_HAS_BYTESWAP_H 1 + +/* Define to 1 if platform has clock_gettime(). */ +#define ACE_HAS_CLOCK_GETTIME 1 + +/* Define to 1 if platform has clock_settime(). */ +#define ACE_HAS_CLOCK_SETTIME 1 + +/* Prototypes for both signal() and struct sigaction are consistent. */ +#define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES 1 + +/* Define to 1 if the system has the type `cpu_set_t'. */ +#define ACE_HAS_CPU_SET_T 1 + +/* Platform supports operations on directories via struct dirent, readdir_r, + etc. */ +#define ACE_HAS_DIRENT 1 + +/* Compiler supports C++ exception handling. */ +#define ACE_HAS_EXCEPTIONS 1 + +/* Define to 1 if platform has getifaddrs(). */ +#define ACE_HAS_GETIFADDRS 1 + +/* Platform supports getpagesize() call (otherwise, ACE_PAGE_SIZE must be + defined, except on Win32). */ +#define ACE_HAS_GETPAGESIZE 1 + +/* Define to 1 if platform has getrusage(). */ +#define ACE_HAS_GETRUSAGE 1 + +/* Define to 1 if platform has the declaration of getrusage(). */ +#define ACE_HAS_GETRUSAGE_PROTOTYPE 1 + +/* Denotes that GNU has cstring.h as standard which redefines memchr() */ +#define ACE_HAS_GNU_CSTRING_H 1 + +/* The GPERF utility is compiled for this platform */ +#define ACE_HAS_GPERF 1 + +/* Optimize ACE_Handle_Set::count_bits for select() operations (common case) + */ +#define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT 1 + +/* Defined to 1 if platform supports ICMP over raw sockets */ +#define ACE_HAS_ICMP_SUPPORT 1 + +/* Define to 1 if the system has the type `int16_t'. */ +#define ACE_HAS_INT16_T 1 + +/* Define to 1 if the system has the type `int32_t'. */ +#define ACE_HAS_INT32_T 1 + +/* Define to 1 if the system has the type `int64_t'. */ +#define ACE_HAS_INT64_T 1 + +/* Define to 1 if the system has the type `int8_t'. */ +#define ACE_HAS_INT8_T 1 + +/* Platform supports IPv6 */ +#define ACE_HAS_IPV6 1 + +/* Platform supports IP multicast */ +#define ACE_HAS_IP_MULTICAST 1 + +/* Define to 1 if platform has the declaration of isastream(). */ +#define ACE_HAS_ISASTREAM_PROTOTYPE 1 + +/* Platform supports lseek64(). This should not be defined if ACE_HAS_LLSEEK + is defined. */ +#define ACE_HAS_LSEEK64 1 + +/* Define to 1 if platform has memchr(). */ +#define ACE_HAS_MEMCHR 1 + +/* Define to 1 if unrolled ACE_OS::fast_memcpy() is faster than system + memcpy() */ +#define ACE_HAS_MEMCPY_LOOP_UNROLL 1 + +/* Define to 1 if platform has mkdir(). */ +#define ACE_HAS_MKDIR 1 + +/* Platform supports recvmsg and sendmsg */ +#define ACE_HAS_MSG 1 + +/* Compiler supports timed mutex acquisitions (e.g. + pthread_mutex_timedlock()). */ +#define ACE_HAS_MUTEX_TIMEOUTS 1 + +/* Define to 1 if platform has nanosleep(). */ +#define ACE_HAS_NANOSLEEP 1 + +/* Define to 1 if platform has the <new.h> header file. */ +#ifdef ACE_HAS_NEW_H +#undef ACE_HAS_NEW_H +#endif + +#ifndef ACE_LACKS_NEW_H +#define ACE_LACKS_NEW_H 1 +#endif + +/* Platform provides new style C++ <new> header */ +#define ACE_HAS_NEW_NO_H 1 + +/* Platform's select() uses non-const timeval* (only found on Linux right now) + */ +#define ACE_HAS_NONCONST_SELECT_TIMEVAL 1 + +/* Platform has swab(char*, char*, ssize_t) variant. */ +#define ACE_HAS_NONCONST_SWAB 1 + +/* Platform contains <poll.h> */ +#define ACE_HAS_POLL 1 + +/* Platform supports "position-independent" features provided by + ACE_Based_Pointer<>. */ +#define ACE_HAS_POSITION_INDEPENDENT_POINTERS 1 + +/* Platform supports POSIX getpwnam_r() function */ +#define ACE_HAS_POSIX_GETPWNAM_R 1 + +/* Platform supports POSIX O_NONBLOCK semantics */ +#define ACE_HAS_POSIX_NONBLOCK 1 + +/* Platform supports POSIX real-time semaphores (e.g., VxWorks and Solaris) */ +#define ACE_HAS_POSIX_SEM 1 + +/* Platform supports the POSIX struct timespec type */ +#define ACE_HAS_POSIX_TIME 1 + +/* Platform supports the /proc file system and defines tid_t in <sys/procfs.h> + */ +#define ACE_HAS_PROC_FS 1 + +/* Define to 1 if platform has POSIX threads */ +#define ACE_HAS_PTHREADS 1 + +/* Platform supports POSIX.1c-1995 threads */ +#define ACE_HAS_PTHREADS_STD 1 + +/* Platform has the UNIX98 extensions to Pthreads (rwlocks) */ +#define ACE_HAS_PTHREADS_UNIX98_EXT 1 + +/* Define to 1 if platform has pthread_getconcurrency(). */ +#define ACE_HAS_PTHREAD_GETCONCURRENCY 1 + +/* Define to 1 if platform has pthread_mutexattr_setkind_np(). */ +#define ACE_HAS_PTHREAD_MUTEXATTR_SETKIND_NP 1 + +/* pthread.h declares an enum with PTHREAD_PROCESS_PRIVATE and + PTHREAD_PROCESS_SHARED values */ +#define ACE_HAS_PTHREAD_PROCESS_ENUM 1 + +/* Define to 1 if platform has pthread_setconcurrency(). */ +#define ACE_HAS_PTHREAD_SETCONCURRENCY 1 + +/* Define to 1 if platform has the declaration of pthread_sigmask(). */ +#define ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE 1 + +/* Platform has pread() and pwrite() support. */ +#define ACE_HAS_P_READ_WRITE 1 + +/* Define to 1 to configure Reactor to use a user-space queue for + notifications */ +#define ACE_HAS_REACTOR_NOTIFICATION_QUEUE 1 + +/* Mutexes are inherently recursive (e.g., Win32) */ +/* #undef ACE_HAS_RECURSIVE_MUTEXES */ + +/* Platform will recurse infinitely on thread exits from TSS cleanup routines + (e.g., AIX) */ +#define ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS 1 + +/* Platform supports reentrant functions (i.e., all the POSIX *_r functions). + */ +#define ACE_HAS_REENTRANT_FUNCTIONS 1 + +/* Define to 1 if platform has sched_getaffinity(). */ +#define ACE_HAS_SCHED_GETAFFINITY 1 + +/* Define to 1 if platform has sched_setaffinity(). */ +#define ACE_HAS_SCHED_SETAFFINITY 1 + +/* Platform has shm_open() */ +#define ACE_HAS_SHM_OPEN 1 + +/* Platform's sigaction() function takes const sigaction* as 2nd parameter */ +#define ACE_HAS_SIGACTION_CONSTP2 1 + +/* Define to 1 if the system has the type `siginfo_t'. */ +#define ACE_HAS_SIGINFO_T 1 + +/* Define to 1 if platform has sigsuspend(). */ +#define ACE_HAS_SIGSUSPEND 1 + +/* Define to 1 if platform has sigtimedwait(). */ +#define ACE_HAS_SIGTIMEDWAIT 1 + +/* Define to 1 if platform has sigwait(). */ +#define ACE_HAS_SIGWAIT 1 + +/* Define to 1 if the system has the type 'sig_atomic_t'. */ +#define ACE_HAS_SIG_ATOMIC_T 1 + +/* Compiler requires extern "C" functions for signals. */ +#define ACE_HAS_SIG_C_FUNC 1 + +/* Define to 1 if platform has snprintf(). */ +#define ACE_HAS_SNPRINTF 1 + +/* Define to 1 if `sin6_len' is a member of `sockaddr_in6'. */ +#define ACE_HAS_SOCKADDR_IN6_SIN6_LEN 1 + +/* Define to 1 if `sin_len' is a member of `sockaddr_in'. */ +#define ACE_HAS_SOCKADDR_IN_SIN_LEN 1 + +/* Platform requires (struct sockaddr *) for msg_name field of struct msghdr. + */ +#define ACE_HAS_SOCKADDR_MSG_NAME 1 + +/* Define to 1 if the system has the type `socklen_t'. */ +#define ACE_HAS_SOCKLEN_T 1 + +/* Define to 1 if the system has the type `ssize_t'. */ +#define ACE_HAS_SSIZE_T 1 + +/* Platform/compiler supports Standard C++ Library */ +#define ACE_HAS_STANDARD_CPP_LIBRARY 1 + +/* Compiler supports standard C++ template class member specializations */ +#define ACE_HAS_STD_TEMPLATE_CLASS_MEMBER_SPECIALIZATION 1 + +/* Compiler supports standard C++ template specializations (e.g. "template <>" + syntax.) */ +#define ACE_HAS_STD_TEMPLATE_SPECIALIZATION 1 + +/* Compiler/platform supports struct strbuf */ +#define ACE_HAS_STRBUF_T 1 + +/* Platform supports STREAMS */ +#define ACE_HAS_STREAMS 1 + +/* Define to 1 if platform has strerror(). */ +#define ACE_HAS_STRERROR 1 + +/* Platform has <strings.h> (which contains bzero() prototype) */ +#define ACE_HAS_STRINGS 1 + +/* Platform/Compiler supports a String class (e.g., GNU or Win32). */ +#define ACE_HAS_STRING_CLASS 1 + +/* Define to 1 if platform has strnlen(). */ +#define ACE_HAS_STRNLEN 1 + +/* Compiler/platform supports SVR4 dynamic linking semantics */ +#define ACE_HAS_SVR4_DYNAMIC_LINKING 1 + +/* Define to 1 if platform has sysctl(). */ +#define ACE_HAS_SYSCTL 1 + +/* Platform supports System V IPC (most versions of UNIX, but not Win32) */ +#define ACE_HAS_SYSV_IPC 1 + +/* Platform/compiler supports _sys_errlist symbol */ +#define ACE_HAS_SYS_ERRLIST 1 + +/* Define to 1 if platform has the <sys/filio.h> header file. */ +#define ACE_HAS_SYS_FILIO_H 1 + +/* Compiler/platform supports _sys_siglist array */ +#define ACE_HAS_SYS_SIGLIST 1 + +/* Define to 1 if platform has the <sys/sockio.h> header file. */ +#define ACE_HAS_SYS_SOCKIO_H 1 + +/* Define to 1 if platform has the <sys/syscall.h> header file. */ +#define ACE_HAS_SYS_SYSCALL_H 1 + +/* Define to 1 if system supports POSIX tty API. */ +#define ACE_HAS_TERMIOS 1 + +/* Platform supports threads. */ +#define ACE_HAS_THREADS 1 + +/* Compiler/platform has thread-specific storage */ +#define ACE_HAS_THREAD_SPECIFIC_STORAGE 1 + +/* Define to 1 if platform has global timezone variable */ +#define ACE_HAS_TIMEZONE 1 + +/* Platform/compiler supports timezone * as second parameter to gettimeofday() + and has a prototype. */ +#define ACE_HAS_TIMEZONE_GETTIMEOFDAY 1 + +/* Compiler supports the C++ typename keyword */ +#define ACE_HAS_TYPENAME_KEYWORD 1 + +/* Define to 1 if platform has ualarm(). */ +#define ACE_HAS_UALARM 1 + +/* Define to 1 if the system has the type `ucontext_t'. */ +#define ACE_HAS_UCONTEXT_T 1 + +/* Define to 1 if the system has the type `uint16_t'. */ +#define ACE_HAS_UINT16_T 1 + +/* Define to 1 if the system has the type `uint32_t'. */ +#define ACE_HAS_UINT32_T 1 + +/* Define to 1 if the system has the type `uint64_t'. */ +#define ACE_HAS_UINT64_T 1 + +/* Define to 1 if the system has the type `uint8_t'. */ +#define ACE_HAS_UINT8_T 1 + +/* Define to 1 if platform has vasprintf(). */ +#define ACE_HAS_VASPRINTF 1 + +/* Define to 1 if platform has vfwprintf(). */ +#define ACE_HAS_VFWPRINTF 1 + +/* Platform requires void * for mmap(). */ +#define ACE_HAS_VOIDPTR_MMAP 1 + +/* OS/compiler uses void * arg 4 setsockopt() rather than const char * */ +#define ACE_HAS_VOIDPTR_SOCKOPT 1 + +/* Define to 1 if platform has vswprintf(). */ +#define ACE_HAS_VSWPRINTF 1 + +/* Platform/compiler supports wchar_t */ +#define ACE_HAS_WCHAR 1 + +/* Define to 1 if platform has wcsnlen(). */ +#define ACE_HAS_WCSNLEN 1 + +/* Platform has support for multi-byte character support compliant with the + XPG4 Worldwide Portability Interface wide-character classification. */ +#define ACE_HAS_XPG4_MULTIBYTE_CHAR 1 + +/* Platform has Xt Intrinsics Toolkit */ +#define ACE_HAS_XT 1 + +/* Define to signed 64 bit integer type */ +#define ACE_INT64_TYPE signed long long + +/* Define to the type of arg 2 for `ioctl'. */ +#define ACE_IOCTL_TYPE_ARG2 int + +/* Define to 1 if platform lacks getipnodebyaddr(). */ +#define ACE_LACKS_GETIPNODEBYADDR 1 + +/* Define to 1 if platform lacks getipnodebyname(). */ +#define ACE_LACKS_GETIPNODEBYNAME 1 + +/* iostream header does not declare ipfx (), opfx (), etc. */ +#define ACE_LACKS_IOSTREAM_FX 1 + +/* Define to 1 if platform lacks itow(). */ +#define ACE_LACKS_ITOW 1 + +/* Platform lacks streambuf "linebuffered ()". */ +#define ACE_LACKS_LINEBUFFERED_STREAMBUF 1 + +/* Platform does not have Motif X toolkit available */ +#define ACE_LACKS_MOTIF 1 + +/* Platform defines ACE_HAS_MSG, but lacks msg_accrights{len}. */ +#define ACE_LACKS_MSG_ACCRIGHTS 1 + +/* Platform lacks named POSIX semaphores (e.g., Chorus) */ +#define ACE_LACKS_NAMED_POSIX_SEM 1 + +/* Compiler complains about use of obsolete "pragma once" */ +#define ACE_LACKS_PRAGMA_ONCE 1 + +/* Define to 1 if the system lacks the type 'pri_t'. */ +#define ACE_LACKS_PRI_T 1 + +/* Define to 1 if platform lacks pthread_thr_sigsetmask(). */ +#define ACE_LACKS_PTHREAD_THR_SIGSETMASK 1 + +/* Platform lacks readers/writer locks. */ +#define ACE_LACKS_RWLOCK_T 1 + +/* Define to 1 if platform lacks the <siginfo.h> header file. */ +#define ACE_LACKS_SIGINFO_H 1 + +/* Define to 1 if platform lacks the <termio.h> header file. */ +#define ACE_LACKS_TERMIO_H 1 + +/* Define to 1 if platform lacks the declarations of recv_timedwait, + send_timedwait, etc. */ +#define ACE_LACKS_TIMEDWAIT_PROTOTYPES 1 + +/* Platform does not define timepec_t as a typedef for struct timespec. */ +#define ACE_LACKS_TIMESPEC_T 1 + +/* */ +#define ACE_LACKS_UNBUFFERED_STREAMBUF 1 + +/* Define to 1 if the system lacks the type `u_long_long_t'. */ +#define ACE_LACKS_U_LONGLONG_T 1 + +/* Define to 1 if platform lacks wcsnicmp(). */ +#define ACE_LACKS_WCSNICMP 1 + +/* Compile using multi-thread libraries */ +#define ACE_MT_SAFE 1 + +/* Size of the native "double" type */ +#define ACE_SIZEOF_DOUBLE 8 + +/* Size of the native "float" type */ +#define ACE_SIZEOF_FLOAT 4 + +/* Size of the native "int" type */ +#define ACE_SIZEOF_INT 4 + +/* Size of the native "long" type */ +#define ACE_SIZEOF_LONG 4 + +/* Size of the native "long double" type */ +#define ACE_SIZEOF_LONG_DOUBLE 12 + +/* Size of the native "long long" type */ +#define ACE_SIZEOF_LONG_LONG 8 + +/* Size of the native "short" type */ +#define ACE_SIZEOF_SHORT 2 + +/* Size of the native "pointer to void" type */ +#define ACE_SIZEOF_VOID_P 4 + +/* Size of the native "wchar_t" type */ +#define ACE_SIZEOF_WCHAR 4 + +/* Define to unsigned 64 bit integer type */ +#define ACE_UINT64_TYPE unsigned long long + +/* Enable IPv6 support on platforms that don't have IPv6 turned on by default + */ +#define ACE_USES_IPV4_IPV6_MIGRATION 1 + +/* Platform has its standard C++ library in the namespace std. */ +#define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 + +/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'. + */ +#define HAVE_DIRENT_H 1 + +/* Define to 1 if you have the <dlfcn.h> header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the <fstream> header file. */ +#define HAVE_FSTREAM 1 + +/* Define to 1 if you have the <inttypes.h> header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the <iomanip> header file. */ +#define HAVE_IOMANIP 1 + +/* Define to 1 if you have the <ios> header file. */ +#define HAVE_IOS 1 + +/* Define to 1 if you have the <iostream> header file. */ +#define HAVE_IOSTREAM 1 + +/* Define to 1 if you have the <iostream.h> header file. */ +/* #undef HAVE_IOSTREAM_H */ + +/* Define to 1 if you have the <istream> header file. */ +#define HAVE_ISTREAM 1 + +/* Define to 1 if you have the <memory.h> header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the <ostream> header file. */ +#define HAVE_OSTREAM 1 + +/* Define to 1 if you have the <stdint.h> header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the <stdlib.h> header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the <streambuf> header file. */ +#define HAVE_STREAMBUF 1 + +/* Define to 1 if you have the `strftime' function. */ +#define HAVE_STRFTIME 1 + +/* Define to 1 if you have the <strings.h> header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the <string.h> header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the <sys/types.h> header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */ +#define HAVE_SYS_WAIT_H 1 + +/* Define to 1 if you have the <unistd.h> header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LT_OBJDIR ".libs/" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "ace-bugs@cs.wustl.edu" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "ACE" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "ACE 5.6.3" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "ace" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "5.6.3" + +/* The size of `double', as computed by sizeof. */ +#define SIZEOF_DOUBLE 8 + +/* The size of `float', as computed by sizeof. */ +#define SIZEOF_FLOAT 4 + +/* The size of `int', as computed by sizeof. */ +#define SIZEOF_INT 4 + +/* The size of `long', as computed by sizeof. */ +#define SIZEOF_LONG 4 + +/* The size of `long double', as computed by sizeof. */ +#define SIZEOF_LONG_DOUBLE 12 + +/* The size of `long long', as computed by sizeof. */ +#define SIZEOF_LONG_LONG 8 + +/* The size of `short', as computed by sizeof. */ +#define SIZEOF_SHORT 2 + +/* The size of `signed char', as computed by sizeof. */ +#define SIZEOF_SIGNED_CHAR 1 + +/* The size of `void *', as computed by sizeof. */ +#define SIZEOF_VOID_P 4 + +/* The size of `wchar_t', as computed by sizeof. */ +#define SIZEOF_WCHAR_T 4 + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +/* # undef WORDS_BIGENDIAN */ +# endif +#endif + + +/* Enable ACE inlining */ +#define __ACE_INLINE__ 1 + + +#endif /* ACE_CONFIG_KFREEBSDH */ + + diff --git a/dep/acelite/ace/config-linux-common.h b/dep/acelite/ace/config-linux-common.h index b787a1447ad..a2367bb81f6 100644 --- a/dep/acelite/ace/config-linux-common.h +++ b/dep/acelite/ace/config-linux-common.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-linux-common.h 88663 2010-01-22 10:49:22Z mcorino $ +// $Id: config-linux-common.h 92183 2010-10-08 08:44:15Z olli $ // Do not use this configuration file directly since it's designed to // be included by another, specific configuration file, such as @@ -147,7 +147,6 @@ #if __GLIBC__ > 1 && __GLIBC_MINOR__ >= 1 # define ACE_HAS_P_READ_WRITE -# define ACE_LACKS_PREAD_PROTOTYPE // Use ACE's alternate cuserid() implementation since the use of the // system cuserid() is discouraged. # define ACE_HAS_ALT_CUSERID @@ -168,20 +167,12 @@ // this must appear before its #include. # define ACE_HAS_STRING_CLASS # include "ace/config-g++-common.h" -#define ACE_CC_NAME ACE_TEXT ("g++") -#define ACE_CC_MAJOR_VERSION __GNUC__ -#define ACE_CC_MINOR_VERSION __GNUC_MINOR__ -//#define ACE_CC_BETA_VERSION 0 /* ??? */ -#elif defined (__DECCXX) -# define ACE_CONFIG_INCLUDE_CXX_COMMON -# include "ace/config-cxx-common.h" #elif defined (__SUNCC_PRO) || defined (__SUNPRO_CC) # include "ace/config-suncc-common.h" #elif defined (__PGI) // Portable group compiler # define ACE_HAS_CPLUSPLUS_HEADERS # define ACE_HAS_STDCPP_STL_INCLUDES -# define ACE_HAS_TEMPLATE_TYPEDEFS # define ACE_HAS_STANDARD_CPP_LIBRARY 1 # define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 # define ACE_LACKS_SWAB @@ -433,23 +424,6 @@ # endif /* (LINUX_VERSION_CODE <= KERNEL_VERSION(2,5,47)) */ #endif /* ACE_GETNAME_RETURNS_RANDOM_SIN_ZERO */ -#if defined (ACE_HAS_EVENT_POLL) -// The sys_epoll interface was introduced in Linux kernel 2.5.45. -// Don't support backported versions since they appear to be buggy. -// The obsolete ioctl()-based interface is no longer supported. -#if 0 -// linux/version.h may not be accurate. It's not for Fedora Core 2... -# if !defined (ACE_LACKS_LINUX_VERSION_H) -# include <linux/version.h> -# endif /* !ACE_LACKS_LINUX_VERSION_H */ -# if (LINUX_VERSION_CODE < KERNEL_VERSION (2,5,45)) -# undef ACE_HAS_EVENT_POLL -# error Disabling Linux epoll support. Kernel used in C library is too old. -# error Linux kernel 2.5.45 or better is required. -# endif /* LINUX_VERSION_CODE < KERNEL_VERSION (2,5,45) */ -#endif /* ACE_HAS_EVENT_POLL */ -#endif - #if !defined (ACE_HAS_EVENT_POLL) && !defined (ACE_HAS_DEV_POLL) # if !defined (ACE_LACKS_LINUX_VERSION_H) # include <linux/version.h> diff --git a/dep/acelite/ace/config-lynxos.h b/dep/acelite/ace/config-lynxos.h index 81176f615b9..cd217465685 100644 --- a/dep/acelite/ace/config-lynxos.h +++ b/dep/acelite/ace/config-lynxos.h @@ -1,4 +1,4 @@ -// $Id: config-lynxos.h 89494 2010-03-15 20:11:18Z olli $ +// $Id: config-lynxos.h 91683 2010-09-09 09:07:49Z johnnyw $ // The following configuration file is designed to work for LynxOS, // version 4.0.0 and later, using the GNU g++ compiler. @@ -146,11 +146,6 @@ # endif #endif /* ACE_MT_SAFE */ -// By default, don't include RCS Id strings in object code. -#if !defined (ACE_USE_RCSID) -# define ACE_USE_RCSID 0 -#endif /* ! ACE_USE_RCSID */ - #if ACE_LYNXOS_MAJOR == 4 && ACE_LYNXOS_MINOR == 0 # define ACE_LACKS_GETOPT_PROTOTYPE # define ACE_LACKS_INET_ATON_PROTOTYPE diff --git a/dep/acelite/ace/config-macosx-leopard.h b/dep/acelite/ace/config-macosx-leopard.h index dfaaf870947..5fb28c338f3 100644 --- a/dep/acelite/ace/config-macosx-leopard.h +++ b/dep/acelite/ace/config-macosx-leopard.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-macosx-leopard.h 90343 2010-05-29 02:18:47Z wotte $ +// $Id: config-macosx-leopard.h 91688 2010-09-09 11:21:50Z johnnyw $ // This configuration file is designed to work with the MacOS X operating system. @@ -100,7 +100,6 @@ #define ACE_NEEDS_SCHED_H -// Use of <malloc.h> is deprecated. #define ACE_LACKS_MALLOC_H #define ACE_HAS_ALT_CUSERID @@ -228,4 +227,4 @@ #error "Compiler must be upgraded, see http://developer.apple.com" #endif /* __APPLE_CC__ */ -#endif /* ACE_CONFIG_MACOSX_TIGER_H */ +#endif /* ACE_CONFIG_MACOSX_LEOPARD_H */ diff --git a/dep/acelite/ace/config-macosx-snowleopard.h b/dep/acelite/ace/config-macosx-snowleopard.h index 09e9458d6b9..a60b8c40a7a 100644 --- a/dep/acelite/ace/config-macosx-snowleopard.h +++ b/dep/acelite/ace/config-macosx-snowleopard.h @@ -1,4 +1,4 @@ -// $Id: config-macosx-snowleopard.h 91093 2010-07-15 09:12:20Z wotte $ +// $Id: config-macosx-snowleopard.h 91693 2010-09-09 12:57:54Z johnnyw $ #ifndef ACE_CONFIG_MACOSX_SNOWLEOPARD_H #define ACE_CONFIG_MACOSX_SNOWLEOPARD_H @@ -9,9 +9,11 @@ #ifdef ACE_HAS_GCC_ATOMIC_BUILTINS #undef ACE_HAS_GCC_ATOMIC_BUILTINS #endif + +#define ACE_ANY_OPS_USE_NAMESPACE + #endif -// This header has been deprecated in Snow Leopard. #define ACE_LACKS_UCONTEXT_H #endif // ACE_CONFIG_MACOSX_SNOWLEOPARD_H diff --git a/dep/acelite/ace/config-macosx-tiger.h b/dep/acelite/ace/config-macosx-tiger.h index f3d1ddcf8ad..944c1651f6f 100644 --- a/dep/acelite/ace/config-macosx-tiger.h +++ b/dep/acelite/ace/config-macosx-tiger.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-macosx-tiger.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-macosx-tiger.h 91693 2010-09-09 12:57:54Z johnnyw $ // This configuration file is designed to work with the MacOS X operating system. @@ -86,7 +86,6 @@ #define ACE_NEEDS_SCHED_H -// Use of <malloc.h> is deprecated. #define ACE_LACKS_MALLOC_H #define ACE_HAS_ALT_CUSERID diff --git a/dep/acelite/ace/config-macosx.h b/dep/acelite/ace/config-macosx.h index ae2552f14a2..12b69de3b72 100644 --- a/dep/acelite/ace/config-macosx.h +++ b/dep/acelite/ace/config-macosx.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-macosx.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-macosx.h 91693 2010-09-09 12:57:54Z johnnyw $ // This configuration file is designed to work with the MacOS X operating system, version 10.2 (Jaguar). @@ -60,7 +60,6 @@ #define ACE_NEEDS_SCHED_H -// Use of <malloc.h> is deprecated. #define ACE_LACKS_MALLOC_H #define ACE_HAS_ALT_CUSERID diff --git a/dep/acelite/ace/config-macros.h b/dep/acelite/ace/config-macros.h index 6820fc351d9..eb54d37e061 100644 --- a/dep/acelite/ace/config-macros.h +++ b/dep/acelite/ace/config-macros.h @@ -4,7 +4,7 @@ /** * @file config-macros.h * - * $Id: config-macros.h 88485 2010-01-12 13:36:59Z schmidt $ + * $Id: config-macros.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @author (Originally in OS.h)Doug Schmidt <schmidt@cs.wustl.edu> * @author Jesper S. M|ller<stophph@diku.dk> @@ -21,15 +21,15 @@ #ifndef ACE_CONFIG_MACROS_H #define ACE_CONFIG_MACROS_H -#ifdef _WIN32 - #include "ace/config-win32.h" -#else - #include "ace/config.h" -#endif +#include "ace/config.h" #include "ace/Version.h" #include "ace/Versioned_Namespace.h" +#if !defined (ACE_HAS_EXCEPTIONS) +#define ACE_HAS_EXCEPTIONS +#endif /* !ACE_HAS_EXCEPTIONS */ + // ACE_HAS_TLI is used to decide whether to try any XTI/TLI functionality // so if it isn't set, set it. Capabilities and differences between // XTI and TLI favor XTI, but when deciding to do anything, as opposed to @@ -58,19 +58,6 @@ # endif /* ! ACE_LACKS_IOSTREAM_TOTALLY */ #endif /* ! ACE_DEFAULT_LOG_STREAM */ -// These two are only for backward compatibility. You should avoid -// using them if not necessary. -#if !defined (ACE_LACKS_DEPRECATED_MACROS) -/** - * @deprecated The ACE_SYNCH_1 macro is deprecated - */ -# define ACE_SYNCH_1 ACE_SYNCH_DECL -/** - * @deprecated The ACE_SYNCH_2 macro is deprecated - */ -# define ACE_SYNCH_2 ACE_SYNCH_USE -#endif - // For Win32 compatibility... # if !defined (ACE_WSOCK_VERSION) # define ACE_WSOCK_VERSION 0, 0 @@ -93,32 +80,6 @@ # define ACE_INITIALIZE_MEMORY_BEFORE_USE # endif /* ACE_HAS_VALGRIND */ -#if !defined (ACE_LACKS_DEPRECATED_MACROS) -/** - * @deprecated The @c ACE_HAS_USING macros are deprecated - */ -# define ACE_USING using -#endif /* !ACE_LACKS_DEPRECATED_MACROS */ - -#if !defined (ACE_LACKS_DEPRECATED_MACROS) -/** - * @deprecated The @c ACE_TYPENAME macros is deprecated. Use standard - * C++ keyword typename instead. - */ -# define ACE_TYPENAME typename -#endif /* !ACE_LACKS_DEPRECATED_MACROS */ - -#if !defined (ACE_LACKS_DEPRECATED_MACROS) -/** - * @deprecated The @c ACE_TEMPLATE_SPECIALIZATION and - * @c ACE_TEMPLATE_CLASS_MEMBER_SPECIALIZATION macros are - * deprecated. Use standard C++ template specialization - * syntax instead. - */ -# define ACE_TEMPLATE_SPECIALIZATION template<> -# define ACE_TEMPLATE_CLASS_MEMBER_SPECIALIZATION -#endif /* !ACE_LACKS_DEPRECATED_MACROS */ - // ========================================================================= // Perfect Multicast filting refers to RFC 3376, where a socket is only // delivered dgrams for groups joined even if it didn't bind the group @@ -159,45 +120,6 @@ # endif /* ACE_USES_FIFO_SEM */ // ========================================================================= -// RCSID Macros -// ========================================================================= - -// By default, DO NOT include RCS Id strings in object code. -#if ! defined (ACE_USE_RCSID) -# define ACE_USE_RCSID 0 -#endif /* #if ! defined (ACE_USE_RCSID) */ - -#if (defined (ACE_USE_RCSID) && (ACE_USE_RCSID != 0)) -# if ! defined (ACE_RCSID) - - // This hack has the following purposes: - // 1. To define the RCS id string variable as a static char*, so - // that there won't be any duplicate extern symbols at link - // time. - // 2. To have a RCS id string variable with a unique name for each - // file. - // 3. To avoid warnings of the type "variable declared and never - // used". - -# define ACE_RCSID(path, file, id) \ - static inline const char* get_rcsid_ ## path ## _ ## file (const char*) \ - { \ - return id ; \ - } \ - static const char* rcsid_ ## path ## _ ## file = \ - get_rcsid_ ## path ## _ ## file ( rcsid_ ## path ## _ ## file ) ; - -# endif /* #if ! defined (ACE_RCSID) */ -#else - - // RCS id strings are not wanted. -# if defined (ACE_RCSID) -# undef ACE_RCSID -# endif /* #if defined (ACE_RCSID) */ -# define ACE_RCSID(path, file, id) /* noop */ -#endif /* #if (defined (ACE_USE_RCSID) && (ACE_USE_RCSID != 0)) */ - -// ========================================================================= // INLINE macros // // These macros handle all the inlining of code via the .i or .inl files @@ -222,31 +144,6 @@ # define ACE_INLINE #endif /* __ACE_INLINE__ */ -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - // ========================================================================= - // EXPLICIT macro - // ========================================================================= - - /** - * @deprecated explicit is deprecated. ACE requires C++ - * "explicit" keyword support. - */ - # define ACE_EXPLICIT explicit -#endif /* ACE_LACKS_DEPRECATED_MACROS */ - -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - // ========================================================================= - // MUTABLE macro - // ========================================================================= - - /** - * @deprecated ACE_MUTABLE is deprecated. ACE requires C++ "mutable" - * keyword support. - */ - # define ACE_MUTABLE mutable - # define ACE_CONST_WHEN_MUTABLE const -#endif /* ACE_LACKS_DEPRECATED_MACROS */ - // ============================================================================ // EXPORT macros // @@ -309,60 +206,6 @@ # define ACE_sap_any_cast(TYPE) reinterpret_cast<TYPE> (const_cast<ACE_Addr &> (ACE_Addr::sap_any)) -#if !defined (ACE_LACKS_DEPRECATED_MACROS) - /** - * @deprecated ACE_{static,reinterpret,dynamic,const}_cast@<@> is - * deprecated. Directly use standard C++ casts instead. - */ - # define ACE_static_cast(TYPE, EXPR) static_cast<TYPE> (EXPR) - # define ACE_static_cast_1_ptr(TYPE, T1, EXPR) static_cast<TYPE<T1> *> (EXPR) - # define ACE_static_cast_2_ptr(TYPE, T1, T2, EXPR) static_cast<TYPE<T1, T2> *> (EXPR) - # define ACE_static_cast_3_ptr(TYPE, T1, T2, T3, EXPR) static_cast<TYPE<T1, T2, T3> *> (EXPR) - # define ACE_static_cast_4_ptr(TYPE, T1, T2, T3, T4, EXPR) static_cast<TYPE<T1, T2, T3, T4> *> (EXPR) - # define ACE_static_cast_5_ptr(TYPE, T1, T2, T3, T4, T5, EXPR) static_cast<TYPE<T1, T2, T3, T4, T5> *> (EXPR) - # define ACE_static_cast_1_ref(TYPE, T1, EXPR) static_cast<TYPE<T1> &> (EXPR) - # define ACE_static_cast_2_ref(TYPE, T1, T2, EXPR) static_cast<TYPE<T1, T2> &> (EXPR) - # define ACE_static_cast_3_ref(TYPE, T1, T2, T3, EXPR) static_cast<TYPE<T1, T2, T3> &> (EXPR) - # define ACE_static_cast_4_ref(TYPE, T1, T2, T3, T4, EXPR) static_cast<TYPE<T1, T2, T3, T4> &> (EXPR) - # define ACE_static_cast_5_ref(TYPE, T1, T2, T3, T4, T5, EXPR) static_cast<TYPE<T1, T2, T3, T4, T5> &> (EXPR) - - # define ACE_const_cast(TYPE, EXPR) const_cast<TYPE> (EXPR) - # define ACE_const_cast_1_ptr(TYPE, T1, EXPR) const_cast<TYPE<T1> *> (EXPR) - # define ACE_const_cast_2_ptr(TYPE, T1, T2, EXPR) const_cast<TYPE<T1, T2> *> (EXPR) - # define ACE_const_cast_3_ptr(TYPE, T1, T2, T3, EXPR) const_cast<TYPE<T1, T2, T3> *> (EXPR) - # define ACE_const_cast_4_ptr(TYPE, T1, T2, T3, T4, EXPR) const_cast<TYPE<T1, T2, T3, T4> *> (EXPR) - # define ACE_const_cast_5_ptr(TYPE, T1, T2, T3, T4, T5, EXPR) const_cast<TYPE<T1, T2, T3, T4, T5> *> (EXPR) - # define ACE_const_cast_1_ref(TYPE, T1, EXPR) const_cast<TYPE<T1> &> (EXPR) - # define ACE_const_cast_2_ref(TYPE, T1, T2, EXPR) const_cast<TYPE<T1, T2> &> (EXPR) - # define ACE_const_cast_3_ref(TYPE, T1, T2, T3, EXPR) const_cast<TYPE<T1, T2, T3> &> (EXPR) - # define ACE_const_cast_4_ref(TYPE, T1, T2, T3, T4, EXPR) const_cast<TYPE<T1, T2, T3, T4> &> (EXPR) - # define ACE_const_cast_5_ref(TYPE, T1, T2, T3, T4, T5, EXPR) const_cast<TYPE<T1, T2, T3, T4, T5> &> (EXPR) - - # define ACE_reinterpret_cast(TYPE, EXPR) reinterpret_cast<TYPE> (EXPR) - # define ACE_reinterpret_cast_1_ptr(TYPE, T1, EXPR) reinterpret_cast<TYPE<T1> *> (EXPR) - # define ACE_reinterpret_cast_2_ptr(TYPE, T1, T2, EXPR) reinterpret_cast<TYPE<T1, T2> *> (EXPR) - # define ACE_reinterpret_cast_3_ptr(TYPE, T1, T2, T3, EXPR) reinterpret_cast<TYPE<T1, T2, T3> *> (EXPR) - # define ACE_reinterpret_cast_4_ptr(TYPE, T1, T2, T3, T4, EXPR) reinterpret_cast<TYPE<T1, T2, T3, T4> *> (EXPR) - # define ACE_reinterpret_cast_5_ptr(TYPE, T1, T2, T3, T4, T5, EXPR) reinterpret_cast<TYPE<T1, T2, T3, T4, T5> *> (EXPR) - # define ACE_reinterpret_cast_1_ref(TYPE, T1, EXPR) reinterpret_cast<TYPE<T1> &> (EXPR) - # define ACE_reinterpret_cast_2_ref(TYPE, T1, T2, EXPR) reinterpret_cast<TYPE<T1, T2> &> (EXPR) - # define ACE_reinterpret_cast_3_ref(TYPE, T1, T2, T3, EXPR) reinterpret_cast<TYPE<T1, T2, T3> &> (EXPR) - # define ACE_reinterpret_cast_4_ref(TYPE, T1, T2, T3, T4, EXPR) reinterpret_cast<TYPE<T1, T2, T3, T4> &> (EXPR) - # define ACE_reinterpret_cast_5_ref(TYPE, T1, T2, T3, T4, T5, EXPR) reinterpret_cast<TYPE<T1, T2, T3, T4, T5> &> (EXPR) - - # define ACE_dynamic_cast(TYPE, EXPR) dynamic_cast<TYPE> (EXPR) - # define ACE_dynamic_cast_1_ptr(TYPE, T1, EXPR) dynamic_cast<TYPE<T1> *> (EXPR) - # define ACE_dynamic_cast_2_ptr(TYPE, T1, T2, EXPR) dynamic_cast<TYPE<T1, T2> *> (EXPR) - # define ACE_dynamic_cast_3_ptr(TYPE, T1, T2, T3, EXPR) dynamic_cast<TYPE<T1, T2, T3> *> (EXPR) - # define ACE_dynamic_cast_4_ptr(TYPE, T1, T2, T3, T4, EXPR) dynamic_cast<TYPE<T1, T2, T3, T4> *> (EXPR) - # define ACE_dynamic_cast_5_ptr(TYPE, T1, T2, T3, T4, T5, EXPR) dynamic_cast<TYPE<T1, T2, T3, T4, T5> *> (EXPR) - # define ACE_dynamic_cast_1_ref(TYPE, T1, EXPR) dynamic_cast<TYPE<T1> &> (EXPR) - # define ACE_dynamic_cast_2_ref(TYPE, T1, T2, EXPR) dynamic_cast<TYPE<T1, T2> &> (EXPR) - # define ACE_dynamic_cast_3_ref(TYPE, T1, T2, T3, EXPR) dynamic_cast<TYPE<T1, T2, T3> &> (EXPR) - # define ACE_dynamic_cast_4_ref(TYPE, T1, T2, T3, T4, EXPR) dynamic_cast<TYPE<T1, T2, T3, T4> &> (EXPR) - # define ACE_dynamic_cast_5_ref(TYPE, T1, T2, T3, T4, T5, EXPR) dynamic_cast<TYPE<T1, T2, T3, T4, T5> &> (EXPR) -#endif /* ACE_LACKS_DEPRECATED_MACROS */ - # if !defined (ACE_CAST_CONST) // Sun CC 4.2, for example, requires const in reinterpret casts of // data members in const member functions. But, other compilers @@ -384,7 +227,7 @@ #if !defined (ACE_UNUSED_ARG) # if defined (__GNUC__) && ((__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))) # define ACE_UNUSED_ARG(a) (void) (a) -# elif defined (__GNUC__) || defined (ghs) || defined (__hpux) || defined (__sgi) || defined (__DECCXX) || defined (__rational__) || defined (__USLC__) || defined (ACE_RM544) || defined (__DCC__) || defined (__PGI) || defined (__TANDEM) +# elif defined (__GNUC__) || defined (ghs) || defined (__hpux) || defined (__DECCXX) || defined (__rational__) || defined (__USLC__) || defined (ACE_RM544) || defined (__DCC__) || defined (__PGI) || defined (__TANDEM) // Some compilers complain about "statement with no effect" with (a). // This eliminates the warnings, and no code is generated for the null // conditional statement. @note that may only be true if -O is enabled, @@ -399,11 +242,11 @@ # endif /* ghs || __GNUC__ || ..... */ #endif /* !ACE_UNUSED_ARG */ -#if defined (_MSC_VER) || defined(__sgi) || defined (ghs) || defined (__DECCXX) || defined(__BORLANDC__) || defined (ACE_RM544) || defined (__USLC__) || defined (__DCC__) || defined (__PGI) || defined (__TANDEM) || (defined (__HP_aCC) && (__HP_aCC < 40000 || __HP_aCC >= 60500)) +#if defined (_MSC_VER) || defined (ghs) || defined (__DECCXX) || defined(__BORLANDC__) || defined (ACE_RM544) || defined (__USLC__) || defined (__DCC__) || defined (__PGI) || defined (__TANDEM) || (defined (__HP_aCC) && (__HP_aCC < 40000 || __HP_aCC >= 60500)) # define ACE_NOTREACHED(a) -#else /* __sgi || ghs || ..... */ +#else /* ghs || ..... */ # define ACE_NOTREACHED(a) a -#endif /* __sgi || ghs || ..... */ +#endif /* ghs || ..... */ // ============================================================================ // ACE_ALLOC_HOOK* macros @@ -648,6 +491,10 @@ extern "C" u_long CLS##_Export _get_dll_unload_policy (void) \ # define ACE_GCC_DESTRUCTOR_ATTRIBUTE #endif +#ifndef ACE_HAS_TEMPLATE_TYPEDEFS +#define ACE_HAS_TEMPLATE_TYPEDEFS +#endif + #ifndef ACE_DEPRECATED # define ACE_DEPRECATED #endif diff --git a/dep/acelite/ace/config-mvs.h b/dep/acelite/ace/config-mvs.h index 3f438a776ba..ce2971025a0 100644 --- a/dep/acelite/ace/config-mvs.h +++ b/dep/acelite/ace/config-mvs.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-mvs.h 88495 2010-01-12 19:23:11Z olli $ +// $Id: config-mvs.h 92102 2010-09-30 08:14:15Z johnnyw $ // Config file for MVS with OpenEdition @@ -21,9 +21,7 @@ #define ACE_MVS // Preprocesor requires an extra argument -#ifndef ACE_USING_MCPP_PREPROCESSOR -# define ACE_CC_PREPROCESSOR_ARGS "-+ -E" -#endif +#define ACE_CC_PREPROCESSOR_ARGS "-+ -E" // See the README file in this directory // for a description of the following ACE_ macros @@ -68,7 +66,6 @@ #define ACE_HAS_STRBUF_T #define ACE_HAS_STRINGS #define ACE_HAS_SYSV_IPC -#define ACE_HAS_TEMPLATE_TYPEDEFS #define ACE_HAS_THREADS #define ACE_HAS_THREAD_SPECIFIC_STORAGE #define ACE_HAS_THR_C_DEST diff --git a/dep/acelite/ace/config-netbsd.h b/dep/acelite/ace/config-netbsd.h index 07b26c9cc1c..242b3af700a 100644 --- a/dep/acelite/ace/config-netbsd.h +++ b/dep/acelite/ace/config-netbsd.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-netbsd.h 89494 2010-03-15 20:11:18Z olli $ +// $Id: config-netbsd.h 91285 2010-08-05 08:29:30Z johnnyw $ #ifndef ACE_CONFIG_H #define ACE_CONFIG_H @@ -35,7 +35,6 @@ #define ACE_HAS_CLOCK_GETTIME 1 #define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES 1 #define ACE_HAS_DIRENT 1 -#define ACE_HAS_EXCEPTIONS 1 #define ACE_HAS_GETIFADDRS 1 #define ACE_HAS_GETPAGESIZE 1 #define ACE_HAS_GETPROGNAME 1 diff --git a/dep/acelite/ace/config-openvms.h b/dep/acelite/ace/config-openvms.h index ac57aad9707..33e2ff52d7a 100644 --- a/dep/acelite/ace/config-openvms.h +++ b/dep/acelite/ace/config-openvms.h @@ -1,15 +1,11 @@ /* -*- C++ -*- */ -// $Id: config-openvms.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-openvms.h 91685 2010-09-09 09:35:14Z johnnyw $ // The following configuration file is designed to work for OpenVMS 7.3-2 #ifndef ACE_CONFIG_H #define ACE_CONFIG_H -#if !defined (ACE_USE_RCSID) -# define ACE_USE_RCSID 0 -#endif - #ifdef __cplusplus #pragma message disable CODCAUUNR #pragma message disable CODEUNREACHABLE @@ -141,7 +137,7 @@ #define ACE_LACKS_STRRECVFD 1 #define ACE_LACKS_T_ERRNO 1 -/* POSIX threads ompatibilities */ +/* POSIX threads compatibilities */ #define ACE_LACKS_RWLOCK_T 1 #define ACE_LACKS_PTHREAD_KILL 1 #define ACE_LACKS_THREAD_PROCESS_SCOPING 1 @@ -170,7 +166,6 @@ #define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES 1 #define ACE_HAS_CPLUSPLUS_HEADERS 1 -#define ACE_HAS_EXCEPTIONS 1 #define ACE_LACKS_LINEBUFFERED_STREAMBUF 1 #define ACE_HAS_GPERF 1 @@ -183,7 +178,6 @@ #define ACE_HAS_STRING_CLASS 1 #define ACE_HAS_SVR4_DYNAMIC_LINKING 1 -#define ACE_HAS_TEMPLATE_TYPEDEFS 1 #define ACE_LACKS_NAMED_POSIX_SEM 1 #define ACE_LACKS_SYSV_SHMEM 1 #define ACE_LACKS_UNIX_DOMAIN_SOCKETS 1 diff --git a/dep/acelite/ace/config-qnx-neutrino.h b/dep/acelite/ace/config-qnx-neutrino.h index 86525567c38..8ba1b97e4c2 100644 --- a/dep/acelite/ace/config-qnx-neutrino.h +++ b/dep/acelite/ace/config-qnx-neutrino.h @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: config-qnx-neutrino.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-qnx-neutrino.h 92120 2010-10-01 12:00:01Z johnnyw $ // The following configuration file is designed to work for Neutrino // 2.0 (Beta) with GNU C++ and the POSIX (pthread) threads package. @@ -24,8 +24,6 @@ # endif /* __X86__ */ #endif /* __OPTIMIZE__ */ -#include "ace/config-g++-common.h" - // The following defines the Neutrino compiler. // gcc should know to call g++ as necessary #ifdef __GNUC__ @@ -34,6 +32,8 @@ # define ACE_CC_NAME ACE_TEXT ("NTO compiler ??") #endif +#include "ace/config-g++-common.h" + // /usr/nto/include/float.h defines // FLT_MAX_EXP 127 // DBL_MAX_EXP 1023 diff --git a/dep/acelite/ace/config-qnx-rtp-common.h b/dep/acelite/ace/config-qnx-rtp-common.h index 79eb2397b4f..9d9e0aced4e 100644 --- a/dep/acelite/ace/config-qnx-rtp-common.h +++ b/dep/acelite/ace/config-qnx-rtp-common.h @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: config-qnx-rtp-common.h 85074 2009-04-10 03:17:24Z mesnier_p $ +// $Id: config-qnx-rtp-common.h 92120 2010-10-01 12:00:01Z johnnyw $ // several macros common to various qnx neutrino version. #ifndef ACE_CONFIG_QNX_RTP_COMMON_H @@ -23,8 +23,6 @@ # endif /* __X86__ */ #endif /* __OPTIMIZE__ */ -#include "ace/config-g++-common.h" - // The following defines the Neutrino compiler. // gcc should know to call g++ as necessary #ifdef __GNUC__ @@ -33,6 +31,8 @@ # define ACE_CC_NAME ACE_TEXT ("QNX-RTP compiler ??") #endif +#include "ace/config-g++-common.h" + // /usr/nto/include/float.h defines // FLT_MAX_EXP 127 // DBL_MAX_EXP 1023 diff --git a/dep/acelite/ace/config-qnx-rtp.h b/dep/acelite/ace/config-qnx-rtp.h index c55a4abb988..02ee89bc5ef 100644 --- a/dep/acelite/ace/config-qnx-rtp.h +++ b/dep/acelite/ace/config-qnx-rtp.h @@ -1,9 +1,9 @@ // -*- C++ -*- -// $Id: config-qnx-rtp.h 80826 2008-03-04 14:51:23Z wotte $ +// $Id: config-qnx-rtp.h 91743 2010-09-13 18:24:51Z johnnyw $ // The following configuration file is designed to work for QNX RTP // GNU C++ and the POSIX (pthread) threads package. You can get QNX -// RTP at http://get.qnx.com. -// This header is intended to switch between configuration for +// RTP at http://get.qnx.com. +// This header is intended to switch between configuration for // various NTO versions. #ifndef ACE_CONFIG_QNX_RTP_H #define ACE_CONFIG_QNX_RTP_H diff --git a/dep/acelite/ace/config-suncc-common.h b/dep/acelite/ace/config-suncc-common.h index 3f0bae8a295..8033a4f5a7c 100644 --- a/dep/acelite/ace/config-suncc-common.h +++ b/dep/acelite/ace/config-suncc-common.h @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: config-suncc-common.h 81935 2008-06-12 22:01:53Z jtc $ +// $Id: config-suncc-common.h 91685 2010-09-09 09:35:14Z johnnyw $ #ifndef ACE_SUNCC_COMMON_H #define ACE_SUNCC_COMMON_H @@ -8,7 +8,6 @@ # define ACE_HAS_CPLUSPLUS_HEADERS # define ACE_HAS_STDCPP_STL_INCLUDES -# define ACE_HAS_TEMPLATE_TYPEDEFS # define ACE_HAS_STANDARD_CPP_LIBRARY 1 # define ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR # define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 @@ -30,18 +29,7 @@ # define ACE_IMPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) __extension__ extern template class SINGLETON_TYPE<CLASS, LOCK>; #endif /* ACE_HAS_CUSTOM_EXPORT_MACROS == 0 */ -// __EXCEPTIONS is defined with -fexceptions, the egcs default. It -// is not defined with -fno-exceptions, the ACE default for g++. -// ACE_HAS_EXCEPTIONS is defined in -// include/makeinclude/wrapper_macros.GNU, so this really isn't -// necessary. Just in case . . . -# if defined (__EXCEPTIONS) && !defined (ACE_HAS_EXCEPTIONS) -# define ACE_HAS_EXCEPTIONS -# endif /* __EXCEPTIONS && ! ACE_HAS_EXCEPTIONS */ - -# if defined (ACE_HAS_EXCEPTIONS) -# define ACE_NEW_THROWS_EXCEPTIONS -# endif /* ACE_HAS_EXCEPTIONS */ +#define ACE_NEW_THROWS_EXCEPTIONS #if (defined (i386) || defined (__i386__)) && !defined (ACE_SIZEOF_LONG_DOUBLE) # define ACE_SIZEOF_LONG_DOUBLE 12 diff --git a/dep/acelite/ace/config-sunos5.4-sunc++-4.x.h b/dep/acelite/ace/config-sunos5.4-sunc++-4.x.h index d7d0862e328..e4bc8239125 100644 --- a/dep/acelite/ace/config-sunos5.4-sunc++-4.x.h +++ b/dep/acelite/ace/config-sunos5.4-sunc++-4.x.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-sunos5.4-sunc++-4.x.h 87250 2009-10-28 11:57:17Z olli $ +// $Id: config-sunos5.4-sunc++-4.x.h 91285 2010-08-05 08:29:30Z johnnyw $ // The following configuration file is designed to work for SunOS 5.4 // platforms using the SunC++ 4.0.x compiler. @@ -176,11 +176,9 @@ #define ACE_HAS_GPERF #define ACE_HAS_DIRENT -# if defined (ACE_HAS_EXCEPTIONS) - // If exceptions are enabled and we are using Sun/CC then - // <operator new> throws an exception instead of returning 0. -# define ACE_NEW_THROWS_EXCEPTIONS -# endif /* ACE_HAS_EXCEPTIONS */ +// If exceptions are enabled and we are using Sun/CC then +// <operator new> throws an exception instead of returning 0. +#define ACE_NEW_THROWS_EXCEPTIONS #include /**/ "ace/post.h" #endif /* ACE_CONFIG_H */ diff --git a/dep/acelite/ace/config-sunos5.5.h b/dep/acelite/ace/config-sunos5.5.h index f16b50394bd..d3279b9d3b6 100644 --- a/dep/acelite/ace/config-sunos5.5.h +++ b/dep/acelite/ace/config-sunos5.5.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-sunos5.5.h 89494 2010-03-15 20:11:18Z olli $ +// $Id: config-sunos5.5.h 92102 2010-09-30 08:14:15Z johnnyw $ // This configuration file is designed to work for SunOS 5.5 platforms // using the following compilers: @@ -58,17 +58,11 @@ // If -compat=4 is turned on, the old 4.2 settings for iostreams are used, // but the newer, explicit instantiation is used (above) # if (__SUNPRO_CC_COMPAT >= 5) -# define ACE_HAS_TEMPLATE_TYPEDEFS # define ACE_HAS_STANDARD_CPP_LIBRARY 1 # define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 # define ACE_HAS_THR_C_DEST # endif /* __SUNPRO_CC_COMPAT >= 5 */ -# if defined (ACE_HAS_EXCEPTIONS) -# define ACE_HAS_NEW_NOTHROW -# else - // See /opt/SUNWspro_5.0/SC5.0/include/CC/stdcomp.h: -# define _RWSTD_NO_EXCEPTIONS 1 -# endif /* ! ACE_HAS_EXCEPTIONS */ +# define ACE_HAS_NEW_NOTHROW # elif (__SUNPRO_CC == 0x420) || (__SUNPRO_CC == 0x410) # define ACE_LACKS_PLACEMENT_OPERATOR_DELETE # endif /* __SUNPRO_CC >= 0x500 */ @@ -81,24 +75,9 @@ # define ACE_LACKS_LINEBUFFERED_STREAMBUF # define ACE_LACKS_SIGNED_CHAR - // ACE_HAS_EXCEPTIONS precludes -noex in - // include/makeinclude/platform_macros.GNU. But beware, we have - // seen problems with exception handling on multiprocessor - // UltraSparcs: threaded executables core dump when threads exit. - // This problem does not seem to appear on single-processor UltraSparcs. - // And, it is solved with the application of patch - // 104631-02 "C++ 4.2: Jumbo Patch for C++ 4.2 on Solaris SPARC" - // to Sun C++ 4.2. - // To provide optimum performance, ACE_HAS_EXCEPTIONS is disabled by - // default. It can be enabled by adding "exceptions=1" to the "make" - // invocation. See include/makeinclude/platform_sunos5_sunc++.GNU - // for details. - -# if defined (ACE_HAS_EXCEPTIONS) - // If exceptions are enabled and we are using Sun/CC then - // <operator new> throws an exception instead of returning 0. -# define ACE_NEW_THROWS_EXCEPTIONS -# endif /* ACE_HAS_EXCEPTIONS */ +// If exceptions are enabled and we are using Sun/CC then +// <operator new> throws an exception instead of returning 0. +#define ACE_NEW_THROWS_EXCEPTIONS /* If you want to disable threading with Sun CC, remove -mt from your CFLAGS, e.g., using make threads=0. */ @@ -384,16 +363,7 @@ # define ACE_CC_MAJOR_VERSION (__SUNPRO_CC >> 8) # define ACE_CC_MINOR_VERSION (__SUNPRO_CC & 0x00ff) # define ACE_CC_BETA_VERSION (0) -#elif defined (__GNUG__) -# define ACE_CC_MAJOR_VERSION __GNUC__ -# define ACE_CC_MINOR_VERSION __GNUC_MINOR__ -# define ACE_CC_BETA_VERSION (0) -# if __GNUC_MINOR__ >= 90 -# define ACE_CC_NAME ACE_TEXT ("egcs") -# else -# define ACE_CC_NAME ACE_TEXT ("g++") -# endif /* __GNUC_MINOR__ */ -#endif /* __GNUG__ */ +#endif /* __SUNPRO_CC */ #if defined (i386) && (_FILE_OFFSET_BITS==32) # define ACE_HAS_X86_STAT_MACROS diff --git a/dep/acelite/ace/config-sunos5.6.h b/dep/acelite/ace/config-sunos5.6.h index d100627a212..958e019cd1b 100644 --- a/dep/acelite/ace/config-sunos5.6.h +++ b/dep/acelite/ace/config-sunos5.6.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-sunos5.6.h 81935 2008-06-12 22:01:53Z jtc $ +// $Id: config-sunos5.6.h 91685 2010-09-09 09:35:14Z johnnyw $ // The following configuration file is designed to work for SunOS 5.6 // platforms using the SunC++ 4.x or g++ compilers. @@ -38,13 +38,7 @@ #ifndef ACE_TEMPLATES_REQUIRE_SOURCE #define ACE_TEMPLATES_REQUIRE_SOURCE 1 #endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ -#ifndef ACE_HAS_TEMPLATE_TYPEDEFS -#define ACE_HAS_TEMPLATE_TYPEDEFS 1 -#endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ // Forte 7 seems to botch this one... -#if __SUNPRO_CC == 0x540 -#undef ACE_HAS_TEMPLATE_TYPEDEFS -#endif #ifndef ACE_HAS_THR_C_DEST #define ACE_HAS_THR_C_DEST 1 #endif /* ACE_HAS_THR_C_DEST */ @@ -107,9 +101,6 @@ #define ACE_POSIX_AIOCB_PROACTOR #endif /* ACE_POSIX_AIOCB_PROACTOR */ -// SunOS 5.6 has a buggy select -#define ACE_HAS_LIMITED_SELECT - // SunOS 5.6 introduced shm_open, but need to turn on POSIX.1b or higher // to pick it up. #if defined (_POSIX_C_SOURCE) && (_POSIX_C_SOURCE > 2) diff --git a/dep/acelite/ace/config-sunos5.7.h b/dep/acelite/ace/config-sunos5.7.h index 60e1d993a13..b01b0d47708 100644 --- a/dep/acelite/ace/config-sunos5.7.h +++ b/dep/acelite/ace/config-sunos5.7.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-sunos5.7.h 80826 2008-03-04 14:51:23Z wotte $ +// $Id: config-sunos5.7.h 91581 2010-08-31 13:18:11Z shuston $ // The following configuration file is designed to work for SunOS 5.7 // (Solaris 7) platforms using the SunC++ 4.x, 5.x, or g++ compilers. @@ -54,10 +54,6 @@ #define ACE_HAS_AIO_CALLS #endif /* !ACE_HAS_AIO_CALLS */ -#ifdef ACE_HAS_LIMITED_SELECT -#undef ACE_HAS_LIMITED_SELECT -#endif /* ACE_HAS_LIMITED_SELECT */ - // SunOS 5.7 has socklen_t #define ACE_HAS_SOCKLEN_T diff --git a/dep/acelite/ace/config-tandem-nsk-mips-v2.h b/dep/acelite/ace/config-tandem-nsk-mips-v2.h index 61747272087..ff2111cf56e 100644 --- a/dep/acelite/ace/config-tandem-nsk-mips-v2.h +++ b/dep/acelite/ace/config-tandem-nsk-mips-v2.h @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: config-tandem-nsk-mips-v2.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-tandem-nsk-mips-v2.h 91685 2010-09-09 09:35:14Z johnnyw $ #ifndef ACE_CONFIG_NSK_H #define ACE_CONFIG_NSK_H @@ -336,9 +336,6 @@ typedef enum CMA_T_SCHED_POLICY { // Compiler specific parts //========================================================================= -// Compiler supports C++ exception handling -#define ACE_HAS_EXCEPTIONS - // Compiler/platform has correctly prototyped header files #define ACE_HAS_CPLUSPLUS_HEADERS @@ -355,10 +352,6 @@ typedef enum CMA_T_SCHED_POLICY { // .cpp files). #define ACE_TEMPLATES_REQUIRE_SOURCE -// Compiler implements templates that support typedefs inside -// of classes used as formal arguments to a template class. -#define ACE_HAS_TEMPLATE_TYPEDEFS - // Platform has its standard c++ library in the namespace std. #define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 @@ -373,9 +366,6 @@ typedef enum CMA_T_SCHED_POLICY { // Build options //========================================================================= -// Disable the inclusion of RCS ids in the generated code. -#define ACE_USE_RCSID 0 - // For debugging problems in os calls (but this doesn't work too well // since output is not interleaved properly with output from ACE_TRACE //# define ACE_OS_TRACE(X) ::printf(X) diff --git a/dep/acelite/ace/config-tandem-nsk-mips-v3.h b/dep/acelite/ace/config-tandem-nsk-mips-v3.h index e6c05a890b1..c037bed4ec8 100644 --- a/dep/acelite/ace/config-tandem-nsk-mips-v3.h +++ b/dep/acelite/ace/config-tandem-nsk-mips-v3.h @@ -1,6 +1,6 @@ // -*- C++ -*- // -// $Id: config-tandem-nsk-mips-v3.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-tandem-nsk-mips-v3.h 91685 2010-09-09 09:35:14Z johnnyw $ #ifndef ACE_CONFIG_NSK_H @@ -371,9 +371,6 @@ typedef enum CMA_T_SCHED_POLICY { // Compiler specific parts //========================================================================= -// Compiler supports C++ exception handling -#define ACE_HAS_EXCEPTIONS 1 - // Compiler/platform has correctly prototyped header files #define ACE_HAS_CPLUSPLUS_HEADERS @@ -390,10 +387,6 @@ typedef enum CMA_T_SCHED_POLICY { // .cpp files). #define ACE_TEMPLATES_REQUIRE_SOURCE -// Compiler implements templates that support typedefs inside -// of classes used as formal arguments to a template class. -#define ACE_HAS_TEMPLATE_TYPEDEFS - // Platform/Compiler supports a String class #define ACE_HAS_STRING_CLASS #define ACE_HAS_STDCPP_STL_INCLUDES @@ -438,9 +431,6 @@ typedef enum CMA_T_SCHED_POLICY { // Build options //========================================================================= -// Disable the inclusion of RCS ids in the generated code. -#define ACE_USE_RCSID 0 - // For debugging problems in os calls (but this doesn't work too well // since output is not interleaved properly with output from ACE_TRACE //# define ACE_OS_TRACE(X) ::printf(X) diff --git a/dep/acelite/ace/config-tandem.h b/dep/acelite/ace/config-tandem.h index 145c20abdaf..fa2869b3ca8 100644 --- a/dep/acelite/ace/config-tandem.h +++ b/dep/acelite/ace/config-tandem.h @@ -1,6 +1,6 @@ /* -*- C++ -*- */ // Testing TANDEM -// $Id: config-tandem.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-tandem.h 91781 2010-09-15 12:49:15Z johnnyw $ // The following configuration file is designed to work for Tandems NonStop-UX // 4.2MP platforms using the NCC 3.20 compiler. @@ -154,7 +154,6 @@ // Compiler/platform has threadspecific storage #define ACE_HAS_THREAD_SPECIFIC_STORAGE -//Platform supports thr_keydelete (e.g,. UNIXWARE) #define ACE_HAS_THR_MINSTACK // Tandem uses thr_minstack instead of thr_min_stack #define ACE_LACKS_PRI_T // Tandem lacks pri_t @@ -181,7 +180,6 @@ #define ACE_HAS_STANDARD_CPP_LIBRARY //Platform lacks madvise() (e.g., Linux) #define ACE_LACKS_MADVISE -//Compiler/platform lacks strcasecmp() (e.g., DG/UX, UNIXWARE, VXWORKS) #define ACE_LACKS_STRCASECMP // Defines the page size of the system. diff --git a/dep/acelite/ace/config-vxworks6.4.h b/dep/acelite/ace/config-vxworks6.4.h index d1fad781985..9a0487f36bf 100644 --- a/dep/acelite/ace/config-vxworks6.4.h +++ b/dep/acelite/ace/config-vxworks6.4.h @@ -1,5 +1,5 @@ //* -*- C++ -*- */ -// $Id: config-vxworks6.4.h 89494 2010-03-15 20:11:18Z olli $ +// $Id: config-vxworks6.4.h 91683 2010-09-09 09:07:49Z johnnyw $ // The following configuration file is designed to work for VxWorks // 6.4 platforms using one of these compilers: @@ -337,11 +337,6 @@ # define ACE_NTRACE 1 #endif /* ACE_NTRACE */ -// By default, don't include RCS Id strings in object code. -#if !defined (ACE_USE_RCSID) -#define ACE_USE_RCSID 0 -#endif /* !ACE_USE_RCSID */ - #if defined (ACE_HAS_IP_MULTICAST) # define ACE_LACKS_PERFECT_MULTICAST_FILTERING 1 #endif /* ACE_HAS_IP_MULTICAST */ diff --git a/dep/acelite/ace/config-win32-borland.h b/dep/acelite/ace/config-win32-borland.h index c3ae460482b..f5305d3b003 100644 --- a/dep/acelite/ace/config-win32-borland.h +++ b/dep/acelite/ace/config-win32-borland.h @@ -1,5 +1,5 @@ // -*- C++ -*- -//$Id: config-win32-borland.h 89292 2010-03-04 08:06:15Z johnnyw $ +//$Id: config-win32-borland.h 92102 2010-09-30 08:14:15Z johnnyw $ // The following configuration file contains defines for Borland compilers. @@ -33,12 +33,10 @@ # define ACE_CC_MINOR_VERSION (__BORLANDC__ % 0x100) # define ACE_CC_BETA_VERSION (0) -#ifndef ACE_USING_MCPP_PREPROCESSOR -# if (__BORLANDC__ >= 0x620) -# define ACE_CC_PREPROCESSOR_ARGS "-q -Sl -o%s" -# else -# define ACE_CC_PREPROCESSOR_ARGS "-q -P- -o%s" -# endif +#if (__BORLANDC__ >= 0x620) +# define ACE_CC_PREPROCESSOR_ARGS "-q -Sl -o%s" +#else +# define ACE_CC_PREPROCESSOR_ARGS "-q -P- -o%s" #endif // Automatically define WIN32 macro if the compiler tells us it is our @@ -110,13 +108,11 @@ #define ACE_EXPORT_NESTED_CLASSES 1 #define ACE_HAS_CPLUSPLUS_HEADERS 1 -#define ACE_HAS_EXCEPTIONS #define ACE_HAS_NONCONST_SELECT_TIMEVAL #define ACE_HAS_SIG_ATOMIC_T #define ACE_HAS_STANDARD_CPP_LIBRARY 1 #define ACE_HAS_STDCPP_STL_INCLUDES 1 #define ACE_HAS_STRING_CLASS 1 -#define ACE_HAS_TEMPLATE_TYPEDEFS 1 #define ACE_HAS_USER_MODE_MASKS 1 #define ACE_LACKS_ACE_IOSTREAM 1 #define ACE_LACKS_LINEBUFFERED_STREAMBUF 1 @@ -146,8 +142,10 @@ # define ACE_LACKS_PRAGMA_ONCE 1 #endif -#define ACE_LACKS_ISWCTYPE -#define ACE_LACKS_ISCTYPE +#if (__BORLANDC__ < 0x630) +# define ACE_LACKS_ISWCTYPE +# define ACE_LACKS_ISCTYPE +#endif #if (__BORLANDC__ < 0x620) // Older Borland compilers can't handle assembly in inline methods or diff --git a/dep/acelite/ace/config-win32-cegcc.h b/dep/acelite/ace/config-win32-cegcc.h index c29290d713f..4f115d69a53 100644 --- a/dep/acelite/ace/config-win32-cegcc.h +++ b/dep/acelite/ace/config-win32-cegcc.h @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: config-win32-cegcc.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-win32-cegcc.h 92102 2010-09-30 08:14:15Z johnnyw $ // // The following configuration file is designed to work for win32 @@ -14,15 +14,9 @@ # error Use config-win32.h in config.h instead of this header #endif /* ACE_CONFIG_WIN32_H */ -#define ACE_CC_NAME ACE_TEXT ("g++") #define ACE_CC_PREPROCESSOR "cpp" #define ACE_CC_PREPROCESOR_ARGS "" -// Why all this is not in config-g++-common.h? -#define ACE_CC_MAJOR_VERSION __GNUC__ -#define ACE_CC_MINOR_VERSION __GNUC_MINOR__ -#define ACE_CC_BETA_VERSION (0) - #if !defined (ACE_HAS_CEGCC) # error You do not seem to be using cegcc #endif diff --git a/dep/acelite/ace/config-win32-common.h b/dep/acelite/ace/config-win32-common.h index 0160a3742a1..95cc3d3d107 100644 --- a/dep/acelite/ace/config-win32-common.h +++ b/dep/acelite/ace/config-win32-common.h @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -// $Id: config-win32-common.h 88567 2010-01-15 10:21:49Z olli $ +// $Id: config-win32-common.h 92120 2010-10-01 12:00:01Z johnnyw $ #ifndef ACE_CONFIG_WIN32_COMMON_H @@ -114,7 +114,10 @@ // #endif // Define the special export macros needed to export symbols outside a dll -#if !defined(__BORLANDC__) && !defined (ACE_HAS_CUSTOM_EXPORT_MACROS) +#if !defined(__BORLANDC__) && (!defined (ACE_HAS_CUSTOM_EXPORT_MACROS) || (ACE_HAS_CUSTOM_EXPORT_MACROS == 0)) +#if defined (ACE_HAS_CUSTOM_EXPORT_MACROS) +#undef ACE_HAS_CUSTOM_EXPORT_MACROS +#endif #define ACE_HAS_CUSTOM_EXPORT_MACROS 1 #define ACE_Proper_Export_Flag __declspec (dllexport) #define ACE_Proper_Import_Flag __declspec (dllimport) @@ -163,11 +166,6 @@ #define ACE_HAS_GPERF -// By default, don't include RCS Id strings in object code. -#if !defined (ACE_USE_RCSID) -# define ACE_USE_RCSID 0 -#endif /* ! ACE_USE_RCSID */ - // ---------------- platform features or lack of them ------------- // By default WIN32 has FD_SETSIZE of 64, which places the limit @@ -302,12 +300,11 @@ #define ACE_MKDIR_LACKS_MODE #define ACE_SIZEOF_LONG_LONG 8 -// Green Hills Native x86 does not support __int64 keyword -// Neither does mingw32. + #if !defined (ACE_LACKS_LONGLONG_T) && !defined (__MINGW32__) #define ACE_INT64_TYPE signed __int64 #define ACE_UINT64_TYPE unsigned __int64 -#endif /* (ghs) */ +#endif #if defined (__MINGW32__) #define ACE_INT64_TYPE signed long long @@ -323,41 +320,13 @@ #define ACE_HAS_WTOI #define ACE_HAS_WTOL -// Compiler/platform correctly calls init()/fini() for shared -// libraries. - applied for DLLs ? -//define ACE_HAS_AUTOMATIC_INIT_FINI - -// Platform supports POSIX O_NONBLOCK semantics. -//define ACE_HAS_POSIX_NONBLOCK - -// Platform contains <poll.h>. -//define ACE_HAS_POLL - -// Platform supports the /proc file system. -//define ACE_HAS_PROC_FS - // Platform supports the rusage struct. #define ACE_HAS_GETRUSAGE -// Compiler/platform supports SVR4 signal typedef. -//define ACE_HAS_SVR4_SIGNAL_T - -// Platform provides <sys/filio.h> header. -//define ACE_HAS_SYS_FILIO_H - -// Platform supports ACE_TLI timod STREAMS module. -//define ACE_HAS_TIMOD_H - -// Platform supports ACE_TLI tiuser header. -//define ACE_HAS_TIUSER_H - // Platform provides ACE_TLI function prototypes. // For Win32, this is not really true, but saves a lot of hassle! #define ACE_HAS_TLI_PROTOTYPES -// Platform supports ACE_TLI. -//define ACE_HAS_TLI - // I'm pretty sure NT lacks these #define ACE_LACKS_UNIX_DOMAIN_SOCKETS diff --git a/dep/acelite/ace/config-win32-dmc.h b/dep/acelite/ace/config-win32-dmc.h index db6c7e9c8dc..77c4795b31c 100644 --- a/dep/acelite/ace/config-win32-dmc.h +++ b/dep/acelite/ace/config-win32-dmc.h @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: config-win32-dmc.h 87268 2009-10-29 21:06:06Z olli $ +// $Id: config-win32-dmc.h 92102 2010-09-30 08:14:15Z johnnyw $ // The following configuration file contains defines for Digital Mars compilers. @@ -28,10 +28,8 @@ # define ACE_CC_MAJOR_VERSION (1) # define ACE_CC_MINOR_VERSION (8) # define ACE_CC_BETA_VERSION (9) -# ifndef ACE_USING_MCPP_PREPROCESSOR -# define ACE_CC_PREPROCESSOR "DMC.EXE" -# define ACE_CC_PREPROCESSOR_ARGS "-E" -# endif +# define ACE_CC_PREPROCESSOR "DMC.EXE" +# define ACE_CC_PREPROCESSOR_ARGS "-E" // Microsoft's standard cpp library auto_ptr doesn't have reset (). # define ACE_AUTO_PTR_LACKS_RESET @@ -46,25 +44,19 @@ #define ACE_WCSDUP_EQUIVALENT ::_wcsdup // This section above was extracted from config-win32-msvc -# define ACE_EXPORT_NESTED_CLASSES 1 -# define ACE_HAS_CPLUSPLUS_HEADERS 1 -//# define ACE_HAS_EXCEPTIONS 1 -# define ACE_HAS_NONCONST_SELECT_TIMEVAL 1 -# define ACE_HAS_SIG_ATOMIC_T 1 -# define ACE_HAS_STANDARD_CPP_LIBRARY 0 -# define ACE_HAS_STDCPP_STL_INCLUDES 1 -# define ACE_HAS_STRING_CLASS 1 -# define ACE_HAS_TEMPLATE_TYPEDEFS 1 -# define ACE_HAS_USER_MODE_MASKS 1 -//# define ACE_LACKS_LINEBUFFERED_STREAMBUF 1 -# define ACE_LACKS_STRPTIME 1 -//# define ACE_LACKS_PRAGMA_ONCE 1 -//# define ACE_NEW_THROWS_EXCEPTIONS 1 -# define ACE_SIZEOF_LONG_DOUBLE 10 -# define ACE_TEMPLATES_REQUIRE_SOURCE 1 -// Changed ACE_TEXT to ACE_TEXT in the following two lines -# define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 -# define ACE_HAS_STRBUF_T +#define ACE_EXPORT_NESTED_CLASSES 1 +#define ACE_HAS_CPLUSPLUS_HEADERS 1 +#define ACE_HAS_NONCONST_SELECT_TIMEVAL 1 +#define ACE_HAS_SIG_ATOMIC_T 1 +#define ACE_HAS_STANDARD_CPP_LIBRARY 0 +#define ACE_HAS_STDCPP_STL_INCLUDES 1 +#define ACE_HAS_STRING_CLASS 1 +#define ACE_HAS_USER_MODE_MASKS 1 +#define ACE_LACKS_STRPTIME 1 +#define ACE_SIZEOF_LONG_DOUBLE 10 +#define ACE_TEMPLATES_REQUIRE_SOURCE 1 +#define ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB 1 +#define ACE_HAS_STRBUF_T #define ACE_HAS_3_PARAM_WCSTOK #define ACE_USES_OLD_IOSTREAMS #define ACE_LACKS_UCONTEXT_H diff --git a/dep/acelite/ace/config-win32-interix.h b/dep/acelite/ace/config-win32-interix.h index d0365ac0399..2fa9695996c 100644 --- a/dep/acelite/ace/config-win32-interix.h +++ b/dep/acelite/ace/config-win32-interix.h @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: config-win32-interix.h 87578 2009-11-16 14:41:47Z olli $ +// $Id: config-win32-interix.h 91285 2010-08-05 08:29:30Z johnnyw $ // The following configuration file is designed to work for Interix // platforms using GNU g++ (Interix == Microsoft's Services for Unix) @@ -18,7 +18,6 @@ #define ACE_HAS_BROKEN_T_ERROR #define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES #define ACE_HAS_DIRENT -#define ACE_HAS_EXCEPTIONS #define ACE_HAS_GETPAGESIZE #define ACE_HAS_GETRUSAGE #define ACE_HAS_GETRUSAGE_PROTOTYPE diff --git a/dep/acelite/ace/config-win32-mingw.h b/dep/acelite/ace/config-win32-mingw.h index 0a0ff292f8c..58635b74ca8 100644 --- a/dep/acelite/ace/config-win32-mingw.h +++ b/dep/acelite/ace/config-win32-mingw.h @@ -1,5 +1,5 @@ // -*- C++ -*- -// $Id: config-win32-mingw.h 87167 2009-10-19 19:33:53Z olli $ +// $Id: config-win32-mingw.h 92102 2010-09-30 08:14:15Z johnnyw $ // // The following configuration file is designed to work for win32 @@ -14,15 +14,9 @@ # error Use config-win32.h in config.h instead of this header #endif /* ACE_CONFIG_WIN32_H */ -#define ACE_CC_NAME ACE_TEXT ("g++") #define ACE_CC_PREPROCESSOR "cpp" #define ACE_CC_PREPROCESOR_ARGS "" -// Why all this is not in config-g++-common.h? -#define ACE_CC_MAJOR_VERSION __GNUC__ -#define ACE_CC_MINOR_VERSION __GNUC_MINOR__ -#define ACE_CC_BETA_VERSION (0) - #if !defined(__MINGW32__) # error You do not seem to be using mingw32 #endif diff --git a/dep/acelite/ace/config-win32-msvc-10.h b/dep/acelite/ace/config-win32-msvc-10.h index 1867aa010f2..f915cb22ca9 100644 --- a/dep/acelite/ace/config-win32-msvc-10.h +++ b/dep/acelite/ace/config-win32-msvc-10.h @@ -3,7 +3,7 @@ /** * @file config-win32-msvc-10.h * - * $Id: config-win32-msvc-10.h 87224 2009-10-26 07:49:31Z olli $ + * $Id: config-win32-msvc-10.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @brief Microsoft Visual C++ 10.0 configuration file. * @@ -57,10 +57,6 @@ # define ACE_FILENO_EQUIVALENT(X) (_get_osfhandle (::_fileno (X))) #endif -#ifndef ACE_HAS_EXCEPTIONS -# define ACE_HAS_EXCEPTIONS -#endif - // Windows Mobile 6 doesn't do sig_atomic_t, but maybe future versions will. # if !defined (_WIN32_WCE) || (_WIN32_WCE > 0x601) # define ACE_HAS_SIG_ATOMIC_T @@ -82,7 +78,6 @@ #define ACE_LACKS_STRRECVFD #define ACE_HAS_CPLUSPLUS_HEADERS -#define ACE_HAS_TEMPLATE_TYPEDEFS #define ACE_TEMPLATES_REQUIRE_SOURCE // Platform provides ACE_TLI function prototypes. diff --git a/dep/acelite/ace/config-win32-msvc-7.h b/dep/acelite/ace/config-win32-msvc-7.h index 30965d6772f..d7fb64078d9 100644 --- a/dep/acelite/ace/config-win32-msvc-7.h +++ b/dep/acelite/ace/config-win32-msvc-7.h @@ -3,7 +3,7 @@ /** * @file config-win32-msvc-7.h * - * $Id: config-win32-msvc-7.h 87251 2009-10-28 12:00:12Z olli $ + * $Id: config-win32-msvc-7.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @brief Microsoft Visual C++ 7.0 configuration file. * @@ -46,10 +46,6 @@ #define ACE_STRNCASECMP_EQUIVALENT ::_strnicmp #define ACE_WCSDUP_EQUIVALENT ::_wcsdup -#if !defined (ACE_HAS_WINCE) && !defined (ACE_HAS_EXCEPTIONS) -#define ACE_HAS_EXCEPTIONS -#endif /* ACE_HAS_WINCE */ - #define ACE_LACKS_STRPTIME #define ACE_HAS_SIG_ATOMIC_T @@ -57,7 +53,6 @@ #define ACE_LACKS_STRRECVFD #define ACE_HAS_CPLUSPLUS_HEADERS -#define ACE_HAS_TEMPLATE_TYPEDEFS #define ACE_TEMPLATES_REQUIRE_SOURCE // Platform provides ACE_TLI function prototypes. diff --git a/dep/acelite/ace/config-win32-msvc-8.h b/dep/acelite/ace/config-win32-msvc-8.h index fafdd62d422..ef13986f906 100644 --- a/dep/acelite/ace/config-win32-msvc-8.h +++ b/dep/acelite/ace/config-win32-msvc-8.h @@ -3,7 +3,7 @@ /** * @file config-win32-msvc-8.h * - * $Id: config-win32-msvc-8.h 87224 2009-10-26 07:49:31Z olli $ + * $Id: config-win32-msvc-8.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @brief Microsoft Visual C++ 8.0 configuration file. * @@ -59,10 +59,6 @@ # define ACE_FILENO_EQUIVALENT(X) (_get_osfhandle (::_fileno (X))) #endif -#ifndef ACE_HAS_EXCEPTIONS -# define ACE_HAS_EXCEPTIONS -#endif - // Windows Mobile 6 doesn't do sig_atomic_t, but maybe future versions will. // This has been true up thrugh the versions. We don't have any indication // that this might be supported in the future, but it is an easy enough fix @@ -86,7 +82,6 @@ #define ACE_LACKS_STRRECVFD #define ACE_HAS_CPLUSPLUS_HEADERS -#define ACE_HAS_TEMPLATE_TYPEDEFS #define ACE_TEMPLATES_REQUIRE_SOURCE // Platform provides ACE_TLI function prototypes. diff --git a/dep/acelite/ace/config-win32-msvc-9.h b/dep/acelite/ace/config-win32-msvc-9.h index bd6bcf60fc4..884f975347e 100644 --- a/dep/acelite/ace/config-win32-msvc-9.h +++ b/dep/acelite/ace/config-win32-msvc-9.h @@ -3,7 +3,7 @@ /** * @file config-win32-msvc-9.h * - * $Id: config-win32-msvc-9.h 87224 2009-10-26 07:49:31Z olli $ + * $Id: config-win32-msvc-9.h 91685 2010-09-09 09:35:14Z johnnyw $ * * @brief Microsoft Visual C++ 9.0 configuration file. * @@ -57,10 +57,6 @@ # define ACE_FILENO_EQUIVALENT(X) (_get_osfhandle (::_fileno (X))) #endif -#ifndef ACE_HAS_EXCEPTIONS -# define ACE_HAS_EXCEPTIONS -#endif - // Windows Mobile 6 doesn't do sig_atomic_t, but maybe future versions will. # if !defined (_WIN32_WCE) || (_WIN32_WCE > 0x601) # define ACE_HAS_SIG_ATOMIC_T @@ -82,7 +78,6 @@ #define ACE_LACKS_STRRECVFD #define ACE_HAS_CPLUSPLUS_HEADERS -#define ACE_HAS_TEMPLATE_TYPEDEFS #define ACE_TEMPLATES_REQUIRE_SOURCE // Platform provides ACE_TLI function prototypes. diff --git a/dep/acelite/ace/config-win32-msvc.h b/dep/acelite/ace/config-win32-msvc.h index 6f62477b9dd..6b84ac2348c 100644 --- a/dep/acelite/ace/config-win32-msvc.h +++ b/dep/acelite/ace/config-win32-msvc.h @@ -2,7 +2,7 @@ /** * @file config-win32-msvc.h * - * $Id: config-win32-msvc.h 85785 2009-06-24 18:20:42Z mitza $ + * $Id: config-win32-msvc.h 92120 2010-10-01 12:00:01Z johnnyw $ * * @brief Microsoft Visual C++ configuration file. * @@ -22,10 +22,8 @@ #endif /* ACE_CONFIG_WIN32_H */ #define ACE_CC_NAME ACE_TEXT ("Visual C++") -#ifndef ACE_USING_MCPP_PREPROCESSOR -# define ACE_CC_PREPROCESSOR "CL.EXE" -# define ACE_CC_PREPROCESSOR_ARGS "-nologo -E" -#endif +#define ACE_CC_PREPROCESSOR "CL.EXE" +#define ACE_CC_PREPROCESSOR_ARGS "-nologo -E" #define ACE_CC_MAJOR_VERSION (_MSC_VER / 100 - 6) #define ACE_CC_MINOR_VERSION (_MSC_VER % 100) @@ -140,7 +138,7 @@ // To resume any of these warning: #pragma warning(default: 4xxx) // which should be placed after these defines -#if !defined (ALL_WARNINGS) && defined(_MSC_VER) && !defined(ghs) && !defined(__MINGW32__) +#if !defined (ALL_WARNINGS) && defined(_MSC_VER) && !defined(__MINGW32__) # pragma warning(disable: 4127) /* constant expression for TRACE/ASSERT */ # pragma warning(disable: 4134) /* message map member fxn casts */ # pragma warning(disable: 4511) /* private copy constructors are good to have */ diff --git a/dep/acelite/ace/config-win32.h b/dep/acelite/ace/config-win32.h index af946518cae..89d8d68bc65 100644 --- a/dep/acelite/ace/config-win32.h +++ b/dep/acelite/ace/config-win32.h @@ -3,7 +3,7 @@ /** * @file config-win32.h * - * $Id: config-win32.h 85057 2009-04-08 10:59:58Z msmit $ + * $Id: config-win32.h 92120 2010-10-01 12:00:01Z johnnyw $ * * @brief Microsoft Windows configuration file. * @@ -35,8 +35,6 @@ # include "ace/config-win32-borland.h" #elif defined (_MSC_VER) # include "ace/config-win32-msvc.h" -#elif defined (ghs) -# include "ace/config-win32-ghs.h" #elif defined (ACE_HAS_CEGCC) //need to be prior to MINGW32 # include "ace/config-win32-cegcc.h" #elif defined (__MINGW32__) diff --git a/dep/acelite/ace/config.h.in b/dep/acelite/ace/config.h.in deleted file mode 100644 index aa09aa48bf6..00000000000 --- a/dep/acelite/ace/config.h.in +++ /dev/null @@ -1,2204 +0,0 @@ -/* ace/config.h.in. Generated from configure.ac by autoheader. */ - - -#ifndef ACE_CONFIG_H -#define ACE_CONFIG_H - -// ACE configuration header file - - - - -/* Compiler/platform standard C++ auto_ptr implementation lacks reset() method - */ -#undef ACE_AUTO_PTR_LACKS_RESET - -/* Enable ACE_Timeprobes */ -#undef ACE_COMPILE_TIMEPROBES - -/* */ -#undef ACE_DEFAULT_BASE_ADDR - -/* */ -#undef ACE_DEFAULT_BASE_ADDRL - -/* */ -#undef ACE_DEFAULT_CLOSE_ALL_HANDLES - -/* */ -#undef ACE_DEFAULT_MAX_SOCKET_BUFSIZ - -/* The default number of handles the select()-based reactor should handle */ -#undef ACE_DEFAULT_SELECT_REACTOR_SIZE - -/* Number of TSS keys, with ACE_HAS_TSS_EMULATION _only_. Defaults to 64. */ -#undef ACE_DEFAULT_THREAD_KEYS - -/* Define this if you don't want debug version ACE search for debug version - DLLs first before looking for the DLL names specified. */ -#undef ACE_DISABLE_DEBUG_DLL_CHECK - -/* Do not include emulation for timed semaphore acquisitions. */ -#undef ACE_DISABLE_POSIX_SEM_TIMEOUT_EMULATION - -/* Define to 1 to disable swapping swapping CDR on read */ -#undef ACE_DISABLE_SWAP_ON_READ - -/* Define to DLL file suffix */ -#undef ACE_DLL_SUFFIX - -/* Define to 1 to enable swapping swapping CDR on write */ -#undef ACE_ENABLE_SWAP_ON_WRITE - -/* Compiler requires template args when explicitly calling template - destructor. */ -#undef ACE_EXPLICIT_TEMPLATE_DESTRUCTOR_TAKES_ARGS - -/* Define to 1 if the getsockname() and getpeername() return random values in - the sockaddr_in.sin_zero field. */ -#undef ACE_GETNAME_RETURNS_RANDOM_SIN_ZERO - -/* Uses ctime_r & asctime_r with only two parameters vs. three. */ -#undef ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R - -/* Define to 1 if platform has 2 parameter sched_getaffinity() */ -#undef ACE_HAS_2_PARAM_SCHED_GETAFFINITY - -/* Define to 1 if platform has 2 parameter sched_setaffinity() */ -#undef ACE_HAS_2_PARAM_SCHED_SETAFFINITY - -/* Define to 1 if platform has 3 parameter readdir_r() */ -#undef ACE_HAS_3_PARAM_READDIR_R - -/* Define to 1 if platform has 3 parameter wcstok() */ -#undef ACE_HAS_3_PARAM_WCSTOK - -/* Platform has BSD 4.4 sendmsg()/recvmsg() APIs. */ -#undef ACE_HAS_4_4BSD_SENDMSG_RECVMSG - -/* Platform supports Asynchronous IO calls */ -#undef ACE_HAS_AIO_CALLS - -/* Platform has AIX4 ::read_real_time() */ -#undef ACE_HAS_AIX_HI_RES_TIMER - -/* Compiler/platform supports alloca(). */ -#undef ACE_HAS_ALLOCA - -/* Compiler/platform has <alloca.h> */ -#undef ACE_HAS_ALLOCA_H - -/* Define to 1 if system should use Alpha's cycle counter */ -#undef ACE_HAS_ALPHA_TIMER - -/* Use ACE's alternate cuserid() implementation since a system cuserid() may - not exist, or it is not desirable to use it. The implementation requires - ACE_LACKS_PWD_FUNCTIONS to be undefined and that the geteuid() system call - exists. */ -#undef ACE_HAS_ALT_CUSERID - -/* Compiler/platform correctly calls init()/fini() for shared libraries. */ -#undef ACE_HAS_AUTOMATIC_INIT_FINI - -/* Compiler/platform has "big" fd_set, i.e. large number of bits set in fd_set - passed back from select(). */ -#undef ACE_HAS_BIG_FD_SET - -/* Platform sendv() does not work properly with datagrams, i.e. it fails when - the iovec size is IOV_MAX. */ -#undef ACE_HAS_BROKEN_DGRAM_SENDV - -/* Platform doesn't cast MAP_FAILED to a (void *). */ -#undef ACE_HAS_BROKEN_MAP_FAILED - -/* HP/UX does not wrap the mmap(2) header files with extern "C". */ -#undef ACE_HAS_BROKEN_MMAP_H - -/* Platform headers don't support <msg.h> prototypes */ -#undef ACE_HAS_BROKEN_MSG_H - -/* Platform defines struct timespec in <sys/timers.h> */ -#undef ACE_HAS_BROKEN_POSIX_TIME - -/* OS/compiler's header files are inconsistent with libC definition of - rand_r(). */ -#undef ACE_HAS_BROKEN_RANDR - -/* Compiler/platform has the wrong prototype for t_error(), i.e., t_error(char - *) rather than t_error(const char *). */ -#undef ACE_HAS_BROKEN_T_ERROR - -/* Platform has <bstring.h> (which contains bzero() prototype) */ -#undef ACE_HAS_BSTRING - -/* Define to 1 if platform has bswap16(). */ -#undef ACE_HAS_BSWAP16 - -/* Define to 1 if platform has bswap32(). */ -#undef ACE_HAS_BSWAP32 - -/* Define to 1 if platform has bswap64(). */ -#undef ACE_HAS_BSWAP64 - -/* Define to 1 if platform has bswap_16(). */ -#undef ACE_HAS_BSWAP_16 - -/* Define to 1 if platform has bswap_32(). */ -#undef ACE_HAS_BSWAP_32 - -/* Define to 1 if platform has bswap_64(). */ -#undef ACE_HAS_BSWAP_64 - -/* Define to 1 if platform has the <bytesex.h> header file. */ -#undef ACE_HAS_BYTESEX_H - -/* Define to 1 if platform has the <byteswap.h> header file. */ -#undef ACE_HAS_BYTESWAP_H - -/* Platform supports the Win32 CancelIO() function. (WinNT 4.0 and beyond) */ -#undef ACE_HAS_CANCEL_IO - -/* OS/platform uses char * for dlopen/dlsym args, rather than const char *. */ -#undef ACE_HAS_CHARPTR_DL - -/* Define to 1 if arg 2 of 'shmat' is char *' */ -#undef ACE_HAS_CHARPTR_SHMAT - -/* Define to 1 if arg 1 of 'shmdt' is char *' */ -#undef ACE_HAS_CHARPTR_SHMDT - -/* OS/platform uses char * for sockopt, rather than const char * */ -#undef ACE_HAS_CHARPTR_SOCKOPT - -/* Define to 1 if platform has clock_gettime(). */ -#undef ACE_HAS_CLOCK_GETTIME - -/* Define to 1 if platform has clock_settime(). */ -#undef ACE_HAS_CLOCK_SETTIME - -/* OS header files have some problems with XTI (HP/UX 11). */ -#undef ACE_HAS_CONFLICTING_XTI_MACROS - -/* Prototypes for both signal() and struct sigaction are consistent. */ -#undef ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES - -/* Platform has swab(const char*, char*, ssize_t) variant. */ -#undef ACE_HAS_CONST_CHAR_SWAB - -/* Compiler/platform has correctly prototyped header files. */ -#undef ACE_HAS_CPLUSPLUS_HEADERS - -/* Define to 1 if the system has the type `cpu_set_t'. */ -#undef ACE_HAS_CPU_SET_T - -/* Platform defines custom DSO/DLL symbol export macros. */ -#undef ACE_HAS_CUSTOM_EXPORT_MACROS - -/* Platform supports /dev/poll character device. */ -#undef ACE_HAS_DEV_POLL - -/* Platform supports operations on directories via struct dirent, readdir_r, - etc. */ -#undef ACE_HAS_DIRENT - -/* Build ACE using the frigging PC DLL nonsense... */ -#undef ACE_HAS_DLL - -/* Define to 1 if the dlsym() call segfaults when passed an invalid handle. */ -#undef ACE_HAS_DLSYM_SEGFAULT_ON_INVALID_HANDLE - -/* Platform (Linux) supports event poll interface. */ -#undef ACE_HAS_EVENT_POLL - -/* Compiler supports C++ exception handling. */ -#undef ACE_HAS_EXCEPTIONS - -/* Platform has Fast-Light (FL) toolkit installed. */ -#undef ACE_HAS_FL - -/* Define to 1 if compiler has builtin atomic support */ -#undef ACE_HAS_GCC_ATOMIC_BUILTINS - -/* Define to 1 if platform has getifaddrs(). */ -#undef ACE_HAS_GETIFADDRS - -/* Platform supports getpagesize() call (otherwise, ACE_PAGE_SIZE must be - defined, except on Win32). */ -#undef ACE_HAS_GETPAGESIZE - -/* Define to 1 if platform has getprogname(). */ -#undef ACE_HAS_GETPROGNAME - -/* Define to 1 if platform has getrusage(). */ -#undef ACE_HAS_GETRUSAGE - -/* Define to 1 if platform has the declaration of getrusage(). */ -#undef ACE_HAS_GETRUSAGE_PROTOTYPE - -/* Enable use of GNU template repositories. GNU C++ w/repo patch and EGCS only - */ -#undef ACE_HAS_GNU_REPO - -/* The GPERF utility is compiled for this platform */ -#undef ACE_HAS_GPERF - -/* Optimize ACE_Handle_Set::count_bits for select() operations (common case) - */ -#undef ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT - -/* Define to 1 if system has SunOS high resolution timer. */ -#undef ACE_HAS_HI_RES_TIMER - -/* Define to 1 if platform has the <ia32intrin.h> header file. */ -#undef ACE_HAS_IA32INTRIN_H - -/* Define to 1 if platform has the <ia64intrin.h> header file. */ -#undef ACE_HAS_IA64INTRIN_H - -/* Defined to 1 if platform supports ICMP over raw sockets */ -#undef ACE_HAS_ICMP_SUPPORT - -/* Define to 1 if the system has the type `idtype_t'. */ -#undef ACE_HAS_IDTYPE_T - -/* Inline all the static class OS methods to remove call overhead Note: This - gets defined by OS.h if __ACE_INLINE__ is defined */ -#undef ACE_HAS_INLINED_OSCALLS - -/* Define to 1 if the system has the type `int16_t'. */ -#undef ACE_HAS_INT16_T - -/* Define to 1 if the system has the type `int32_t'. */ -#undef ACE_HAS_INT32_T - -/* Define to 1 if the system has the type `int64_t'. */ -#undef ACE_HAS_INT64_T - -/* Define to 1 if the system has the type `int8_t'. */ -#undef ACE_HAS_INT8_T - -/* Define to 1 if the system supports x86/x86_64 inline assembly */ -#undef ACE_HAS_INTEL_ASSEMBLY - -/* Platform supports the intrinsic interlocked optimizations. */ -#undef ACE_HAS_INTRINSIC_INTERLOCKED - -/* Define to 1 if platform has the <intrin.h> header file. */ -#undef ACE_HAS_INTRIN_H - -/* Platform supports IPv6 */ -#undef ACE_HAS_IPV6 - -/* Platform supports IP multicast */ -#undef ACE_HAS_IP_MULTICAST - -/* Platform supports the very odd IRIX 6.2 threads... */ -#undef ACE_HAS_IRIX62_THREADS - -/* Define to 1 if platform has the declaration of isastream(). */ -#undef ACE_HAS_ISASTREAM_PROTOTYPE - -/* Define to 1 if platform has itoa(). */ -#undef ACE_HAS_ITOA - -/* The rusage_t structure has only two fields. */ -#undef ACE_HAS_LIMITED_RUSAGE_T - -/* Define to 1 if system has Linux version of sysinfo(). */ -#undef ACE_HAS_LINUX_SYSINFO - -/* Platform supports llseek(). This should not be defined if ACE_HAS_LSEEK64 - is defined. */ -#undef ACE_HAS_LLSEEK - -/* Platform defines MAP_FAILED as a long constant. */ -#undef ACE_HAS_LONG_MAP_FAILED - -/* Platform supports lseek64(). This should not be defined if ACE_HAS_LLSEEK - is defined. */ -#undef ACE_HAS_LSEEK64 - -/* */ -#undef ACE_HAS_LYNXOS4_SIGNALS - -/* Enabled malloc statistics collection. */ -#undef ACE_HAS_MALLOC_STATS - -/* Define to 1 if platform has memchr(). */ -#undef ACE_HAS_MEMCHR - -/* Define to 1 if unrolled ACE_OS::fast_memcpy() is faster than system - memcpy() */ -#undef ACE_HAS_MEMCPY_LOOP_UNROLL - -/* Platform supports Microsoft Foundation Classes */ -#undef ACE_HAS_MFC - -/* Define to 1 if platform has mkdir(). */ -#undef ACE_HAS_MKDIR - -/* Platform supports recvmsg and sendmsg */ -#undef ACE_HAS_MSG - -/* Platform supports MT safe mktime() call (do any of them?) */ -#undef ACE_HAS_MT_SAFE_MKTIME - -/* Sockets may be called in multi-threaded programs */ -#undef ACE_HAS_MT_SAFE_SOCKETS - -/* Compiler supports timed mutex acquisitions (e.g. - pthread_mutex_timedlock()). */ -#undef ACE_HAS_MUTEX_TIMEOUTS - -/* Define to 1 if platform has nanosleep(). */ -#undef ACE_HAS_NANOSLEEP - -/* Define to 1 if platform has the <new.h> header file. */ -#undef ACE_HAS_NEW_H - -/* Compiler supports new (std::nothrow) */ -#undef ACE_HAS_NEW_NOTHROW - -/* Platform provides new style C++ <new> header */ -#undef ACE_HAS_NEW_NO_H - -/* Define to 1 if system has nonconst FD_ISSET() macro. */ -#undef ACE_HAS_NONCONST_FD_ISSET - -/* Platform uses non-const char * in calls to gethostbyaddr, gethostbyname, - getservbyname */ -#undef ACE_HAS_NONCONST_GETBY - -/* Platform has a non-const parameter to msgsnd() (e.g., SCO). */ -#undef ACE_HAS_NONCONST_MSGSND - -/* Platform omits const qualifier from iovec parameter in readv() prototype. - */ -#undef ACE_HAS_NONCONST_READV - -/* Platform's select() uses non-const timeval* (only found on Linux right now) - */ -#undef ACE_HAS_NONCONST_SELECT_TIMEVAL - -/* Platform omits const qualifier from msghdr parameter in sendmsg() - prototype. */ -#undef ACE_HAS_NONCONST_SENDMSG - -/* Platform omits const qualifier from rlimit parameter in setrlimit() - prototype. */ -#undef ACE_HAS_NONCONST_SETRLIMIT - -/* Platform has swab(char*, char*, ssize_t) variant. */ -#undef ACE_HAS_NONCONST_SWAB - -/* Platform omits const qualifier from iovec parameter in writev() prototype. - */ -#undef ACE_HAS_NONCONST_WRITEV - -/* Causes the ACE_Object_Manager instance to be created in main (int, char - *[]), instead of as a static (global) instance. */ -#undef ACE_HAS_NONSTATIC_OBJECT_MANAGER - -/* Compiler/platform uses old malloc()/free() prototypes (ugh) */ -#undef ACE_HAS_OLD_MALLOC - -/* Platform, e.g., Solaris 2.5, only supports SCHED_OTHER POSIX scheduling - policy. */ -#undef ACE_HAS_ONLY_SCHED_OTHER - -/* Use the semaphore implementation of ACE_Message_Queue rather than the - emulated condition variable (NT and VxWorks). */ -#undef ACE_HAS_OPTIMIZED_MESSAGE_QUEUE - -/* timezone* 2nd parameter & no prototype */ -#undef ACE_HAS_OSF1_GETTIMEOFDAY - -/* Platform supports the OSF TLI timod STREAMS module */ -#undef ACE_HAS_OSF_TIMOD_H - -/* Define to 1 if platform has the <pdh.h> header file. */ -#undef ACE_HAS_PDH_H - -/* Define to 1 if system is using Intel Pentium(tm) processor */ -#undef ACE_HAS_PENTIUM - -/* Platform contains <poll.h> */ -#undef ACE_HAS_POLL - -/* Platform supports "position-independent" features provided by - ACE_Based_Pointer<>. */ -#undef ACE_HAS_POSITION_INDEPENDENT_POINTERS - -/* Platform supports POSIX getpwnam_r() function */ -#undef ACE_HAS_POSIX_GETPWNAM_R - -/* Platform supports POSIX O_NONBLOCK semantics */ -#undef ACE_HAS_POSIX_NONBLOCK - -/* Platform supports POSIX realtime signals */ -#undef ACE_HAS_POSIX_REALTIME_SIGNALS - -/* Platform supports POSIX real-time semaphores (e.g., VxWorks and Solaris) */ -#undef ACE_HAS_POSIX_SEM - -/* Platform supports timed POSIX semaphore acquisitions (sem_timedwait()). */ -#undef ACE_HAS_POSIX_SEM_TIMEOUT - -/* Platform supports the POSIX struct timespec type */ -#undef ACE_HAS_POSIX_TIME - -/* Define to 1 if system should use PowerPC's cycle counter */ -#undef ACE_HAS_POWERPC_TIMER - -/* OS has priocntl (2) */ -#undef ACE_HAS_PRIOCNTL - -/* Platform supports the /proc file system and defines tid_t in <sys/procfs.h> - */ -#undef ACE_HAS_PROC_FS - -/* Define to 1 if the system has the type `prusage_t'. */ -#undef ACE_HAS_PRUSAGE_T - -/* Define to 1 if platform has POSIX threads */ -#undef ACE_HAS_PTHREADS - -/* Platform supports POSIX Threads .4a Draft 4 */ -#undef ACE_HAS_PTHREADS_DRAFT4 - -/* Platform supports POSIX Threads .4a Draft 6 */ -#undef ACE_HAS_PTHREADS_DRAFT6 - -/* Platform supports POSIX Threads .1c Draft 7 */ -#undef ACE_HAS_PTHREADS_DRAFT7 - -/* Platform supports POSIX.1c-1995 threads */ -#undef ACE_HAS_PTHREADS_STD - -/* Platform has the UNIX98 extensions to Pthreads (rwlocks) */ -#undef ACE_HAS_PTHREADS_UNIX98_EXT - -/* Define to 1 if platform has pthread_attr_setcreatesuspend_np(). */ -#undef ACE_HAS_PTHREAD_ATTR_SETCREATESUSPEND_NP - -/* Define to 1 if platform has pthread_condattr_setkind_np(). */ -#undef ACE_HAS_PTHREAD_CONDATTR_SETKIND_NP - -/* Define to 1 if platform has pthread_continue(). */ -#undef ACE_HAS_PTHREAD_CONTINUE - -/* Define to 1 if platform has pthread_continue_np(). */ -#undef ACE_HAS_PTHREAD_CONTINUE_NP - -/* Define to 1 if platform has pthread_getaffinity_np(). */ -#undef ACE_HAS_PTHREAD_GETAFFINITY_NP - -/* Define to 1 if platform has pthread_getconcurrency(). */ -#undef ACE_HAS_PTHREAD_GETCONCURRENCY - -/* Define to 1 if platform has pthread_mutexattr_setkind_np(). */ -#undef ACE_HAS_PTHREAD_MUTEXATTR_SETKIND_NP - -/* Define to 1 if platform has the <pthread_np.h> header file. */ -#undef ACE_HAS_PTHREAD_NP_H - -/* pthread.h declares an enum with PTHREAD_PROCESS_PRIVATE and - PTHREAD_PROCESS_SHARED values */ -#undef ACE_HAS_PTHREAD_PROCESS_ENUM - -/* Define to 1 if platform has pthread_resume_np(). */ -#undef ACE_HAS_PTHREAD_RESUME_NP - -/* Define to 1 if platform has pthread_setaffinity_np(). */ -#undef ACE_HAS_PTHREAD_SETAFFINITY_NP - -/* Define to 1 if platform has pthread_setconcurrency(). */ -#undef ACE_HAS_PTHREAD_SETCONCURRENCY - -/* Define to 1 if platform has the declaration of pthread_sigmask(). */ -#undef ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE - -/* Define to 1 if platform has pthread_suspend(). */ -#undef ACE_HAS_PTHREAD_SUSPEND - -/* Define to 1 if platform has pthread_suspend_np(). */ -#undef ACE_HAS_PTHREAD_SUSPEND_NP - -/* Purify'ing. Defined on command line. */ -#undef ACE_HAS_PURIFY - -/* Platform has pread() and pwrite() support. */ -#undef ACE_HAS_P_READ_WRITE - -/* Quantify'ing. Defined on command line. */ -#undef ACE_HAS_QUANTIFY - -/* Define to 1 to configure Reactor to use a user-space queue for - notifications */ -#undef ACE_HAS_REACTOR_NOTIFICATION_QUEUE - -/* Mutexes are inherently recursive (e.g., Win32) */ -#undef ACE_HAS_RECURSIVE_MUTEXES - -/* Platform will recurse infinitely on thread exits from TSS cleanup routines - (e.g., AIX) */ -#undef ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS - -/* Platform supports reentrant functions (i.e., all the POSIX *_r functions). - */ -#undef ACE_HAS_REENTRANT_FUNCTIONS - -/* Platform supports the POSIX regular expression library */ -#undef ACE_HAS_REGEX - -/* Platform has enum instead of int for first argument to ::{get,set}rlimit - (). The value of this macro is the enum definition, e.g., enum - __rlimit_resource, for Linux glibc 2.0. */ -#undef ACE_HAS_RLIMIT_RESOURCE_ENUM - -/* Platform has enum instead of int for first argument to ::getrusage (). The - value of this macro is the enum definition, e.g., enum __rusage_who, for - Linux glibc 2.0. */ -#undef ACE_HAS_RUSAGE_WHO_ENUM - -/* Define to 1 if platform has sched_getaffinity(). */ -#undef ACE_HAS_SCHED_GETAFFINITY - -/* Define to 1 if platform has sched_setaffinity(). */ -#undef ACE_HAS_SCHED_SETAFFINITY - -/* Define to 1 if platform has the <select.h> header file. */ -#undef ACE_HAS_SELECT_H - -/* Compiler/platform defines a union semun for SysV shared memory */ -#undef ACE_HAS_SEMUN - -/* Define to 1 if platform has setprogname(). */ -#undef ACE_HAS_SETPROGNAME - -/* Define to 1 if platform has set_t_errno(). */ -#undef ACE_HAS_SET_T_ERRNO - -/* Platform has shm_open() */ -#undef ACE_HAS_SHM_OPEN - -/* Platform's sigaction() function takes const sigaction* as 2nd parameter */ -#undef ACE_HAS_SIGACTION_CONSTP2 - -/* Define to 1 if the system has the type `siginfo_t'. */ -#undef ACE_HAS_SIGINFO_T - -/* Platform has bug with sigismember() (HP/UX 11). */ -#undef ACE_HAS_SIGISMEMBER_BUG - -/* Platform supports the Win32 SignalObjectAndWait() function (WinNT 4.0 and - beyond). */ -#undef ACE_HAS_SIGNAL_OBJECT_AND_WAIT - -/* Define to 1 if platform has sigsuspend(). */ -#undef ACE_HAS_SIGSUSPEND - -/* Define to 1 if platform has sigtimedwait(). */ -#undef ACE_HAS_SIGTIMEDWAIT - -/* Define to 1 if `sigval_int' is a member of `union sigval'. */ -#undef ACE_HAS_SIGVAL_SIGVAL_INT - -/* Define to 1 if `sigval_ptr' is a member of `union sigval'. */ -#undef ACE_HAS_SIGVAL_SIGVAL_PTR - -/* Define to 1 if platform has sigwait(). */ -#undef ACE_HAS_SIGWAIT - -/* Define to 1 if the system has the type 'sig_atomic_t'. */ -#undef ACE_HAS_SIG_ATOMIC_T - -/* Compiler requires extern "C" functions for signals. */ -#undef ACE_HAS_SIG_C_FUNC - -/* OS/compiler uses size_t * rather than int * for socket lengths */ -#undef ACE_HAS_SIZET_SOCKET_LEN - -/* Define to 1 if `sin6_len' is a member of `sockaddr_in6'. */ -#undef ACE_HAS_SOCKADDR_IN6_SIN6_LEN - -/* Define to 1 if `sin_len' is a member of `sockaddr_in'. */ -#undef ACE_HAS_SOCKADDR_IN_SIN_LEN - -/* Platform requires (struct sockaddr *) for msg_name field of struct msghdr. - */ -#undef ACE_HAS_SOCKADDR_MSG_NAME - -/* Define to 1 if the system has the type `socklen_t'. */ -#undef ACE_HAS_SOCKLEN_T - -/* Define to 1 if the system has the type `ssize_t'. */ -#undef ACE_HAS_SSIZE_T - -/* Platform/compiler supports Standard C++ Library */ -#undef ACE_HAS_STANDARD_CPP_LIBRARY - -/* Platform has void (*)(...) prototype for pthread_key_create() destructor - (e.g., LynxOS). */ -#undef ACE_HAS_STDARG_THR_DEST - -/* */ -#undef ACE_HAS_STDCPP_STL_INCLUDES - -/* Platform provides C++ <stdexcept> header */ -#undef ACE_HAS_STDEXCEPT_NO_H - -/* Define to 1 if platform has UNIX International Threads */ -#undef ACE_HAS_STHREADS - -/* Define to 1 if the system has the type `struct strbuf'. */ -#undef ACE_HAS_STRBUF_T - -/* Define to 1 use ACE's strdup() emulation */ -#undef ACE_HAS_STRDUP_EMULATION - -/* Platform supports STREAMS */ -#undef ACE_HAS_STREAMS - -/* Platform supports STREAM pipes */ -#undef ACE_HAS_STREAM_PIPES - -/* Use the STRICT compilation mode on Win32. */ -#undef ACE_HAS_STRICT - -/* Platform has <strings.h> (which contains bzero() prototype) */ -#undef ACE_HAS_STRINGS - -/* Platform/Compiler supports a String class (e.g., GNU or Win32). */ -#undef ACE_HAS_STRING_CLASS - -/* Define to 1 if platform has strnlen(). */ -#undef ACE_HAS_STRNLEN - -/* Define to 1 if platform has strsignal(). */ -#undef ACE_HAS_STRSIGNAL - -/* Compiler/platform has strange hostent API for socket *_r() calls */ -#undef ACE_HAS_STRUCT_NETDB_DATA - -/* Compiler/platform supports SVR4 dynamic linking semantics */ -#undef ACE_HAS_SVR4_DYNAMIC_LINKING - -/* Compiler/platform supports SVR4 gettimeofday() prototype but doesn't have a - prototype */ -#undef ACE_HAS_SVR4_GETTIMEOFDAY - -/* Compiler/platform supports SVR4 signal typedef. */ -#undef ACE_HAS_SVR4_SIGNAL_T - -/* Compiler/platform supports SVR4 TLI (in particular, T_GETNAME stuff). */ -#undef ACE_HAS_SVR4_TLI - -/* Define to 1 if platform has sysctl(). */ -#undef ACE_HAS_SYSCTL - -/* Define to 1 if platform has the <sysent.h> header file. */ -#undef ACE_HAS_SYSENT_H - -/* Platform supports System V IPC (most versions of UNIX, but not Win32) */ -#undef ACE_HAS_SYSV_IPC - -/* Define to 1 if system has SysV version of sysinfo(). */ -#undef ACE_HAS_SYSV_SYSINFO - -/* Define to 1 if platform has the <sys/filio.h> header file. */ -#undef ACE_HAS_SYS_FILIO_H - -/* Define to 1 if platform has the <sys/loadavg.h> header file. */ -#undef ACE_HAS_SYS_LOADAVG_H - -/* Define to 1 if platform has the <sys/pstat.h> header file. */ -#undef ACE_HAS_SYS_PSTAT_H - -/* Compiler/platform supports _sys_siglist array */ -#undef ACE_HAS_SYS_SIGLIST - -/* Define to 1 if platform has the <sys/sockio.h> header file. */ -#undef ACE_HAS_SYS_SOCKIO_H - -/* Define to 1 if platform has the <sys/syscall.h> header file. */ -#undef ACE_HAS_SYS_SYSCALL_H - -/* Define to 1 if platform has the <sys/sysinfo.h> header file. */ -#undef ACE_HAS_SYS_SYSINFO_H - -/* Define to 1 if platform has the <sys/systeminfo.h> header file. */ -#undef ACE_HAS_SYS_SYSTEMINFO_H - -/* Platform provides <sys/xti.h> header */ -#undef ACE_HAS_SYS_XTI_H - -/* */ -#undef ACE_HAS_TANDEM_SIGNALS - -/* Compiler implements templates that support typedefs inside of classes used - as formal arguments to a template class. */ -#undef ACE_HAS_TEMPLATE_TYPEDEFS - -/* Define to 1 if system supports SysV tty API. */ -#undef ACE_HAS_TERMIO - -/* Define to 1 if system supports POSIX tty API. */ -#undef ACE_HAS_TERMIOS - -/* Platform supports threads. */ -#undef ACE_HAS_THREADS - -/* Platform allows multiple threads to call accept() on the same port (e.g., - WinNT). */ -#undef ACE_HAS_THREAD_SAFE_ACCEPT - -/* Platform has thread_self() rather than pthread_self() (e.g., DCETHREADS and - AIX) */ -#undef ACE_HAS_THREAD_SELF - -/* Compiler/platform has thread-specific storage */ -#undef ACE_HAS_THREAD_SPECIFIC_STORAGE - -/* The pthread_keycreate() routine *must* take extern C functions. */ -#undef ACE_HAS_THR_C_DEST - -/* The pthread_create() routine *must* take extern C functions. */ -#undef ACE_HAS_THR_C_FUNC - -/* Platform supports thr_keydelete (e.g,. UNIXWARE) */ -#undef ACE_HAS_THR_KEYDELETE - -/* Platform calls thr_minstack() rather than thr_min_stack() (e.g., Tandem). - */ -#undef ACE_HAS_THR_MINSTACK - -/* Platform has thr_yield() */ -#undef ACE_HAS_THR_YIELD - -/* Define to 1 if platform has global timezone variable */ -#undef ACE_HAS_TIMEZONE - -/* Platform/compiler supports timezone * as second parameter to gettimeofday() - and has a prototype. */ -#undef ACE_HAS_TIMEZONE_GETTIMEOFDAY - -/* Platform supports TLI timod STREAMS module */ -#undef ACE_HAS_TIMOD_H - -/* Platform supports TLI tiuser header */ -#undef ACE_HAS_TIUSER_H - -/* Platform does not protect <tiuser.h> with extern "C" */ -#undef ACE_HAS_TIUSER_H_BROKEN_EXTERN_C - -/* Platform supports TLI. Also see ACE_TLI_TCP_DEVICE. */ -#undef ACE_HAS_TLI - -/* Platform provides TLI function prototypes */ -#undef ACE_HAS_TLI_PROTOTYPES - -/* ACE provides TSS emulation. See also ACE_DEFAULT_THREAD_KEYS. */ -#undef ACE_HAS_TSS_EMULATION - -/* Define to 1 if platform has ualarm(). */ -#undef ACE_HAS_UALARM - -/* Define to 1 if the system has the type `ucontext_t'. */ -#undef ACE_HAS_UCONTEXT_T - -/* Define to 1 if the system has the type `uint16_t'. */ -#undef ACE_HAS_UINT16_T - -/* Define to 1 if the system has the type `uint32_t'. */ -#undef ACE_HAS_UINT32_T - -/* Define to 1 if the system has the type `uint64_t'. */ -#undef ACE_HAS_UINT64_T - -/* Define to 1 if the system has the type `uint8_t'. */ -#undef ACE_HAS_UINT8_T - -/* Has inconsistent SVR4 signal stuff, but not the same as the other platforms - */ -#undef ACE_HAS_UNIXWARE_SVR4_SIGNAL_T - -/* Define to 1 if platform has vasprintf(). */ -#undef ACE_HAS_VASPRINTF - -/* Define to 1 if platform has vaswprintf(). */ -#undef ACE_HAS_VASWPRINTF - -/* Prints out console message in ACE_NOTSUP. Useful for tracking down origin - of ACE_NOTSUP. */ -#undef ACE_HAS_VERBOSE_NOTSUP - -/* Define to 1 if platform has vfwprintf(). */ -#undef ACE_HAS_VFWPRINTF - -/* Platform/compiler supports void * as second parameter to gettimeofday() and - has a prototype. */ -#undef ACE_HAS_VOIDPTR_GETTIMEOFDAY - -/* Platform requires void * for mmap(). */ -#undef ACE_HAS_VOIDPTR_MMAP - -/* OS/compiler uses void * arg 4 setsockopt() rather than const char * */ -#undef ACE_HAS_VOIDPTR_SOCKOPT - -/* Define to 1 if platform has vswprintf(). */ -#undef ACE_HAS_VSWPRINTF - -/* Platform/compiler supports wchar_t */ -#undef ACE_HAS_WCHAR - -/* Define to 1 use ACE's wcsdup() emulation */ -#undef ACE_HAS_WCSDUP_EMULATION - -/* Define to 1 if platform has wcsnlen(). */ -#undef ACE_HAS_WCSNLEN - -/* Platform/compiler supports Win32 structural exceptions. */ -#undef ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS - -/* The Win32 platform support TryEnterCriticalSection(). (WinNT 4.0 and - beyond) */ -#undef ACE_HAS_WIN32_TRYLOCK - -/* The Win32 platform supports WinSock 2.0. */ -#undef ACE_HAS_WINSOCK2 - -/* Compiler handles explicit calling of template destructor correctly. */ -#undef ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR - -/* Solaris for intel uses macros for fstat() and stat(), these are wrappers - for _fxstat() and _xstat() uses of the macros. Causes compile and runtime - problems. */ -#undef ACE_HAS_X86_STAT_MACROS - -/* Platform has the XLI version of TLI */ -#undef ACE_HAS_XLI - -/* Platform has support for multi-byte character support compliant with the - XPG4 Worldwide Portability Interface wide-character classification. */ -#undef ACE_HAS_XPG4_MULTIBYTE_CHAR - -/* Platform has Xt Intrinsics Toolkit */ -#undef ACE_HAS_XT - -/* Platform has XTI (X/Open-standardized superset of TLI). Implies ACE_HAS_TLI - but uses a different header file. */ -#undef ACE_HAS_XTI - -/* Define to 1 if platform has _InterlockedDecrement(). */ -#undef ACE_HAS__INTERLOCKEDDECREMENT - -/* Define to 1 if platform has _InterlockedExchangeAdd(). */ -#undef ACE_HAS__INTERLOCKEDEXCHANGEADD - -/* Define to 1 if platform has _InterlockedIncrement(). */ -#undef ACE_HAS__INTERLOCKEDINCREMENT - -/* Define to the *printf format specifier (e.g. "%lld") for ACE_INT64 */ -#undef ACE_INT64_FORMAT_SPECIFIER - -/* Define to signed 64 bit integer type */ -#undef ACE_INT64_TYPE - -/* Define to the type of arg 2 for `ioctl'. */ -#undef ACE_IOCTL_TYPE_ARG2 - -/* Define to 1 if platform lacks access(). */ -#undef ACE_LACKS_ACCESS - -/* Do not compile support for the "Codecs" ACE features. */ -#undef ACE_LACKS_ACE_CODECS - -/* Platform can not build ace/IOStream{,_T}.cpp. This does not necessarily - mean that the platform does not support iostreams. */ -#undef ACE_LACKS_ACE_IOSTREAM - -/* Do not compile support for the "other" ACE features, such as CORBA - handling, name services, and QoS. */ -#undef ACE_LACKS_ACE_OTHER - -/* Do not compile support for the ACE Service Configurator. */ -#undef ACE_LACKS_ACE_SVCCONF - -/* Do not compile support for the ACE Token feature. */ -#undef ACE_LACKS_ACE_TOKEN - -/* Do not compile support for the ACE UUID feature. */ -#undef ACE_LACKS_ACE_UUID - -/* Define to 1 if platform lacks alarm(). */ -#undef ACE_LACKS_ALARM - -/* Define to 1 if platform lacks alphasort(). */ -#undef ACE_LACKS_ALPHASORT - -/* Define to 1 if platform lacks the <arpa/inet.h> header file. */ -#undef ACE_LACKS_ARPA_INET_H - -/* Define to 1 if platform lacks asctime(). */ -#undef ACE_LACKS_ASCTIME - -/* Define to 1 if platform lacks asctime_r(). */ -#undef ACE_LACKS_ASCTIME_R - -/* No system support for replacing any previous mappings. */ -#undef ACE_LACKS_AUTO_MMAP_REPLACEMENT - -/* Platform lacks support for the standard C++ auto_ptr class */ -#undef ACE_LACKS_AUTO_PTR - -/* Define to 1 if platform lacks bsearch(). */ -#undef ACE_LACKS_BSEARCH - -/* Define to 1 to support unaligned CDR */ -#undef ACE_LACKS_CDR_ALIGNMENT - -/* Compiler does not have any istream operator>> for chars, u_chars, or signed - chars. */ -#undef ACE_LACKS_CHAR_RIGHT_SHIFTS - -/* Compiler does not have operator>> (istream &, u_char *) or operator>> - (istream &, signed char *) */ -#undef ACE_LACKS_CHAR_STAR_RIGHT_SHIFTS - -/* Define to 1 if platform lacks chdir(). */ -#undef ACE_LACKS_CHDIR - -/* Define to 1 if system lacks pthread_condattr_setpshared() */ -#undef ACE_LACKS_CONDATTR_PSHARED - -/* Platform lacks condition variables (e.g., Win32 and VxWorks) */ -#undef ACE_LACKS_COND_T - -/* pthread_cond_timedwait does *not* reset the time argument when the lock is - acquired. */ -#undef ACE_LACKS_COND_TIMEDWAIT_RESET - -/* Platform uses struct strbuf * rather than const struct strbuf * (e.g., - HP/UX 10.x) */ -#undef ACE_LACKS_CONST_STRBUF_PTR - -/* Platform forgot const in cond_timewait (e.g., HP/UX). */ -#undef ACE_LACKS_CONST_TIMESPEC_PTR - -/* Define to 1 if platform lacks difftime(). */ -#undef ACE_LACKS_DIFFTIME - -/* Define to 1 if platform lacks the <dirent.h> header file. */ -#undef ACE_LACKS_DIRENT_H - -/* Define to 1 if platform lacks the <dlfcn.h> header file. */ -#undef ACE_LACKS_DLFCN_H - -/* Define to 1 if platform lacks dup(). */ -#undef ACE_LACKS_DUP - -/* Define to 1 if platform lacks dup2(). */ -#undef ACE_LACKS_DUP2 - -/* Define to 1 if platform lacks the <errno.h> header file. */ -#undef ACE_LACKS_ERRNO_H - -/* Platform lacks the exec() family of system calls (e.g., Win32, VxWorks, - Chorus) */ -#undef ACE_LACKS_EXEC - -/* Define to 1 if platform lacks the <execinfo.h> header file. */ -#undef ACE_LACKS_EXECINFO_H - -/* Define to 1 if platform lacks fcntl(). */ -#undef ACE_LACKS_FCNTL - -/* Define to 1 if platform lacks the <fcntl.h> header file. */ -#undef ACE_LACKS_FCNTL_H - -/* Define to 1 if platform lacks fgetwc(). */ -#undef ACE_LACKS_FGETWC - -/* Define to 1 if platform lacks fgetws(). */ -#undef ACE_LACKS_FGETWS - -/* Define to 1 if the system lacks the type `struct flock'. */ -#undef ACE_LACKS_FILELOCKS - -/* Define to 1 if platform lacks fork(). */ -#undef ACE_LACKS_FORK - -/* Define to 1 if platform lacks fputws(). */ -#undef ACE_LACKS_FPUTWS - -/* Define to 1 if platform lacks fsync(). */ -#undef ACE_LACKS_FSYNC - -/* Define to 1 if platform lacks getcwd(). */ -#undef ACE_LACKS_GETCWD - -/* Define to 1 if platform lacks getegid(). */ -#undef ACE_LACKS_GETEGID - -/* Define to 1 if platform lacks geteuid(). */ -#undef ACE_LACKS_GETEUID - -/* Define to 1 if platform lacks getgid(). */ -#undef ACE_LACKS_GETGID - -/* Define to 1 if platform lacks gethostent(). */ -#undef ACE_LACKS_GETHOSTENT - -/* Define to 1 if platform lacks getipnodebyaddr(). */ -#undef ACE_LACKS_GETIPNODEBYADDR - -/* Define to 1 if platform lacks getipnodebyname(). */ -#undef ACE_LACKS_GETIPNODEBYNAME - -/* Define to 1 if platform lacks getopt(). */ -#undef ACE_LACKS_GETOPT - -/* Define to 1 if platform lacks the declaration of getopt(). */ -#undef ACE_LACKS_GETOPT_PROTOTYPE - -/* Define to 1 if platform lacks getpgid(). */ -#undef ACE_LACKS_GETPGID - -/* Define to 1 if platform lacks getpgid() declaration in <unistd.h>. */ -#undef ACE_LACKS_GETPGID_PROTOTYPE - -/* Define to 1 if platform lacks getpid(). */ -#undef ACE_LACKS_GETPID - -/* Define to 1 if platform lacks getppid(). */ -#undef ACE_LACKS_GETPPID - -/* Platforms lacks getservbyname() (e.g., VxWorks and Chorus). */ -#undef ACE_LACKS_GETSERVBYNAME - -/* Define to 1 if platform lacks getuid(). */ -#undef ACE_LACKS_GETUID - -/* Define to 1 if platform lacks gmtime(). */ -#undef ACE_LACKS_GMTIME - -/* Define to 1 if platform lacks gmtime_r(). */ -#undef ACE_LACKS_GMTIME_R - -/* Define to 1 if platform lacks inet_aton(). */ -#undef ACE_LACKS_INET_ATON - -/* Platform can't handle "inline" keyword correctly. */ -#undef ACE_LACKS_INLINE_FUNCTIONS - -/* Define to 1 if the system lacks the type `intmax_t'. */ -#undef ACE_LACKS_INTMAX_T - -/* Define to 1 if the system lacks the type `intptr_t'. */ -#undef ACE_LACKS_INTPTR_T - -/* Define to 1 if platform lacks the <inttypes.h> header file. */ -#undef ACE_LACKS_INTTYPES_H - -/* iostream header does not declare ipfx (), opfx (), etc. */ -#undef ACE_LACKS_IOSTREAM_FX - -/* iostreams are not supported adequately on the given platform. */ -#undef ACE_LACKS_IOSTREAM_TOTALLY - -/* Define to 1 if platform lacks isatty(). */ -#undef ACE_LACKS_ISATTY - -/* Define to 1 if platform lacks isblank(). */ -#undef ACE_LACKS_ISBLANK - -/* Define to 1 if platform lacks isctype(). */ -#undef ACE_LACKS_ISCTYPE - -/* Define to 1 if platform lacks iswblank(). */ -#undef ACE_LACKS_ISWBLANK - -/* Define to 1 if platform lacks iswctype(). */ -#undef ACE_LACKS_ISWCTYPE - -/* Define to 1 if platform lacks itow(). */ -#undef ACE_LACKS_ITOW - -/* Define to 1 if the system lacks the type `key_t'. */ -#undef ACE_LACKS_KEY_T - -/* Define to 1 if platform lacks kill(). */ -#undef ACE_LACKS_KILL - -/* Platform lacks streambuf "linebuffered ()". */ -#undef ACE_LACKS_LINEBUFFERED_STREAMBUF - -/* Platform/compiler lacks the llseek() prototype. This should not be defined - if ACE_LACKS_LSEEK64_PROTOTYPE is defined. */ -#undef ACE_LACKS_LLSEEK_PROTOTYPE - -/* Define to 1 if platform lacks localtime(). */ -#undef ACE_LACKS_LOCALTIME - -/* Define to 1 if platform lacks log2(). */ -#undef ACE_LACKS_LOG2 - -/* Compiler/platform does not support the unsigned long long datatype. */ -#undef ACE_LACKS_LONGLONG_T - -/* Platform/compiler lacks the lseek64() prototype. This should not be defined - if ACE_LACKS_LLSEEK_PROTOTYPE is defined. */ -#undef ACE_LACKS_LSEEK64_PROTOTYPE - -/* Define to 1 if platform lacks lstat(). */ -#undef ACE_LACKS_LSTAT - -/* Define to 1 if platform lacks madvise(). */ -#undef ACE_LACKS_MADVISE - -/* Define to 1 if platform lacks the declaration of madvise(). */ -#undef ACE_LACKS_MADVISE_PROTOTYPE - -/* Define to 1 if platform lacks the <malloc.h> header file. */ -#undef ACE_LACKS_MALLOC_H - -/* Define to 1 if platform lacks the <memory.h> header file. */ -#undef ACE_LACKS_MEMORY_H - -/* Define to 1 if platform lacks mkfifo(). */ -#undef ACE_LACKS_MKFIFO - -/* Define to 1 if platform lacks mkstemp(). */ -#undef ACE_LACKS_MKSTEMP - -/* Define to 1 if platform lacks the declaration of mkstemp(). */ -#undef ACE_LACKS_MKSTEMP_PROTOTYPE - -/* Define to 1 if platform lacks mktemp(). */ -#undef ACE_LACKS_MKTEMP - -/* Define to 1 if platform lacks the declaration of mktemp(). */ -#undef ACE_LACKS_MKTEMP_PROTOTYPE - -/* The platform doesn't have mmap(2) (e.g., SCO UNIX). */ -#undef ACE_LACKS_MMAP - -/* Platform/compiler doesn't have open() mode masks. */ -#undef ACE_LACKS_MODE_MASKS - -/* Platform does not have Motif X toolkit available */ -#undef ACE_LACKS_MOTIF - -/* Define to 1 if platform lacks mprotect(). */ -#undef ACE_LACKS_MPROTECT - -/* Platform defines ACE_HAS_MSG, but lacks msg_accrights{len}. */ -#undef ACE_LACKS_MSG_ACCRIGHTS - -/* Define to 1 if platform lacks msync(). */ -#undef ACE_LACKS_MSYNC - -/* Define to 1 if system lacks pthread_mutexattr_setpshared(). */ -#undef ACE_LACKS_MUTEXATTR_PSHARED - -/* Platform lacks named POSIX semaphores (e.g., Chorus) */ -#undef ACE_LACKS_NAMED_POSIX_SEM - -/* Define to 1 if platform lacks the <netdb.h> header file. */ -#undef ACE_LACKS_NETDB_H - -/* Platform does not support reentrant netdb functions (getprotobyname_r, - getprotobynumber_r, gethostbyaddr_r, gethostbyname_r, getservbyname_r). */ -#undef ACE_LACKS_NETDB_REENTRANT_FUNCTIONS - -/* Define to 1 if platform lacks the <netinet/in.h> header file. */ -#undef ACE_LACKS_NETINET_IN_H - -/* Define to 1 if platform lacks the <netinet/tcp.h> header file. */ -#undef ACE_LACKS_NETINET_TCP_H - -/* Define to 1 if platform lacks the <net/if.h> header file. */ -#undef ACE_LACKS_NET_IF_H - -/* OS requires non-null status pointer for pthread_join () */ -#undef ACE_LACKS_NULL_PTHREAD_STATUS - -/* Platform lacks std::numeric_limits<> */ -#undef ACE_LACKS_NUMERIC_LIMITS - -/* Define to 1 if platform lacks IGMPv3 "perfect" filtering of multicast - datagrams at the socket level. If defined, ACE_SOCK_Dgram_Mcast will bind - the first joined multicast group to the socket, and all future joins on - that socket will fail with an error. */ -#undef ACE_LACKS_PERFECT_MULTICAST_FILTERING - -/* Define to 1 if platform lacks pipe(). */ -#undef ACE_LACKS_PIPE - -/* Compiler doesn't support placement operator delete(void *, void *). */ -#undef ACE_LACKS_PLACEMENT_OPERATOR_DELETE - -/* Compiler complains about use of obsolete "pragma once" */ -#undef ACE_LACKS_PRAGMA_ONCE - -/* Platform/compiler lacks the pread() and pwrite() prototypes */ -#undef ACE_LACKS_PREAD_PROTOTYPE - -/* Define to 1 if the system lacks the type 'pri_t'. */ -#undef ACE_LACKS_PRI_T - -/* Define to 1 if platform lacks pthread_attr_setstack() */ -#undef ACE_LACKS_PTHREAD_ATTR_SETSTACK - -/* Define to 1 if platform lacks pthread_attr_setstackaddr(). */ -#undef ACE_LACKS_PTHREAD_ATTR_SETSTACKADDR - -/* Define to 1 if platform lacks pthread_attr_setstacksize(). */ -#undef ACE_LACKS_PTHREAD_ATTR_SETSTACKSIZE - -/* Platform lacks pthread_cancel() */ -#undef ACE_LACKS_PTHREAD_CANCEL - -/* Define to 1 if platform lacks pthread_sigmask(). */ -#undef ACE_LACKS_PTHREAD_SIGMASK - -/* Define to 1 if platform lacks pthread_thr_sigsetmask(). */ -#undef ACE_LACKS_PTHREAD_THR_SIGSETMASK - -/* Define to 1 if platform lacks pthread_yield(). */ -#undef ACE_LACKS_PTHREAD_YIELD - -/* Platform lacks, getpwnam(), etc. */ -#undef ACE_LACKS_PWD_FUNCTIONS - -/* Define to 1 if platform lacks the <pwd.h> header file. */ -#undef ACE_LACKS_PWD_H - -/* Platform lacks getpwnam_r() methods (e.g., SGI 6.2). */ -#undef ACE_LACKS_PWD_REENTRANT_FUNCTIONS - -/* Define to 1 if platform lacks qsort(). */ -#undef ACE_LACKS_QSORT - -/* Define to 1 if platform lacks readdir_r(). */ -#undef ACE_LACKS_READDIR_R - -/* Define to 1 if platform lacks readlink(). */ -#undef ACE_LACKS_READLINK - -/* Define to 1 if platform lacks readv(). */ -#undef ACE_LACKS_READV - -/* Define to 1 if platform lacks realpath(). */ -#undef ACE_LACKS_REALPATH - -/* Define to 1 if platform lacks recvmsg(). */ -#undef ACE_LACKS_RECVMSG - -/* Define to 1 if platform lacks rename(). */ -#undef ACE_LACKS_RENAME - -/* Platform/compiler lacks {get,set}rlimit() function (e.g., VxWorks, Chorus, - and SCO UNIX) */ -#undef ACE_LACKS_RLIMIT - -/* Define to 1 if platform lacks the declaration of {get,set}rlimit(). */ -#undef ACE_LACKS_RLIMIT_PROTOTYPE - -/* Define to 1 if system lacks pthread_rwlockattr_setpshared(). */ -#undef ACE_LACKS_RWLOCKATTR_PSHARED - -/* Define to 1 if the system lacks the type `rwlock_t'. */ -#undef ACE_LACKS_RWLOCK_T - -/* Define to 1 if platform lacks sbrk(). */ -#undef ACE_LACKS_SBRK - -/* Define to 1 if platform lacks the <sched.h> header file. */ -#undef ACE_LACKS_SCHED_H - -/* Define to 1 if platform lacks the <search.h> header file. */ -#undef ACE_LACKS_SEARCH_H - -/* Define to 1 if platform lacks seekdir(). */ -#undef ACE_LACKS_SEEKDIR - -/* Define to 1 if platform lacks the <semaphore.h> header file. */ -#undef ACE_LACKS_SEMAPHORE_H - -/* Define to 1 if the system lacks the type `struct sembuf'. */ -#undef ACE_LACKS_SEMBUF_T - -/* Define to 1 if platform lacks sendmsg(). */ -#undef ACE_LACKS_SENDMSG - -/* Platform lacks pthread_attr_setdetachstate() (e.g., HP/UX 10.x) */ -#undef ACE_LACKS_SETDETACH - -/* Define to 1 if platform lacks setegid(). */ -#undef ACE_LACKS_SETEGID - -/* Define to 1 if platform lacks setenv(). */ -#undef ACE_LACKS_SETENV - -/* Define to 1 if platform lacks seteuid(). */ -#undef ACE_LACKS_SETEUID - -/* Define to 1 if platform lacks setgid(). */ -#undef ACE_LACKS_SETGID - -/* Define to 1 if platform lacks setpgid(). */ -#undef ACE_LACKS_SETPGID - -/* Define to 1 if platform lacks setpgid() declaration in <unistd.h>. */ -#undef ACE_LACKS_SETPGID_PROTOTYPE - -/* Define to 1 if platform lacks setregid(). */ -#undef ACE_LACKS_SETREGID - -/* Define to 1 if platform lacks setregid() declaration in <unistd.h>. */ -#undef ACE_LACKS_SETREGID_PROTOTYPE - -/* Define to 1 if platform lacks setreuid(). */ -#undef ACE_LACKS_SETREUID - -/* Define to 1 if platform lacks setreuid() declaration in <unistd.h>. */ -#undef ACE_LACKS_SETREUID_PROTOTYPE - -/* Platform lacks pthread_attr_setsched() (e.g. MVS) */ -#undef ACE_LACKS_SETSCHED - -/* Define to 1 if platform lacks setsid(). */ -#undef ACE_LACKS_SETSID - -/* Define to 1 if platform lacks setuid(). */ -#undef ACE_LACKS_SETUID - -/* Define to 1 if platform lacks sigaction(). */ -#undef ACE_LACKS_SIGACTION - -/* Define to 1 if platform lacks the <siginfo.h> header file. */ -#undef ACE_LACKS_SIGINFO_H - -/* Define to 1 if platform lacks the <signal.h> header file. */ -#undef ACE_LACKS_SIGNAL_H - -/* Platform lacks "signed char" type (broken!) */ -#undef ACE_LACKS_SIGNED_CHAR - -/* Define to 1 if the system lacks the type `sigset_t'. */ -#undef ACE_LACKS_SIGSET - -/* Define to 1 if `si_addr' is not a member of `siginfo_t'. */ -#undef ACE_LACKS_SI_ADDR - -/* Define to 1 if platform lacks socketpair(). */ -#undef ACE_LACKS_SOCKETPAIR - -/* Platform doesn't support SO_SNDBUF/SO_RCVBUF (used in TAO) */ -#undef ACE_LACKS_SOCKET_BUFSIZ - -/* Compiler doesn't support static data member templates */ -#undef ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES - -/* Define to 1 if platform lacks the <stdint.h> header file. */ -#undef ACE_LACKS_STDINT_H - -/* Define to 1 if platform lacks the <stdlib.h> header file. */ -#undef ACE_LACKS_STDLIB_H - -/* Define to 1 if platform lacks strcasecmp(). */ -#undef ACE_LACKS_STRCASECMP - -/* Define to 1 if platform lacks a declaration for strcasecmp() */ -#undef ACE_LACKS_STRCASECMP_PROTOTYPE - -/* Define to 1 if platform lacks strchr(). */ -#undef ACE_LACKS_STRCHR - -/* Define to 1 if platform lacks strdup(). */ -#undef ACE_LACKS_STRDUP - -/* Define to 1 if platform lacks strerror(). */ -#undef ACE_LACKS_STRERROR - -/* Define to 1 if platform lacks strftime(). */ -#undef ACE_LACKS_STRFTIME - -/* Define to 1 if platform lacks the <strings.h> header file. */ -#undef ACE_LACKS_STRINGS_H - -/* Define to 1 if platform lacks the <string.h> header file. */ -#undef ACE_LACKS_STRING_H - -/* Define to 1 if platform lacks strncasecmp(). */ -#undef ACE_LACKS_STRNCASECMP - -/* Define to 1 if platform lacks a declaration for strncasecmp() */ -#undef ACE_LACKS_STRNCASECMP_PROTOTYPE - -/* Define to 1 if platform lacks the declaration of strnlen(). */ -#undef ACE_LACKS_STRNLEN_PROTOTYPE - -/* Platform lacks stropts.h */ -#undef ACE_LACKS_STROPTS_H - -/* Define to 1 if platform lacks strpbrk(). */ -#undef ACE_LACKS_STRPBRK - -/* Define to 1 if platform lacks strptime(). */ -#undef ACE_LACKS_STRPTIME - -/* Define to 1 if platform lacks the declaration of strptime(). */ -#undef ACE_LACKS_STRPTIME_PROTOTYPE - -/* Define to 1 if platform lacks strrchr(). */ -#undef ACE_LACKS_STRRCHR - -/* Define to 1 if the system lacks the type `struct strrecvfd'. */ -#undef ACE_LACKS_STRRECVFD - -/* Define to 1 if platform lacks strspn(). */ -#undef ACE_LACKS_STRSPN - -/* Define to 1 if platform lacks strtod(). */ -#undef ACE_LACKS_STRTOD - -/* Platform/compiler lacks the strtok_r() prototype */ -#undef ACE_LACKS_STRTOK_R_PROTOTYPE - -/* Define to 1 if platform lacks strtol(). */ -#undef ACE_LACKS_STRTOL - -/* Define to 1 if platform lacks strtoll(). */ -#undef ACE_LACKS_STRTOLL - -/* Define to 1 if platform lacks a declaration for strtoll() */ -#undef ACE_LACKS_STRTOLL_PROTOTYPE - -/* Define to 1 if platform lacks strtoul(). */ -#undef ACE_LACKS_STRTOUL - -/* Define to 1 if platform lacks strtoull(). */ -#undef ACE_LACKS_STRTOULL - -/* Define to 1 if platform lacks a declaration for strtoull() */ -#undef ACE_LACKS_STRTOULL_PROTOTYPE - -/* Define to 1 if the system lacks the type `struct dirent'. */ -#undef ACE_LACKS_STRUCT_DIR - -/* Define to 1 if the system lacks the type 'suseconds_t'. */ -#undef ACE_LACKS_SUSECONDS_T - -/* Define to 1 if platform lacks swab(). */ -#undef ACE_LACKS_SWAB - -/* Define to 1 if platform lacks syscall(). */ -#undef ACE_LACKS_SYSCALL - -/* Define to 1 if platform lacks sysconf(). */ -#undef ACE_LACKS_SYSCONF - -/* Define to 1 if platform lacks system(). */ -#undef ACE_LACKS_SYSTEM - -/* Platform lacks SYSV message queue prototypes */ -#undef ACE_LACKS_SYSV_MSQ_PROTOS - -/* Platform lacks System V shared memory (e.g., Win32 and VxWorks) */ -#undef ACE_LACKS_SYSV_SHMEM - -/* Define to 1 if platform lacks the <sys/ioctl.h> header file. */ -#undef ACE_LACKS_SYS_IOCTL_H - -/* Define to 1 if platform lacks the <sys/ipc.h> header file. */ -#undef ACE_LACKS_SYS_IPC_H - -/* Define to 1 if platform lacks the <sys/mman.h> header file. */ -#undef ACE_LACKS_SYS_MMAN_H - -/* Platform lacks sys/msg.h (e.g., Chorus and VxWorks) */ -#undef ACE_LACKS_SYS_MSG_H - -/* Define to 1 if platform lacks the <sys/param.h> header file. */ -#undef ACE_LACKS_SYS_PARAM_H - -/* Define to 1 if platform lacks the <sys/resource.h> header file. */ -#undef ACE_LACKS_SYS_RESOURCE_H - -/* Define to 1 if platform lacks the <sys/select.h> header file. */ -#undef ACE_LACKS_SYS_SELECT_H - -/* Define to 1 if platform lacks the <sys/sem.h> header file. */ -#undef ACE_LACKS_SYS_SEM_H - -/* Define to 1 if platform lacks the <sys/shm.h> header file. */ -#undef ACE_LACKS_SYS_SHM_H - -/* Define to 1 if platform lacks the <sys/socket.h> header file. */ -#undef ACE_LACKS_SYS_SOCKET_H - -/* Define to 1 if platform lacks the <sys/stat.h> header file. */ -#undef ACE_LACKS_SYS_STAT_H - -/* Define to 1 if platform lacks the <sys/sysctl.h> header file. */ -#undef ACE_LACKS_SYS_SYSCTL_H - -/* Define to 1 if platform lacks the <sys/time.h> header file. */ -#undef ACE_LACKS_SYS_TIME_H - -/* Define to 1 if platform lacks the <sys/types.h> header file. */ -#undef ACE_LACKS_SYS_TYPES_H - -/* Define to 1 if platform lacks the <sys/uio.h> header file. */ -#undef ACE_LACKS_SYS_UIO_H - -/* Define to 1 if platform lacks the <sys/un.h> header file. */ -#undef ACE_LACKS_SYS_UN_H - -/* Define to 1 if platform lacks the <sys/wait.h> header file. */ -#undef ACE_LACKS_SYS_WAIT_H - -/* OS does not support TCP_NODELAY */ -#undef ACE_LACKS_TCP_NODELAY - -/* Define to 1 if platform lacks telldir(). */ -#undef ACE_LACKS_TELLDIR - -/* Define to 1 if platform lacks tempnam(). */ -#undef ACE_LACKS_TEMPNAM - -/* Define to 1 if platform lacks the <termios.h> header file. */ -#undef ACE_LACKS_TERMIOS_H - -/* Define to 1 if platform lacks the <termio.h> header file. */ -#undef ACE_LACKS_TERMIO_H - -/* Platform lacks pthread_attr_setscope() */ -#undef ACE_LACKS_THREAD_PROCESS_SCOPING - -/* Define to 1 if platform lacks the declarations of recv_timedwait, - send_timedwait, etc. */ -#undef ACE_LACKS_TIMEDWAIT_PROTOTYPES - -/* Platform does not define timepec_t as a typedef for struct timespec. */ -#undef ACE_LACKS_TIMESPEC_T - -/* Define to 1 if platform lacks the <time.h> header file. */ -#undef ACE_LACKS_TIME_H - -/* Define to 1 if platform lacks towlower(). */ -#undef ACE_LACKS_TOWLOWER - -/* Define to 1 if platform lacks towupper(). */ -#undef ACE_LACKS_TOWUPPER - -/* Define to 1 if platform lacks truncate(). */ -#undef ACE_LACKS_TRUNCATE - -/* Header files lack t_errno for TLI */ -#undef ACE_LACKS_T_ERRNO - -/* Define to 1 if platform lacks the declaration of ualarm(). */ -#undef ACE_LACKS_UALARM_PROTOTYPE - -/* Define to 1 if platform lacks the <ucontext.h> header file. */ -#undef ACE_LACKS_UCONTEXT_H - -/* Define to 1 if the system lacks the type `uintmax_t'. */ -#undef ACE_LACKS_UINTMAX_T - -/* Define to 1 if the system lacks the type `uintptr_t'. */ -#undef ACE_LACKS_UINTPTR_T - -/* Define to 1 if platform lacks umask(). */ -#undef ACE_LACKS_UMASK - -/* Define to 1 if platform lacks uname(). */ -#undef ACE_LACKS_UNAME - -/* */ -#undef ACE_LACKS_UNBUFFERED_STREAMBUF - -/* Define to 1 if platform lacks the <unistd.h> header file. */ -#undef ACE_LACKS_UNISTD_H - -/* ACE platform has no UNIX domain sockets */ -#undef ACE_LACKS_UNIX_DOMAIN_SOCKETS - -/* Platform lacks full signal support (e.g., Win32 and Chorus). */ -#undef ACE_LACKS_UNIX_SIGNALS - -/* Define to 1 if platform lacks unlink(). */ -#undef ACE_LACKS_UNLINK - -/* Define to 1 if platform lacks unsetenv(). */ -#undef ACE_LACKS_UNSETENV - -/* Define to 1 if the system lacks the type 'useconds_t'. */ -#undef ACE_LACKS_USECONDS_T - -/* Define to 1 if platform lacks the <utime.h> header file. */ -#undef ACE_LACKS_UTIME_H - -/* Define to 1 if the system lacks the type `struct utsname'. */ -#undef ACE_LACKS_UTSNAME_T - -/* Define to 1 if the system lacks the type `u_long_long_t'. */ -#undef ACE_LACKS_U_LONGLONG_T - -/* Define to 1 if platform lacks vsnprintf(). */ -#undef ACE_LACKS_VSNPRINTF - -/* Define to 1 if platform lacks the <wchar.h> header file. */ -#undef ACE_LACKS_WCHAR_H - -/* Define to 1 if the system lacks the type `wchar_t'. */ -#undef ACE_LACKS_WCHAR_T - -/* Define to 1 if platform lacks wcscasecmp(). */ -#undef ACE_LACKS_WCSCASECMP - -/* Define to 1 if platform lacks wcscat(). */ -#undef ACE_LACKS_WCSCAT - -/* Define to 1 if platform lacks wcschr(). */ -#undef ACE_LACKS_WCSCHR - -/* Define to 1 if platform lacks wcscmp(). */ -#undef ACE_LACKS_WCSCMP - -/* Define to 1 if platform lacks wcscpy(). */ -#undef ACE_LACKS_WCSCPY - -/* Define to 1 if platform lacks wcscspn(). */ -#undef ACE_LACKS_WCSCSPN - -/* Define to 1 if platform lacks wcsdup(). */ -#undef ACE_LACKS_WCSDUP - -/* Define to 1 if platform lacks wcslen(). */ -#undef ACE_LACKS_WCSLEN - -/* Define to 1 if platform lacks wcsncasecmp(). */ -#undef ACE_LACKS_WCSNCASECMP - -/* Define to 1 if platform lacks wcsncat(). */ -#undef ACE_LACKS_WCSNCAT - -/* Define to 1 if platform lacks wcsncmp(). */ -#undef ACE_LACKS_WCSNCMP - -/* Define to 1 if platform lacks wcsncpy(). */ -#undef ACE_LACKS_WCSNCPY - -/* Define to 1 if platform lacks wcsnicmp(). */ -#undef ACE_LACKS_WCSNICMP - -/* Define to 1 if platform lacks wcspbrk(). */ -#undef ACE_LACKS_WCSPBRK - -/* Define to 1 if platform lacks wcsrchr(). */ -#undef ACE_LACKS_WCSRCHR - -/* Define to 1 if platform lacks wcsspn(). */ -#undef ACE_LACKS_WCSSPN - -/* Define to 1 if platform lacks wcsstr(). */ -#undef ACE_LACKS_WCSSTR - -/* Define to 1 if platform lacks wcstod(). */ -#undef ACE_LACKS_WCSTOD - -/* Define to 1 if platform lacks wcstok(). */ -#undef ACE_LACKS_WCSTOK - -/* Define to 1 if platform lacks wcstol(). */ -#undef ACE_LACKS_WCSTOL - -/* Define to 1 if platform lacks wcstoll(). */ -#undef ACE_LACKS_WCSTOLL - -/* Define to 1 if platform lacks a declaration for wcstoll() */ -#undef ACE_LACKS_WCSTOLL_PROTOTYPE - -/* Define to 1 if platform lacks wcstoul(). */ -#undef ACE_LACKS_WCSTOUL - -/* Define to 1 if platform lacks wcstoull(). */ -#undef ACE_LACKS_WCSTOULL - -/* Define to 1 if platform lacks a declaration for wcstoull() */ -#undef ACE_LACKS_WCSTOULL_PROTOTYPE - -/* Define to 1 if platform lacks the <wctype.h> header file. */ -#undef ACE_LACKS_WCTYPE_H - -/* Define to 1 if platform lacks writev(). */ -#undef ACE_LACKS_WRITEV - -/* Define to environment variable used for DLL search path */ -#undef ACE_LD_SEARCH_PATH - -/* typedef for ACE_LOFF_T */ -#undef ACE_LOFF_T_TYPEDEF - -/* Renames "main (int, char *[])", for platforms such as g++/VxWorks that - don't allow main. Requires the use of ACE_HAS_NONSTATIC_OBJECT_MANAGER. */ -#undef ACE_MAIN - -/* */ -#undef ACE_MALLOC_ALIGN - -/* */ -#undef ACE_MAP_PRIVATE - -/* Define to 1 if platform has 1 parameter mkdir() */ -#undef ACE_MKDIR_LACKS_MODE - -/* Compile using multi-thread libraries */ -#undef ACE_MT_SAFE - -/* Turns off debugging features */ -#undef ACE_NDEBUG - -/* Necessary with some compilers to pass ACE_TTY_IO as parameter to - DEV_Connector. */ -#undef ACE_NEEDS_DEV_IO_CONVERSION - -/* Compiler requires a definition for a "hidden" function, e.g., a private, - unimplemented copy constructor or assignment operator. The SGI C++ compiler - needs this, in template classes, with - ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA. */ -#undef ACE_NEEDS_FUNC_DEFINITIONS - -/* Required by platforms with small default stacks. */ -#undef ACE_NEEDS_HUGE_THREAD_STACKSIZE - -/* OS has LWPs, and when the priority of a bound thread is set, then the LWP - priority must be set also. */ -#undef ACE_NEEDS_LWP_PRIO_SET - -/* Platform needs to #include <sched.h> to get thread scheduling defs. */ -#undef ACE_NEEDS_SCHED_H - -/* Compiler's 'new' throws exception on failure (ANSI C++ behavior). */ -#undef ACE_NEW_THROWS_EXCEPTIONS - -/* Turns off the LM_DEBUG and LM_ERROR logging macros... */ -#undef ACE_NLOGGING - -/* Explicitly disable ACE inlining */ -#undef ACE_NO_INLINE - -/* Turns off the tracing feature. */ -#undef ACE_NTRACE - -/* Defines the page size of the system (not used on Win32 or with - ACE_HAS_GETPAGESIZE). */ -#undef ACE_PAGE_SIZE - -/* Flag that denotes the symbol should be exported from the DSO/DLL. */ -#undef ACE_Proper_Export_Flag - -/* Flag that denotes the symbol should be imported from the DSO/DLL. */ -#undef ACE_Proper_Import_Flag - -/* Platform redefines the t_... names (UnixWare) */ -#undef ACE_REDEFINES_XTI_FUNCTIONS - -/* shm_open() requires a leading slash in name */ -#undef ACE_SHM_OPEN_REQUIRES_ONE_SLASH - -/* Size of the native "double" type */ -#undef ACE_SIZEOF_DOUBLE - -/* Size of the native "float" type */ -#undef ACE_SIZEOF_FLOAT - -/* Size of the native "int" type */ -#undef ACE_SIZEOF_INT - -/* Size of the native "long" type */ -#undef ACE_SIZEOF_LONG - -/* Size of the native "long double" type */ -#undef ACE_SIZEOF_LONG_DOUBLE - -/* Size of the native "long long" type */ -#undef ACE_SIZEOF_LONG_LONG - -/* Size of the native "short" type */ -#undef ACE_SIZEOF_SHORT - -/* Size of the native "pointer to void" type */ -#undef ACE_SIZEOF_VOID_P - -/* Size of the native "wchar_t" type */ -#undef ACE_SIZEOF_WCHAR - -/* Define to the *printf format specifier (e.g. "%u") for size_t */ -#undef ACE_SIZE_T_FORMAT_SPECIFIER - -/* Define to the *printf format specifier (e.g. "%d") for ssize_t */ -#undef ACE_SSIZE_T_FORMAT_SPECIFIER - -/* Define to function that is equivalent to strcasecmp() */ -#undef ACE_STRCASECMP_EQUIVALENT - -/* Define to function that is equivalent to strdup() */ -#undef ACE_STRDUP_EQUIVALENT - -/* Define to function that is equivalent to strncasecmp() */ -#undef ACE_STRNCASECMP_EQUIVALENT - -/* Define to function that is equivalent to strtoll() */ -#undef ACE_STRTOLL_EQUIVALENT - -/* Define to function that is equivalent to strtoull() */ -#undef ACE_STRTOULL_EQUIVALENT - -/* Compiler's template mechanism must use a pragma. This is used for AIX's C++ - compiler. */ -#undef ACE_TEMPLATES_REQUIRE_PRAGMA - -/* Compiler's template mechanim must see source code (i.e., .cpp files). This - is used for GNU G++. */ -#undef ACE_TEMPLATES_REQUIRE_SOURCE - -/* Specify this if you don't want threads to inherit parent thread's - ACE_Log_Msg properties. */ -#undef ACE_THREADS_DONT_INHERIT_LOG_MSG - -/* */ -#undef ACE_THR_PRI_FIFO_DEF - -/* */ -#undef ACE_TIMER_SKEW - -/* Device the platform uses for TCP on TLI. Only needed if not /dev/tcp. */ -#undef ACE_TLI_TCP_DEVICE - -/* Define to the *printf format specifier (e.g. "%llu") for ACE_UINT64 */ -#undef ACE_UINT64_FORMAT_SPECIFIER - -/* Define to unsigned 64 bit integer type */ -#undef ACE_UINT64_TYPE - -/* Platform uses assembly symbols instead of C symbols in dlsym() */ -#undef ACE_USES_ASM_SYMBOL_IN_DLSYM - -/* Enable IPv6 support on platforms that don't have IPv6 turned on by default - */ -#undef ACE_USES_IPV4_IPV6_MIGRATION - -/* Some files, such as ace/streams.h, want to include new style C++ stream - headers. These headers are iomanip, ios, iostream, istream, ostream, - fstream and streambuf. If _all_ of these headers aren't available, then - assume that only iostream.h and fstream.h are available. */ -#undef ACE_USES_OLD_IOSTREAMS - -/* When linking MFC as a static library is desired */ -#undef ACE_USES_STATIC_MFC - -/* Platform has its standard C++ library in the namespace std. */ -#undef ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB - -/* ACE is built to use wide characters internally */ -#undef ACE_USES_WCHAR - -/* The OS/platform supports the poll() event demultiplexor */ -#undef ACE_USE_POLL - -/* Define to 1 to embed RCS ID strings into compiled object files. */ -#undef ACE_USE_RCSID - -/* For Win32: Use Select_Reactor as default implementation of Reactor instead - of WFMO_Reactor. */ -#undef ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL - -/* Define to function that is equivalent to wcscasecmp() */ -#undef ACE_WCSCASECMP_EQUIVALENT - -/* Define to function that is equivalent to wcsdup() */ -#undef ACE_WCSDUP_EQUIVALENT - -/* Define to function that is equivalent to wcsncasecmp() */ -#undef ACE_WCSNCASECMP_EQUIVALENT - -/* Define to function that is equivalent to wcstoll() */ -#undef ACE_WCSTOLL_EQUIVALENT - -/* Define to function that is equivalent to wcstoull() */ -#undef ACE_WCSTOULL_EQUIVALENT - -/* Configure for use on Win32 */ -#undef ACE_WIN32 - -/* A parameter list indicating the version of WinSock (e.g., "1, 1" is version - 1.1). */ -#undef ACE_WSOCK_VERSION - -/* Define if building universal (internal helper macro) */ -#undef AC_APPLE_UNIVERSAL_BUILD - -/* Configure for use on AIX */ -#undef AIX - -/* Define to 1 if the `closedir' function returns void instead of `int'. */ -#undef CLOSEDIR_VOID - -/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP - systems. This function is required for `alloca.c' support on those systems. - */ -#undef CRAY_STACKSEG_END - -/* GNU Win32 environement */ -#undef CYGWIN32 - -/* Define to 1 if using `alloca.c'. */ -#undef C_ALLOCA - -/* */ -#undef DEC_CXX - -/* Configure for use on Digital Unix */ -#undef DIGITAL_UNIX - -/* Define to 1 if you have `alloca', as a function or macro. */ -#undef HAVE_ALLOCA - -/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix). - */ -#undef HAVE_ALLOCA_H - -/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'. - */ -#undef HAVE_DIRENT_H - -/* Define to 1 if you have the <dlfcn.h> header file. */ -#undef HAVE_DLFCN_H - -/* Define to 1 if you have the <fstream> header file. */ -#undef HAVE_FSTREAM - -/* Define to 1 if you have the <fstream.h> header file. */ -#undef HAVE_FSTREAM_H - -/* Define to 1 if you have the <inttypes.h> header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the <iomanip> header file. */ -#undef HAVE_IOMANIP - -/* Define to 1 if you have the <ios> header file. */ -#undef HAVE_IOS - -/* Define to 1 if you have the <iostream> header file. */ -#undef HAVE_IOSTREAM - -/* Define to 1 if you have the <iostream.h> header file. */ -#undef HAVE_IOSTREAM_H - -/* Define to 1 if you have the <istream> header file. */ -#undef HAVE_ISTREAM - -/* Define to 1 if you have the `dld' library (-ldld). */ -#undef HAVE_LIBDLD - -/* Define to 1 if you have the <memory.h> header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */ -#undef HAVE_NDIR_H - -/* Define to 1 if you have the <ostream> header file. */ -#undef HAVE_OSTREAM - -/* Define to 1 if you have the <stdint.h> header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the <stdlib.h> header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the <streambuf> header file. */ -#undef HAVE_STREAMBUF - -/* Define to 1 if you have the `strftime' function. */ -#undef HAVE_STRFTIME - -/* Define to 1 if you have the <strings.h> header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the <string.h> header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'. - */ -#undef HAVE_SYS_DIR_H - -/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'. - */ -#undef HAVE_SYS_NDIR_H - -/* Define to 1 if you have the <sys/stat.h> header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the <sys/types.h> header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */ -#undef HAVE_SYS_WAIT_H - -/* Define to 1 if you have the <unistd.h> header file. */ -#undef HAVE_UNISTD_H - -/* Configure for use on HP-UX */ -#undef HPUX - -/* Configure for use on HP-UX 10 */ -#undef HPUX_10 - -/* Configure for use on HP-UX 11 */ -#undef HPUX_11 - -/* */ -#undef IP_ADD_MEMBERSHIP - -/* */ -#undef IP_DROP_MEMBERSHIP - -/* Configure for use on Irix 5 */ -#undef IRIX5 - -/* Configure for use on Irix 6 */ -#undef IRIX6 - -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ -#undef LT_OBJDIR - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Maximum thread priority */ -#undef PTHREAD_MAX_PRIORITY - -/* Minimum thread priority */ -#undef PTHREAD_MIN_PRIORITY - -/* */ -#undef PTHREAD_STACK_MIN - -/* */ -#undef SCO - -/* The size of `double', as computed by sizeof. */ -#undef SIZEOF_DOUBLE - -/* The size of `float', as computed by sizeof. */ -#undef SIZEOF_FLOAT - -/* The size of `int', as computed by sizeof. */ -#undef SIZEOF_INT - -/* The size of `long', as computed by sizeof. */ -#undef SIZEOF_LONG - -/* The size of `long double', as computed by sizeof. */ -#undef SIZEOF_LONG_DOUBLE - -/* The size of `long long', as computed by sizeof. */ -#undef SIZEOF_LONG_LONG - -/* The size of `short', as computed by sizeof. */ -#undef SIZEOF_SHORT - -/* The size of `signed char', as computed by sizeof. */ -#undef SIZEOF_SIGNED_CHAR - -/* The size of `void *', as computed by sizeof. */ -#undef SIZEOF_VOID_P - -/* The size of `wchar_t', as computed by sizeof. */ -#undef SIZEOF_WCHAR_T - -/* If using the C implementation of alloca, define if you know the - direction of stack growth for your system; otherwise it will be - automatically deduced at runtime. - STACK_DIRECTION > 0 => grows toward higher addresses - STACK_DIRECTION < 0 => grows toward lower addresses - STACK_DIRECTION = 0 => direction of growth unknown */ -#undef STACK_DIRECTION - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Configure for use on UnixWare */ -#undef UNIXWARE - -/* */ -#undef UNIXWARE_2_0 - -/* */ -#undef UNIXWARE_2_1 - -/* */ -#undef UNIXWARE_7_1 - -/* Configure for use on VxWorks */ -#undef VXWORKS - -/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most - significant byte first (like Motorola and SPARC, unlike Intel). */ -#if defined AC_APPLE_UNIVERSAL_BUILD -# if defined __BIG_ENDIAN__ -# define WORDS_BIGENDIAN 1 -# endif -#else -# ifndef WORDS_BIGENDIAN -# undef WORDS_BIGENDIAN -# endif -#endif - -/* Define to 1 if the X Window System is missing or not being used. */ -#undef X_DISPLAY_MISSING - -/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a - `char[]'. */ -#undef YYTEXT_POINTER - -/* Enable ACE inlining */ -#undef __ACE_INLINE__ - -/* */ -#undef __IOCTL_VERSIONED__ - -/* */ -#undef __NO_INCLUDE_WARN__ - - - - -#endif /* ACE_CONFIG_H */ - - -// Local Variables: -// mode:C++ -// End: - - diff --git a/dep/acelite/ace/gethrtime.cpp b/dep/acelite/ace/gethrtime.cpp index 69de03153a1..5c32d16dadd 100644 --- a/dep/acelite/ace/gethrtime.cpp +++ b/dep/acelite/ace/gethrtime.cpp @@ -1,4 +1,4 @@ -// $Id: gethrtime.cpp 80826 2008-03-04 14:51:23Z wotte $ +// $Id: gethrtime.cpp 91286 2010-08-05 09:04:31Z johnnyw $ // // Build this file with g++. It can be linked in to a ACE application // that was compiled with GreenHills. It wouldn't be necessary if I @@ -7,7 +7,7 @@ #include "ace/config-all.h" -ACE_RCSID(ace, gethrtime, "$Id: gethrtime.cpp 80826 2008-03-04 14:51:23Z wotte $") + #if defined (ghs) && (defined (i386) || defined(__i386__)) diff --git a/dep/acelite/ace/os_include/net/os_if.h b/dep/acelite/ace/os_include/net/os_if.h index 3dcf5918f8c..d672292a678 100644 --- a/dep/acelite/ace/os_include/net/os_if.h +++ b/dep/acelite/ace/os_include/net/os_if.h @@ -6,7 +6,7 @@ * * sockets local interfaces * - * $Id: os_if.h 88719 2010-01-26 12:55:03Z sowayaa $ + * $Id: os_if.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -47,10 +47,6 @@ extern "C" { #endif /* __cplusplus */ -#if defined (ACE_HAS_BROKEN_IF_HEADER) - struct ifafilt; -#endif /* ACE_HAS_BROKEN_IF_HEADER */ - #if defined (ACE_LACKS_IFREQ) struct ifreq { #define IFNAMSIZ 16 diff --git a/dep/acelite/ace/os_include/os_netdb.h b/dep/acelite/ace/os_include/os_netdb.h index 798bf9b7a2b..87629474aa9 100644 --- a/dep/acelite/ace/os_include/os_netdb.h +++ b/dep/acelite/ace/os_include/os_netdb.h @@ -6,7 +6,7 @@ * * definitions for network database operations * - * $Id: os_netdb.h 84660 2009-03-01 20:22:37Z olli $ + * $Id: os_netdb.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -40,7 +40,7 @@ extern "C" #if !defined (ACE_LACKS_NETDB_H) # include /**/ <netdb.h> #endif /* !ACE_LACKS_NETDB_H */ - + #if defined (ACE_LACKS_HOSTENT) struct hostent { char *h_name; /* official name of host */ diff --git a/dep/acelite/ace/os_include/os_pthread.h b/dep/acelite/ace/os_include/os_pthread.h index 368f4254a34..64f1b75537d 100644 --- a/dep/acelite/ace/os_include/os_pthread.h +++ b/dep/acelite/ace/os_include/os_pthread.h @@ -6,7 +6,7 @@ * * threads * - * $Id: os_pthread.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: os_pthread.h 91781 2010-09-15 12:49:15Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -43,10 +43,6 @@ # define ACE_DONT_INCLUDE_ACE_SIGNAL_H # include "ace/os_include/os_signal.h" # undef ACE_DONT_INCLUDE_ACE_SIGNAL_H -# if defined (DIGITAL_UNIX) -# define pthread_self __pthread_self -extern "C" pthread_t pthread_self (void); -# endif /* DIGITAL_UNIX */ # endif /* ACE_HAS_PTHREADS */ @@ -79,8 +75,7 @@ extern "C" pthread_t pthread_self (void); // programs to have their own ACE-wide "default". // PROCESS-level values -# if (defined (_POSIX_PRIORITY_SCHEDULING) || defined (ACE_TANDEM_T1248_PTHREADS)) \ - && !defined(_UNICOS) && !defined(UNIXWARE_7_1) +# if (defined (_POSIX_PRIORITY_SCHEDULING) || defined (ACE_TANDEM_T1248_PTHREADS)) # define ACE_PROC_PRI_FIFO_MIN (sched_get_priority_min(SCHED_FIFO)) # define ACE_PROC_PRI_RR_MIN (sched_get_priority_min(SCHED_RR)) # if defined (HPUX) @@ -94,14 +89,13 @@ extern "C" pthread_t pthread_self (void); # else # define ACE_PROC_PRI_OTHER_MIN (sched_get_priority_min(SCHED_OTHER)) # endif /* HPUX */ -# else /* UNICOS is missing a sched_get_priority_min() implementation, - SCO too */ +# else /* UNICOS is missing a sched_get_priority_min() implementation */ # define ACE_PROC_PRI_FIFO_MIN 0 # define ACE_PROC_PRI_RR_MIN 0 # define ACE_PROC_PRI_OTHER_MIN 0 # endif -# if defined (_POSIX_PRIORITY_SCHEDULING) && !defined(UNIXWARE_7_1) +# if defined (_POSIX_PRIORITY_SCHEDULING) # define ACE_PROC_PRI_FIFO_MAX (sched_get_priority_max(SCHED_FIFO)) # define ACE_PROC_PRI_RR_MAX (sched_get_priority_max(SCHED_RR)) # if defined (HPUX) @@ -110,7 +104,7 @@ extern "C" pthread_t pthread_self (void); # else # define ACE_PROC_PRI_OTHER_MAX (sched_get_priority_max(SCHED_OTHER)) # endif /* HPUX */ -# else /* SCO missing sched_get_priority_max() implementation */ +# else # define ACE_PROC_PRI_FIFO_MAX 59 # define ACE_PROC_PRI_RR_MAX 59 # define ACE_PROC_PRI_OTHER_MAX 59 @@ -298,7 +292,6 @@ extern "C" pthread_t pthread_self (void); # endif /* ACE_HAS_STHREADS */ /* MM-Graz: prevent warnings */ -# if !defined (UNIXWARE_7_1) # undef THR_BOUND # undef THR_NEW_LWP # undef THR_DETACHED @@ -313,15 +306,10 @@ extern "C" pthread_t pthread_self (void); # define THR_SCHED_FIFO 0x00020000 # define THR_SCHED_RR 0x00040000 # define THR_SCHED_DEFAULT 0x00080000 -# endif /* UNIXWARE_7_1 */ # define THR_JOINABLE 0x00010000 -# if defined (ACE_HAS_IRIX62_THREADS) -# define THR_SCOPE_SYSTEM 0x00100000 -# else -# define THR_SCOPE_SYSTEM THR_BOUND -# endif /*ACE_HAS_IRIX62_THREADS*/ +# define THR_SCOPE_SYSTEM 0x00100000 # define THR_SCOPE_PROCESS 0x00200000 # define THR_INHERIT_SCHED 0x00400000 diff --git a/dep/acelite/ace/os_include/os_pwd.h b/dep/acelite/ace/os_include/os_pwd.h index b1bc94af381..be00448a9d0 100644 --- a/dep/acelite/ace/os_include/os_pwd.h +++ b/dep/acelite/ace/os_include/os_pwd.h @@ -6,7 +6,7 @@ * * password structure * - * $Id: os_pwd.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: os_pwd.h 91683 2010-09-09 09:07:49Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -45,11 +45,6 @@ extern "C" # endif /* AIX and VAC++ 4 */ #endif /* !ACE_WIN32 */ -#if defined (DIGITAL_UNIX) - extern int _Pgetpwnam_r (const char *, struct passwd *, - char *, size_t, struct passwd **); -#endif /* DIGITAL_UNIX */ - #ifdef __cplusplus } #endif /* __cplusplus */ diff --git a/dep/acelite/ace/os_include/os_signal.h b/dep/acelite/ace/os_include/os_signal.h index dbda2a67b4e..667f28401e4 100644 --- a/dep/acelite/ace/os_include/os_signal.h +++ b/dep/acelite/ace/os_include/os_signal.h @@ -6,7 +6,7 @@ * * signals * - * $Id: os_signal.h 87480 2009-11-11 11:38:15Z olli $ + * $Id: os_signal.h 91781 2010-09-15 12:49:15Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -32,12 +32,6 @@ } #endif /* !ACE_LACKS_SIGNAL_H */ -// This must come after signal.h is #included. -#if defined (SCO) -# define SIGIO SIGPOLL -# include /**/ <sys/regset.h> -#endif /* SCO */ - #if defined (ACE_HAS_SIGINFO_T) # if !defined (ACE_LACKS_SIGINFO_H) # if defined (__QNX__) || defined (__OpenBSD__) || defined (__INTERIX) @@ -175,9 +169,6 @@ extern "C" #elif defined (ACE_WIN32) typedef void (__cdecl *ACE_SignalHandler)(int); typedef void (__cdecl *ACE_SignalHandlerV)(int); -#elif defined (ACE_HAS_UNIXWARE_SVR4_SIGNAL_T) - typedef void (*ACE_SignalHandler)(int); - typedef void (*ACE_SignalHandlerV)(...); #elif defined (INTEGRITY) typedef void (*ACE_SignalHandler)(); typedef void (*ACE_SignalHandlerV)(int); @@ -215,26 +206,6 @@ extern "C" # endif /* ACE_SIGRTMAX */ #endif /* ACE_HAS_POSIX_REALTIME_SIGNALS */ -#if defined (DIGITAL_UNIX) - // sigwait is yet another macro on Digital UNIX 4.0, just causing - // trouble when introducing member functions with the same name. - // Thanks to Thilo Kielmann" <kielmann@informatik.uni-siegen.de> for - // this fix. -# if defined (__DECCXX_VER) -# undef sigwait - // cxx on Digital Unix 4.0 needs this declaration. With it, - // <::_Psigwait> works with cxx -pthread. g++ does _not_ need - // it. - int _Psigwait __((const sigset_t *set, int *sig)); -# endif /* __DECCXX_VER */ -#elif !defined (ACE_HAS_SIGWAIT) -# if defined(ACE_HAS_RTEMS) - int sigwait (const sigset_t *set, int *sig); -# else - int sigwait (sigset_t *set); -# endif /* ACE_HAS_RTEMS */ -#endif /* ! DIGITAL_UNIX && ! ACE_HAS_SIGWAIT */ - #if !defined (ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE) int pthread_sigmask(int, const sigset_t *, sigset_t *); #endif /*!ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE */ diff --git a/dep/acelite/ace/os_include/os_stdlib.h b/dep/acelite/ace/os_include/os_stdlib.h index 6a675d54e29..863a508029f 100644 --- a/dep/acelite/ace/os_include/os_stdlib.h +++ b/dep/acelite/ace/os_include/os_stdlib.h @@ -6,7 +6,7 @@ * * standard library definitions * - * $Id: os_stdlib.h 83948 2008-12-02 13:55:34Z jtc $ + * $Id: os_stdlib.h 91683 2010-09-09 09:07:49Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -53,10 +53,6 @@ extern "C" #else #endif /* ACE_HAS_BROKEN_RANDR */ -#if defined (DIGITAL_UNIX) - extern int _Prand_r (unsigned int *seedptr); -#endif /* DIGITAL_UNIX */ - #if defined (ACE_LACKS_PUTENV_PROTOTYPE) int putenv (char *); #endif /* ACE_LACKS_PUTENV_PROTOTYPE */ diff --git a/dep/acelite/ace/os_include/os_stropts.h b/dep/acelite/ace/os_include/os_stropts.h index e64717a9551..daf7d41a2ec 100644 --- a/dep/acelite/ace/os_include/os_stropts.h +++ b/dep/acelite/ace/os_include/os_stropts.h @@ -6,7 +6,7 @@ * * STREAMS interface (STREAMS) * - * $Id: os_stropts.h 84660 2009-03-01 20:22:37Z olli $ + * $Id: os_stropts.h 92179 2010-10-08 07:50:07Z olli $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -34,7 +34,7 @@ #if !defined (ACE_LACKS_SYS_IOCTL_H) # include /**/ <sys/ioctl.h> -#endif /* !ACE_LACKS_IOCTL_H */ +#endif /* !ACE_LACKS_SYS_IOCTL_H */ #if defined (ACE_HAS_SYS_FILIO_H) # include /**/ <sys/filio.h> diff --git a/dep/acelite/ace/os_include/os_time.h b/dep/acelite/ace/os_include/os_time.h index e10a3b3164b..65972496ca8 100644 --- a/dep/acelite/ace/os_include/os_time.h +++ b/dep/acelite/ace/os_include/os_time.h @@ -6,7 +6,7 @@ * * time types * - * $Id: os_time.h 87270 2009-10-29 21:47:47Z olli $ + * $Id: os_time.h 91683 2010-09-09 09:07:49Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -104,13 +104,6 @@ typedef struct timespec * ACE_TIMESPEC_PTR; typedef const struct timespec * ACE_TIMESPEC_PTR; #endif /* ACE_LACKS_CONST_TIMESPEC_PTR */ -#if defined (DIGITAL_UNIX) - extern char *_Pctime_r (const time_t *, char *); - extern struct tm *_Plocaltime_r (const time_t *, struct tm *); - extern struct tm *_Pgmtime_r (const time_t *, struct tm *); - extern char *_Pasctime_r (const struct tm *, char *); -#endif /* DIGITAL_UNIX */ - #ifdef __cplusplus } #endif /* __cplusplus */ diff --git a/dep/acelite/ace/os_include/os_unistd.h b/dep/acelite/ace/os_include/os_unistd.h index ee685d26222..61b07cdd374 100644 --- a/dep/acelite/ace/os_include/os_unistd.h +++ b/dep/acelite/ace/os_include/os_unistd.h @@ -6,7 +6,7 @@ * * standard symbolic constants and types * - * $Id: os_unistd.h 87125 2009-10-15 17:34:25Z wotte $ + * $Id: os_unistd.h 92183 2010-10-08 08:44:15Z olli $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -130,21 +130,6 @@ extern "C" u_int ualarm (u_int usecs, u_int interval); #endif /* ACE_LACKS_UALARM_PROTOTYPE */ -#if defined (ACE_LACKS_PREAD_PROTOTYPE) && (_XOPEN_SOURCE - 0) < 500 - // _XOPEN_SOURCE == 500 Single Unix conformance - // It seems that _XOPEN_SOURCE == 500 means that the prototypes are - // already defined in the system headers. - ssize_t pread (int fd, - void *buf, - size_t nbytes, - ACE_OFF_T offset); - - ssize_t pwrite (int fd, - const void *buf, - size_t n, - ACE_OFF_T offset); -#endif /* ACE_LACKS_PREAD_PROTOTYPE && (_XOPEN_SOURCE - 0) < 500 */ - #if defined (ACE_LACKS_GETPGID_PROTOTYPE) && \ !defined (_XOPEN_SOURCE) && !defined (_XOPEN_SOURCE_EXTENDED) pid_t getpgid (pid_t pid); diff --git a/dep/acelite/ace/os_include/sys/os_mman.h b/dep/acelite/ace/os_include/sys/os_mman.h index b39fc48cbc4..5a8337d210b 100644 --- a/dep/acelite/ace/os_include/sys/os_mman.h +++ b/dep/acelite/ace/os_include/sys/os_mman.h @@ -6,7 +6,7 @@ * * memory management declarations * - * $Id: os_mman.h 80826 2008-03-04 14:51:23Z wotte $ + * $Id: os_mman.h 91688 2010-09-09 11:21:50Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -31,14 +31,7 @@ #endif /* ACE_LACKS_MMAP */ #if !defined (ACE_LACKS_SYS_MMAN_H) - // Fixes a problem with HP/UX. -# if defined (ACE_HAS_BROKEN_MMAP_H) - extern "C" { -# endif /* ACE_HAS_BROKEN_MMAP_H */ # include /**/ <sys/mman.h> -# if defined (ACE_HAS_BROKEN_MMAP_H) - } -# endif /* ACE_HAS_BROKEN_MMAP_H */ #endif /* ACE_LACKS_SYS_MMAN_H */ // Place all additions (especially function declarations) within extern "C" {} @@ -88,13 +81,12 @@ PAGE_NOCACHE */ # define ACE_MAP_FIXED MAP_FIXED # endif /* ! ACE_MAP_FIXED */ -# if !defined (MAP_FAILED) || defined (ACE_HAS_BROKEN_MAP_FAILED) -# undef MAP_FAILED +# if !defined (MAP_FAILED) # define MAP_FAILED ((void *) -1) # elif defined (ACE_HAS_LONG_MAP_FAILED) # undef MAP_FAILED # define MAP_FAILED ((void *) -1L) -# endif /* !MAP_FAILED || ACE_HAS_BROKEN_MAP_FAILED */ +# endif /* !MAP_FAILED */ #if !defined (PROT_RDWR) # define PROT_RDWR (PROT_READ|PROT_WRITE) diff --git a/dep/acelite/ace/os_include/sys/os_resource.h b/dep/acelite/ace/os_include/sys/os_resource.h index 23486b616e2..7f644a09d25 100644 --- a/dep/acelite/ace/os_include/sys/os_resource.h +++ b/dep/acelite/ace/os_include/sys/os_resource.h @@ -6,7 +6,7 @@ * * definitions for XSI resource operations * - * $Id: os_resource.h 81697 2008-05-14 18:33:11Z johnnyw $ + * $Id: os_resource.h 91781 2010-09-15 12:49:15Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -52,13 +52,13 @@ extern "C" // There must be a better way to do this... #if !defined (RLIMIT_NOFILE) && !defined (ACE_LACKS_RLIMIT_NOFILE) -# if defined (linux) || defined (AIX) || defined (SCO) +# if defined (linux) || defined (AIX) # if defined (RLIMIT_OFILE) # define RLIMIT_NOFILE RLIMIT_OFILE # else # define RLIMIT_NOFILE 200 # endif /* RLIMIT_OFILE */ -# endif /* defined (linux) || defined (AIX) || defined (SCO) */ +# endif /* defined (linux) || defined (AIX) */ #endif /* RLIMIT_NOFILE */ #if defined (ACE_WIN32) diff --git a/dep/acelite/ace/os_include/sys/os_socket.h b/dep/acelite/ace/os_include/sys/os_socket.h index 676041747ba..9a2ff009f85 100644 --- a/dep/acelite/ace/os_include/sys/os_socket.h +++ b/dep/acelite/ace/os_include/sys/os_socket.h @@ -6,7 +6,7 @@ * * main sockets header * - * $Id: os_socket.h 85015 2009-04-03 12:27:59Z johnnyw $ + * $Id: os_socket.h 91781 2010-09-15 12:49:15Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -40,7 +40,7 @@ extern "C" { #endif /* __cplusplus */ -#if !defined (ACE_HAS_MSG) && !defined (SCO) +#if !defined (ACE_HAS_MSG) struct msghdr {}; #endif /* ACE_HAS_MSG */ diff --git a/dep/acelite/ace/os_include/sys/os_types.h b/dep/acelite/ace/os_include/sys/os_types.h index 9638265378d..195f24cffa5 100644 --- a/dep/acelite/ace/os_include/sys/os_types.h +++ b/dep/acelite/ace/os_include/sys/os_types.h @@ -6,7 +6,7 @@ * * data types * - * $Id: os_types.h 88515 2010-01-13 08:47:38Z johnnyw $ + * $Id: os_types.h 91683 2010-09-09 09:07:49Z johnnyw $ * * @author Don Hinton <dhinton@dresystems.com> * @author This code was originally in various places including ace/OS.h. @@ -74,7 +74,7 @@ typedef double ACE_timer_t; #elif defined (ACE_HAS_RTEMS) || defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__) || defined (__APPLE__) || defined(ACE_MVS) || defined(__INTERIX) || \ (defined (ACE_OPENVMS) && defined (_LARGEFILE)) typedef off_t ACE_LOFF_T; -#elif defined (__sgi) || defined (AIX) || defined (HPUX) || defined (__QNX__) +#elif defined (AIX) || defined (HPUX) || defined (__QNX__) typedef off64_t ACE_LOFF_T; #elif defined (__sun) typedef offset_t ACE_LOFF_T; |