diff options
Diffstat (limited to 'ace')
33 files changed, 15862 insertions, 17838 deletions
diff --git a/ace/Connector.cpp b/ace/Connector.cpp index 52651212c74..abacf6c061e 100644 --- a/ace/Connector.cpp +++ b/ace/Connector.cpp @@ -1,39 +1,194 @@ -#ifndef ACE_CONNECTOR_CPP -#define ACE_CONNECTOR_CPP +// Connector.cpp +// $Id$ + +#ifndef ACE_CONNECTOR_C +#define ACE_CONNECTOR_C #include "ace/Connector.h" -#include "ace/Svc_Handler.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -ACE_RCSID (ace, - Connector, - "$Id$") +ACE_RCSID(ace, Connector, "$Id$") ACE_ALLOC_HOOK_DEFINE(ACE_Connector) +template <class SVC_HANDLER> +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::ACE_NonBlocking_Connect_Handler +(ACE_Connector_Base<SVC_HANDLER> &connector, + SVC_HANDLER *sh, + long id) + : connector_ (connector) + , svc_handler_ (sh) + , timer_id_ (id) +{ + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::ACE_NonBlocking_Connect_Handler"); + + this->reference_counting_policy ().value + (ACE_Event_Handler::Reference_Counting_Policy::ENABLED); +} + +template <class SVC_HANDLER> SVC_HANDLER * +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::svc_handler (void) +{ + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::svc_handler"); + return this->svc_handler_; +} + +template <class SVC_HANDLER> long +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::timer_id (void) +{ + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::timer_id"); + return this->timer_id_; +} + +template <class SVC_HANDLER> void +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::timer_id (long id) +{ + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::timer_id"); + this->timer_id_ = id; +} + +template <class SVC_HANDLER> void +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::dump (void) const +{ + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::dump"); + + ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); + ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("svc_handler_ = %x"), this->svc_handler_)); + ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\ntimer_id_ = %d"), this->timer_id_)); + ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); +} + +template <class SVC_HANDLER> SVC_HANDLER * +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::close (void) +{ + SVC_HANDLER *svc_handler = 0; + + // Make sure that we haven't already initialized the Svc_Handler. + if (this->svc_handler_) + { + // Exclusive access to the Reactor. + ACE_GUARD_RETURN (ACE_Lock, ace_mon, this->reactor ()->lock (), 0); + + // Double check. + if (this->svc_handler_) + { + // Remember the Svc_Handler. + svc_handler = this->svc_handler_; + + // Remove from Reactor. + this->reactor ()->remove_handler + (this->svc_handler_->get_handle (), + ACE_Event_Handler::ALL_EVENTS_MASK); + + // Cancel timer. + this->reactor ()->cancel_timer + (this->timer_id (), 0, 0); + + // Remove this handle from the set of non-blocking handles + // in the Connector. + this->connector_.non_blocking_handles ().clr_bit + (this->svc_handler_->get_handle ()); + + // We are done. Don't initialize the Svc_Handler again. + this->svc_handler_ = 0; + } + } + + return svc_handler; +} + +template <class SVC_HANDLER> int +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_timeout +(const ACE_Time_Value &tv, + const void *arg) +{ + // This method is called if a connection times out before completing. + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_timeout"); + + SVC_HANDLER *svc_handler = + this->close (); + + if (svc_handler == 0) + return 0; + + // Forward to the SVC_HANDLER the <arg> that was passed in as a + // magic cookie during ACE_Connector::connect(). This gives the + // SVC_HANDLER an opportunity to take corrective action (e.g., wait + // a few milliseconds and try to reconnect again. + if (svc_handler->handle_timeout (tv, arg) == -1) + svc_handler->handle_close (svc_handler->get_handle (), + ACE_Event_Handler::TIMER_MASK); + + return 0; +} + + +template <class SVC_HANDLER> int +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_input (ACE_HANDLE) +{ + // Called when a failure occurs during asynchronous connection + // establishment. + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_input"); + + SVC_HANDLER *svc_handler = + this->close (); + + if (svc_handler == 0) + return 0; + + // Close Svc_Handler. + svc_handler->close (0); + + return 0; +} + +template <class SVC_HANDLER> int +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_output (ACE_HANDLE handle) +{ + // Called when a connection is establishment asynchronous. + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_output"); + + SVC_HANDLER *svc_handler = + this->close (); + + if (svc_handler == 0) + return 0; + + this->connector_.initialize_svc_handler (handle, + svc_handler); + + return 0; +} + +template <class SVC_HANDLER> int +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_exception (ACE_HANDLE h) +{ + // On Win32, the except mask must also be set for asynchronous + // connects. + ACE_TRACE ("ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::handle_exception"); + + return this->handle_output (h); +} + +template <class SVC_HANDLER> int +ACE_NonBlocking_Connect_Handler<SVC_HANDLER>::resume_handler (void) +{ + return ACE_Event_Handler::ACE_EVENT_HANDLER_NOT_RESUMED; +} + template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> void ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::dump (void) const { ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\nclosing_ = %d"), this->closing_)); ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\nflags_ = %d"), this->flags_)); - this->handler_map_.dump (); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } -// Bridge method for creating a SVC_HANDLER. The strategy for -// creating a SVC_HANDLER are configured into the Acceptor via it's -// <creation_strategy_>. The default is to create a new SVC_HANDLER. -// However, subclasses can override this strategy to perform -// SVC_HANDLER creation in any way that they like (such as creating -// subclass instances of SVC_HANDLER, using a singleton, dynamically -// linking the handler, etc.). - template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::make_svc_handler (SVC_HANDLER *&sh) { @@ -87,14 +242,14 @@ ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connector (void) const } template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler ( - SVC_HANDLER *&svc_handler, - const ACE_PEER_CONNECTOR_ADDR &remote_addr, - ACE_Time_Value *timeout, - const ACE_PEER_CONNECTOR_ADDR &local_addr, - int reuse_addr, - int flags, - int perms) +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler +(SVC_HANDLER *&svc_handler, + const ACE_PEER_CONNECTOR_ADDR &remote_addr, + ACE_Time_Value *timeout, + const ACE_PEER_CONNECTOR_ADDR &local_addr, + int reuse_addr, + int flags, + int perms) { ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler"); @@ -108,15 +263,15 @@ ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler ( } template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler ( - SVC_HANDLER *&svc_handler, - SVC_HANDLER *&sh_copy, - const ACE_PEER_CONNECTOR_ADDR &remote_addr, - ACE_Time_Value *timeout, - const ACE_PEER_CONNECTOR_ADDR &local_addr, - int reuse_addr, - int flags, - int perms) +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler +(SVC_HANDLER *&svc_handler, + SVC_HANDLER *&sh_copy, + const ACE_PEER_CONNECTOR_ADDR &remote_addr, + ACE_Time_Value *timeout, + const ACE_PEER_CONNECTOR_ADDR &local_addr, + int reuse_addr, + int flags, + int perms) { ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler"); @@ -136,319 +291,28 @@ ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open (ACE_Reactor *r, int flag ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open"); this->reactor (r); this->flags_ = flags; - this->closing_ = 0; return 0; } template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::ACE_Connector (ACE_Reactor *r, int flags) - : handler_map_ (ACE_CONNECTOR_HANDLER_MAP_SIZE) - , connector_ () - , closing_ (0) - , flags_ (0) - , mutex_ () +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::ACE_Connector (ACE_Reactor *r, + int flags) { ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::ACE_Connector"); (void) this->open (r, flags); } -template <class SVC_HANDLER> -ACE_Svc_Tuple<SVC_HANDLER>::ACE_Svc_Tuple ( - SVC_HANDLER *sh, - ACE_HANDLE handle, - const void *arg, - long id) - : svc_handler_ (sh), - handle_ (handle), - arg_ (arg), - cancellation_id_ (id), - refcount_ (1) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::ACE_Svc_Tuple"); -} - -template <class SVC_HANDLER> -ACE_Svc_Tuple<SVC_HANDLER>::~ACE_Svc_Tuple (void) -{ -} - -template <class SVC_HANDLER> SVC_HANDLER * -ACE_Svc_Tuple<SVC_HANDLER>::svc_handler (void) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::svc_handler"); - return this->svc_handler_; -} - -template <class SVC_HANDLER> const void * -ACE_Svc_Tuple<SVC_HANDLER>::arg (void) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::arg"); - return this->arg_; -} - -template <class SVC_HANDLER> void -ACE_Svc_Tuple<SVC_HANDLER>::arg (const void *v) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::arg"); - this->arg_ = v; -} - -template <class SVC_HANDLER> ACE_HANDLE -ACE_Svc_Tuple<SVC_HANDLER>::handle (void) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::handle"); - return this->handle_; -} - -template <class SVC_HANDLER> void -ACE_Svc_Tuple<SVC_HANDLER>::handle (ACE_HANDLE h) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::handle"); - this->handle_ = h; -} - -template <class SVC_HANDLER> long -ACE_Svc_Tuple<SVC_HANDLER>::cancellation_id (void) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::cancellation_id"); - return this->cancellation_id_; -} - -template <class SVC_HANDLER> void -ACE_Svc_Tuple<SVC_HANDLER>::cancellation_id (long id) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::cancellation_id"); - this->cancellation_id_ = id; -} - -template <class SVC_HANDLER> long -ACE_Svc_Tuple<SVC_HANDLER>::incr_refcount (void) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::incr_refcount"); - return ++this->refcount_; -} - -template <class SVC_HANDLER> long -ACE_Svc_Tuple<SVC_HANDLER>::decr_refcount (void) -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::decr_refcount"); - if (--this->refcount_ > 0) - return this->refcount_; - - ACE_ASSERT (this->refcount_ == 0); - - delete this; - - return 0; -} - -template <class SVC_HANDLER> void -ACE_Svc_Tuple<SVC_HANDLER>::dump (void) const -{ - ACE_TRACE ("ACE_Svc_Tuple<SVC_HANDLER>::dump"); - - ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("svc_handler_ = %x"), this->svc_handler_)); - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\narg_ = %x"), this->arg_)); - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\ncancellation_id_ = %d"), this->cancellation_id_)); - ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); -} - -// This method is called if a connection times out before completing. -// In this case, we call our cleanup_AST() method to cleanup the -// descriptor from the ACE_Connector's table. - -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_timeout ( - const ACE_Time_Value &tv, - const void *arg) -{ - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_timeout"); - AST *ast = 0; - - if (this->cleanup_AST (((AST *) arg)->handle (), - ast) == -1) - { - // Matches the creation time refcount for AST, which is 1 - this->decr_ast_refcount ((AST *) arg); - return -1; - } - else - { - ACE_ASSERT (((AST *) arg) == ast); - - // We may need this seemingly unnecessary assignment to work - // around a bug with MSVC++? - SVC_HANDLER *sh = ast->svc_handler (); - - // Forward to the SVC_HANDLER the <arg> that was passed in as a - // magic cookie during ACE_Connector::connect(). This gives the - // SVC_HANDLER an opportunity to take corrective action (e.g., - // wait a few milliseconds and try to reconnect again. - int result = sh->handle_timeout (tv, ast->arg ()); - - // Matches the creation time refcount for AST, which is 1. - this->decr_ast_refcount (ast); - - if (result == -1) - sh->handle_close (sh->get_handle (), - ACE_Event_Handler::TIMER_MASK); - - return 0; - } -} - template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::cleanup_AST ( - ACE_HANDLE handle, - ACE_Svc_Tuple<SVC_HANDLER> *&ast) -{ - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::cleanup_AST"); - - ACE_MT (ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, - ace_mon, - this->mutex_, - -1)); - - // Locate the ACE_Svc_Handler corresponding to the socket - // descriptor. - if (this->handler_map_.unbind (handle, ast) == -1) - { - // Error, entry not found in map. - errno = ENOENT; - return -1; - } - - // Matches incr_refcount () in create_AST () after registering - // with the map. - ast->decr_refcount (); - - // Try to remove from ACE_Timer_Queue but if it's not there we - // ignore the error. - if (this->reactor ()->cancel_timer (ast->cancellation_id ())) - { - // Matches incr_refcount () in create_AST () after registering - // the timer - ast->decr_refcount (); - } - - - ACE_Reactor_Mask m = - ACE_Event_Handler::ALL_EVENTS_MASK | ACE_Event_Handler::DONT_CALL; - - // Remove ACE_HANDLE from ACE_Reactor. - if (this->reactor ()->remove_handler (handle, m) == 0) - { - // Matches incr_refcount () in create_AST () after registering - // with the Reactor. - ast->decr_refcount (); - } - return 0; -} - -// Called when a failure occurs during asynchronous connection -// establishment. Simply delegate all work to this->handle_output(). - -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_input (ACE_HANDLE h) -{ - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_input"); - AST *ast = 0; - - if (this->cleanup_AST (h, ast) != -1) - { - ACE_ASSERT (ast != 0); - ast->svc_handler ()->close (0); - - // Matches the creation time refcount for AST, which is 1 - this->decr_ast_refcount (ast); - } - - return 0; // Already removed from the ACE_Reactor. -} - -// Finalize a connection established in non-blocking mode. When a -// non-blocking connect *succeeds* the descriptor becomes enabled for -// writing... Likewise, it is generally the case that when a -// non-blocking connect *fails* the descriptor becomes enabled for -// reading. - -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_output (ACE_HANDLE handle) -{ - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_output"); - AST *ast = 0; - - if (this->cleanup_AST (handle, ast) == -1) - { - return 0; - } - ACE_ASSERT (ast != 0); // This shouldn't happen! - - // Try to find out if the reactor uses event associations for the - // handles it waits on. If so we need to reset it. - int reset_new_handle = this->reactor ()->uses_event_associations (); - - if (reset_new_handle) - this->connector_.reset_new_handle (handle); - - // Transfer ownership of the ACE_HANDLE to the SVC_HANDLER. - ast->svc_handler ()->set_handle (handle); - - ACE_PEER_CONNECTOR_ADDR raddr; - - // Check to see if we're connected. - if (ast->svc_handler ()->peer ().get_remote_addr (raddr) != -1) - this->activate_svc_handler (ast->svc_handler ()); - else // Somethings gone wrong, so close down... - { -#if defined (ACE_WIN32) - // ACE_DEBUG ((LM_DEBUG, "errno %d; Sleeping to retry get_remote_addr\n", errno)); - // Win32 (at least prior to Windows 2000) has a timing problem. - // If you check to see if the connection has completed too fast, - // it will fail - so wait 35 milliseconds to let it catch up. - ACE_Time_Value tv (0, ACE_NON_BLOCKING_BUG_DELAY); - ACE_OS::sleep (tv); - if (ast->svc_handler ()->peer ().get_remote_addr (raddr) != -1) - this->activate_svc_handler (ast->svc_handler ()); - else // do the svc handler close below... -#endif /* ACE_WIN32 */ - ast->svc_handler ()->close (0); - } - // Matches the creation time refcount for AST, which is 1 - this->decr_ast_refcount (ast); - return 0; -} - -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::resume_handler (void) -{ - return ACE_Event_Handler::ACE_EVENT_HANDLER_NOT_RESUMED; -} - -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_exception (ACE_HANDLE h) -{ - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_exception"); - - // On Win32, the except mask must also be set for asynchronous - // connects. - - return this->handle_output (h); -} - -// Initiate connection to peer. - -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect ( - SVC_HANDLER *&sh, - const ACE_PEER_CONNECTOR_ADDR &remote_addr, - const ACE_Synch_Options &synch_options, - const ACE_PEER_CONNECTOR_ADDR &local_addr, - int reuse_addr, - int flags, - int perms) -{ +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect +(SVC_HANDLER *&sh, + const ACE_PEER_CONNECTOR_ADDR &remote_addr, + const ACE_Synch_Options &synch_options, + const ACE_PEER_CONNECTOR_ADDR &local_addr, + int reuse_addr, + int flags, + int perms) +{ + // Initiate connection to peer. return this->connect_i (sh, 0, remote_addr, @@ -460,16 +324,17 @@ ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect ( } template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect ( - SVC_HANDLER *&sh, - SVC_HANDLER *&sh_copy, - const ACE_PEER_CONNECTOR_ADDR &remote_addr, - const ACE_Synch_Options &synch_options, - const ACE_PEER_CONNECTOR_ADDR &local_addr, - int reuse_addr, - int flags, - int perms) -{ +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect +(SVC_HANDLER *&sh, + SVC_HANDLER *&sh_copy, + const ACE_PEER_CONNECTOR_ADDR &remote_addr, + const ACE_Synch_Options &synch_options, + const ACE_PEER_CONNECTOR_ADDR &local_addr, + int reuse_addr, + int flags, + int perms) +{ + // Initiate connection to peer. return this->connect_i (sh, &sh_copy, remote_addr, @@ -481,15 +346,15 @@ ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect ( } template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_i ( - SVC_HANDLER *&sh, - SVC_HANDLER **sh_copy, - const ACE_PEER_CONNECTOR_ADDR &remote_addr, - const ACE_Synch_Options &synch_options, - const ACE_PEER_CONNECTOR_ADDR &local_addr, - int reuse_addr, - int flags, - int perms) +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_i +(SVC_HANDLER *&sh, + SVC_HANDLER **sh_copy, + const ACE_PEER_CONNECTOR_ADDR &remote_addr, + const ACE_Synch_Options &synch_options, + const ACE_PEER_CONNECTOR_ADDR &local_addr, + int reuse_addr, + int flags, + int perms) { ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_i"); @@ -526,60 +391,57 @@ ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_i ( flags, perms); + // Activate immediately if we are connected. + if (result != -1) + return this->activate_svc_handler (sh); + // Delegate to connection strategy. - if (result == -1) + if (use_reactor && errno == EWOULDBLOCK) { - if (use_reactor && errno == EWOULDBLOCK) - { - // If the connection hasn't completed and we are using - // non-blocking semantics then register ourselves with the - // ACE_Reactor so that it will call us back when the - // connection is complete or we timeout, whichever comes - // first... - int result; - - if (sh_copy == 0) - result = this->create_AST (sh, synch_options); - else - result = this->create_AST (*sh_copy, synch_options); - - // If for some reason the <create_AST> call failed, then - // <errno> will be set to the new error. If the call - // succeeds, however, we need to make sure that <errno> - // remains set to <EWOULDBLOCK>. - if (result == 0) - errno = EWOULDBLOCK; - } + // If the connection hasn't completed and we are using + // non-blocking semantics then register + // ACE_NonBlocking_Connect_Handler with the ACE_Reactor so that + // it will call us back when the connection is complete or we + // timeout, whichever comes first... + int result; + + if (sh_copy == 0) + result = this->nonblocking_connect (sh, synch_options); else + result = this->nonblocking_connect (*sh_copy, synch_options); + + // If for some reason the <nonblocking_connect> call failed, then <errno> + // will be set to the new error. If the call succeeds, however, + // we need to make sure that <errno> remains set to + // <EWOULDBLOCK>. + if (result == 0) + errno = EWOULDBLOCK; + } + else + { + // Save/restore errno. + ACE_Errno_Guard error (errno); + // Make sure to close down the service handler to avoid handle + // leaks. + if (sh_copy == 0) { - // Save/restore errno. - ACE_Errno_Guard error (errno); - // Make sure to close down the service handler to avoid - // handle leaks. - if (sh_copy == 0) - { - if (sh) - sh->close (0); - } - else if (*sh_copy) - (*sh_copy)->close (0); + if (sh) + sh->close (0); } - return -1; + else if (*sh_copy) + (*sh_copy)->close (0); } - else - // Activate immediately if we are connected. - return this->activate_svc_handler (sh); -} -// Initiate connection to peer. + return -1; +} template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_n ( - size_t n, - SVC_HANDLER *sh[], - ACE_PEER_CONNECTOR_ADDR remote_addrs[], - ACE_TCHAR *failed_svc_handlers, - const ACE_Synch_Options &synch_options) +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_n +(size_t n, + SVC_HANDLER *sh[], + ACE_PEER_CONNECTOR_ADDR remote_addrs[], + ACE_TCHAR *failed_svc_handlers, + const ACE_Synch_Options &synch_options) { int result = 0; @@ -607,169 +469,210 @@ template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::cancel (SVC_HANDLER *sh) { ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::cancel"); - MAP_ITERATOR mi (this->handler_map_); - for (MAP_ENTRY *me = 0; - mi.next (me) != 0; - mi.advance ()) - if (me->int_id_->svc_handler () == sh) - { - AST *ast = 0; + ACE_Event_Handler *handler = + this->reactor ()->find_handler (sh->get_handle ()); - if (this->cleanup_AST (me->ext_id_, ast) != -1) - this->decr_ast_refcount (ast); + if (handler == 0) + return -1; - return 0; - } + ACE_Event_Handler_var safe_handler (handler); - return -1; -} + NBCH *nbch = + ACE_dynamic_cast (NBCH *, handler); + + if (nbch == 0) + return -1; -// Register the pending SVC_HANDLER with the map so that it can be -// activated later on when the connection complets. + nbch->close (); + + return 0; +} template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::create_AST ( - SVC_HANDLER *sh, - const ACE_Synch_Options &synch_options) +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::nonblocking_connect +(SVC_HANDLER *sh, + const ACE_Synch_Options &synch_options) { - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::create_AST"); + ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::nonblocking_connect"); - ACE_MT (ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, - ace_mon, - this->mutex_, - -1)); + // Must have a valid Reactor for non-blocking connects to work. + if (this->reactor () == 0) + return -1; - ACE_HANDLE handle = sh->get_handle (); - AST *ast; + // Register the pending SVC_HANDLER so that it can be activated + // later on when the connection completes. - // AST is created with a refcount - ACE_NEW_RETURN (ast, - AST (sh, - handle, - synch_options.arg (), -1), + ACE_HANDLE handle = sh->get_handle (); + long timer_id = -1; + ACE_Time_Value *tv = 0; + NBCH *nbch = 0; + + ACE_NEW_RETURN (nbch, + NBCH (*this, + sh, + -1), -1); - // Register this with the reactor for connection events. - ACE_Reactor_Mask mask = ACE_Event_Handler::CONNECT_MASK; - - // Bind ACE_Svc_Tuple with the ACE_HANDLE we're trying to connect. - if (this->handler_map_.bind (handle, ast) == -1) - goto fail1; + ACE_Event_Handler_var safe_nbch (nbch); - // Increment the refcount of the AST to indicate registration with - // the map. - ast->incr_refcount (); + // Exclusive access to the Reactor. + ACE_GUARD_RETURN (ACE_Lock, ace_mon, this->reactor ()->lock (), -1); + // Register handle with the reactor for connection events. + ACE_Reactor_Mask mask = ACE_Event_Handler::CONNECT_MASK; if (this->reactor ()->register_handler (handle, - this, + nbch, mask) == -1) - goto fail2; - - // Increment the refcount of the AST. This increment is for access - // from the Reactor. Though we register <this> with the Reactor, - // every dispatch from the Reactor actually looks for <ast> and - // hence the refcount increment. - (void) ast->incr_refcount (); - - { - // If we're starting connection under timer control then we need to - // schedule a timeout with the ACE_Reactor. - ACE_Time_Value *tv = - ACE_const_cast (ACE_Time_Value *, - synch_options.time_value ()); - if (tv != 0) - { - int cancellation_id = - this->reactor ()->schedule_timer - (this, - (const void *) ast, - *tv); - if (cancellation_id == -1) - goto fail3; - - // Increment the refcount of the AST. This increment is for access - // from the timer queue. The same argument used for Rector - // registration holds true here too. - (void) ast->incr_refcount (); - - ast->cancellation_id (cancellation_id); - return 0; - } - } - return 0; // Ok, everything worked just fine... + goto reactor_registration_failure; + + // Add handle to non-blocking handle set. + this->non_blocking_handles ().set_bit (handle); + + // If we're starting connection under timer control then we need to + // schedule a timeout with the ACE_Reactor. + tv = ACE_const_cast (ACE_Time_Value *, + synch_options.time_value ()); + if (tv == 0) + return 0; + + timer_id = + this->reactor ()->schedule_timer (nbch, + synch_options.arg (), + *tv); + if (timer_id == -1) + goto timer_registration_failure; + + // Remember timer id. + nbch->timer_id (timer_id); + + // Everything was successful. + return 0; // Undo previous actions using the ol' "goto label and fallthru" // trick... -fail3: - this->reactor ()->remove_handler - (this, mask | ACE_Event_Handler::DONT_CALL); - /* FALLTHRU */ -fail2: - this->handler_map_.unbind (handle); + timer_registration_failure: + + // Remove from Reactor. + this->reactor ()->remove_handler (handle, mask); + + // Remove handle from the set of non-blocking handles. + this->non_blocking_handles ().clr_bit (handle); + /* FALLTHRU */ -fail1: + reactor_registration_failure: // Close the svc_handler + sh->close (0); - ast->decr_refcount (); return -1; } -// Terminate the Client ACE_Connector by iterating over any -// unconnected ACE_Svc_Handler's and removing them from the -// ACE_Reactor. Note that we can't call handle_close() back at this -// point since we own these things and we'll just get called -// recursively! +template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::~ACE_Connector (void) +{ + ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::~ACE_Connector"); + + this->close (); +} + +template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> void +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::initialize_svc_handler +(ACE_HANDLE handle, + SVC_HANDLER *svc_handler) +{ + // Try to find out if the reactor uses event associations for the + // handles it waits on. If so we need to reset it. + int reset_new_handle = + this->reactor ()->uses_event_associations (); -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::close (void) + if (reset_new_handle) + this->connector_.reset_new_handle (handle); + + // Transfer ownership of the ACE_HANDLE to the SVC_HANDLER. + svc_handler->set_handle (handle); + + ACE_PEER_CONNECTOR_ADDR raddr; + + // Check to see if we're connected. + if (svc_handler->peer ().get_remote_addr (raddr) != -1) + this->activate_svc_handler (svc_handler); + else // Somethings gone wrong, so close down... + { +#if defined (ACE_WIN32) + // Win32 (at least prior to Windows 2000) has a timing problem. + // If you check to see if the connection has completed too fast, + // it will fail - so wait 35 milliseconds to let it catch up. + ACE_Time_Value tv (0, ACE_NON_BLOCKING_BUG_DELAY); + ACE_OS::sleep (tv); + if (svc_handler->peer ().get_remote_addr (raddr) != -1) + this->activate_svc_handler (svc_handler); + else // do the svc handler close below... +#endif /* ACE_WIN32 */ + svc_handler->close (0); + } +} + +template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> void +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::reactor (ACE_Reactor *reactor) { - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::close"); - return this->handle_close (); + this->reactor_ = reactor; +} + +template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> ACE_Reactor * +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::reactor (void) const +{ + return this->reactor_; +} + +template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> ACE_Handle_Set & +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::non_blocking_handles (void) +{ + return this->non_blocking_handles_; } template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_close (ACE_HANDLE, ACE_Reactor_Mask) +ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::close (void) { - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_close"); + // If there are no non-blocking handle pending, return immediately. + if (this->non_blocking_handles ().num_set () == 0) + return 0; - if (this->reactor () != 0 && this->closing_ == 0) + // Exclusive access to the Reactor. + ACE_GUARD_RETURN (ACE_Lock, ace_mon, this->reactor ()->lock (), -1); + + // Go through all the non-blocking handles. It is necessary to + // create a new iterator each time because we remove from the handle + // set when we cancel the Svc_Handler. + while (1) { - // We're closing down now, so make sure not to call ourselves - // recursively via other calls to handle_close() (e.g., from the - // Timer_Queue). - this->closing_ = 1; + ACE_Handle_Set_Iterator iterator (this->non_blocking_handles ()); + ACE_HANDLE handle = iterator (); - for (;;) - { - // Create an iterator. - MAP_ITERATOR iterator = this->handler_map_.begin (); + if (handle == ACE_INVALID_HANDLE) + break; - // If we reach the end of the map, break the loop. - if (iterator == this->handler_map_.end ()) - break; + ACE_Event_Handler *handler = + this->reactor ()->find_handler (handle); - // Get the first handle. - ACE_HANDLE handle = (*iterator).ext_id_; + ACE_ASSERT (handler != 0); - // Clean it up. - AST *ast = 0; - int r = this->cleanup_AST (handle, ast); + ACE_Event_Handler_var safe_handler (handler); - // Close the svc_handler. - if (r != -1) - { - ACE_ASSERT (ast != 0); - ast->svc_handler ()->close (0); + NBCH *nbch = + ACE_dynamic_cast (NBCH *, handler); - // Zap the ast. - this->decr_ast_refcount (ast); - } + ACE_ASSERT (nbch != 0); + SVC_HANDLER *svc_handler = + nbch->svc_handler (); - } + // Cancel the non-blocking connection. + this->cancel (svc_handler); + + // Close the associated Svc_Handler. + svc_handler->close (0); } return 0; @@ -780,12 +683,7 @@ ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::fini (void) { ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::fini"); - // Make sure to call close here since our destructor might not be - // called if we're being dynamically linked via the svc.conf. - this->handler_map_.close (); - - // Make sure we call our handle_close(), not a subclass's! - return ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::handle_close (); + return this->close (); } // Hook called by the explicit dynamic linking facility. @@ -829,44 +727,9 @@ ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::info (ACE_TCHAR **strp, size_t return ACE_static_cast (int, ACE_OS::strlen (buf)); } -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::~ACE_Connector (void) -{ - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::~ACE_Connector"); - // We will call our handle_close(), not a subclass's, due to the way - // that C++ destructors work. - this->handle_close (); -} - -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> long -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::incr_ast_refcount ( - ACE_Svc_Tuple<SVC_HANDLER> *ast) -{ - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::incr_ast_refcount"); - ACE_MT (ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, - ace_mon, - this->mutex_, - -1)); - - return ast->incr_refcount (); -} - -template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> long -ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::decr_ast_refcount ( - ACE_Svc_Tuple<SVC_HANDLER> *ast) -{ - ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::decr_ast_refcount"); - ACE_MT (ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, - ace_mon, - this->mutex_, - -1)); - - return ast->decr_refcount (); -} - -/***********************************************************/ template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int -ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open (ACE_Reactor *r, int flags) +ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open (ACE_Reactor *r, + int flags) { ACE_TRACE ("ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open"); return this->open (r, 0, 0, 0, flags); @@ -874,11 +737,11 @@ ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open (ACE_Reactor *r, template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open - (ACE_Reactor *r, - ACE_Creation_Strategy<SVC_HANDLER> *cre_s, - ACE_Connect_Strategy<SVC_HANDLER, ACE_PEER_CONNECTOR_2> *conn_s, - ACE_Concurrency_Strategy<SVC_HANDLER> *con_s, - int flags) +(ACE_Reactor *r, + ACE_Creation_Strategy<SVC_HANDLER> *cre_s, + ACE_Connect_Strategy<SVC_HANDLER, ACE_PEER_CONNECTOR_2> *conn_s, + ACE_Concurrency_Strategy<SVC_HANDLER> *con_s, + int flags) { ACE_TRACE ("ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open"); @@ -922,15 +785,15 @@ ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open this->delete_connect_strategy_ = 0; } - if (conn_s != 0) - this->connect_strategy_ = conn_s; - else if (this->connect_strategy_ == 0) - { - ACE_NEW_RETURN (this->connect_strategy_, - CONNECT_STRATEGY, - -1); - this->delete_connect_strategy_ = 1; - } + if (conn_s != 0) + this->connect_strategy_ = conn_s; + else if (this->connect_strategy_ == 0) + { + ACE_NEW_RETURN (this->connect_strategy_, + CONNECT_STRATEGY, + -1); + this->delete_connect_strategy_ = 1; + } // Initialize the concurrency strategy. @@ -958,17 +821,17 @@ ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::open template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::ACE_Strategy_Connector - (ACE_Reactor *reactor, - ACE_Creation_Strategy<SVC_HANDLER> *cre_s, - ACE_Connect_Strategy<SVC_HANDLER, ACE_PEER_CONNECTOR_2> *conn_s, - ACE_Concurrency_Strategy<SVC_HANDLER> *con_s, - int flags) - : creation_strategy_ (0), - delete_creation_strategy_ (0), - connect_strategy_ (0), - delete_connect_strategy_ (0), - concurrency_strategy_ (0), - delete_concurrency_strategy_ (0) +(ACE_Reactor *reactor, + ACE_Creation_Strategy<SVC_HANDLER> *cre_s, + ACE_Connect_Strategy<SVC_HANDLER, ACE_PEER_CONNECTOR_2> *conn_s, + ACE_Concurrency_Strategy<SVC_HANDLER> *con_s, + int flags) + : creation_strategy_ (0), + delete_creation_strategy_ (0), + connect_strategy_ (0), + delete_connect_strategy_ (0), + concurrency_strategy_ (0), + delete_concurrency_strategy_ (0) { ACE_TRACE ("ACE_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::ACE_Strategy_Connector"); @@ -1014,13 +877,13 @@ ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::make_svc_handler (SVC template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler - (SVC_HANDLER *&sh, - const ACE_PEER_CONNECTOR_ADDR &remote_addr, - ACE_Time_Value *timeout, - const ACE_PEER_CONNECTOR_ADDR &local_addr, - int reuse_addr, - int flags, - int perms) +(SVC_HANDLER *&sh, + const ACE_PEER_CONNECTOR_ADDR &remote_addr, + ACE_Time_Value *timeout, + const ACE_PEER_CONNECTOR_ADDR &local_addr, + int reuse_addr, + int flags, + int perms) { return this->connect_strategy_->connect_svc_handler (sh, remote_addr, @@ -1033,14 +896,14 @@ ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> int ACE_Strategy_Connector<SVC_HANDLER, ACE_PEER_CONNECTOR_2>::connect_svc_handler - (SVC_HANDLER *&sh, - SVC_HANDLER *&sh_copy, - const ACE_PEER_CONNECTOR_ADDR &remote_addr, - ACE_Time_Value *timeout, - const ACE_PEER_CONNECTOR_ADDR &local_addr, - int reuse_addr, - int flags, - int perms) +(SVC_HANDLER *&sh, + SVC_HANDLER *&sh_copy, + const ACE_PEER_CONNECTOR_ADDR &remote_addr, + ACE_Time_Value *timeout, + const ACE_PEER_CONNECTOR_ADDR &local_addr, + int reuse_addr, + int flags, + int perms) { return this->connect_strategy_->connect_svc_handler (sh, sh_copy, diff --git a/ace/Connector.h b/ace/Connector.h index 8fd528e383a..42f6204b118 100644 --- a/ace/Connector.h +++ b/ace/Connector.h @@ -21,29 +21,49 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "ace/Map_Manager.h" #include "ace/Strategies_T.h" #include "ace/Synch_Options.h" - /** - * @class ACE_Svc_Tuple + * @class ACE_Connector_Base * - * @brief Holds the ACE_Svc_Handler and its argument and - * <ACE_Timer_Handle> until an asynchronous connection completes. + * @brief This base interface allows ACE_NonBlocking_Connect_Handler + * to only care about the SVC_HANDLER template parameter of the + * ACE_Connector. Otherwise, ACE_NonBlocking_Connect_Handler would + * have to be configured with all the template parameters that + * ACE_Connector is configured with. + */ +template <class SVC_HANDLER> +class ACE_Connector_Base +{ +public: + + /// Initialize the Svc_Handler. + virtual void initialize_svc_handler (ACE_HANDLE handle, + SVC_HANDLER *svc_handler) = 0; + + /// Return the handle set representing the non-blocking connects in + /// progress. + virtual ACE_Handle_Set &non_blocking_handles (void) = 0; +}; + +/** + * @class ACE_NonBlocking_Connect_Handler * - * This is a no-brainer... + * @brief Performs non-blocking connects on behalf of the Connector. */ template <class SVC_HANDLER> -class ACE_Svc_Tuple +class ACE_NonBlocking_Connect_Handler : public ACE_Event_Handler { public: - // = Initialization methods. - ACE_Svc_Tuple (SVC_HANDLER *, - ACE_HANDLE, - const void * = 0, - long timer_id = -1); + // Constructor. + ACE_NonBlocking_Connect_Handler (ACE_Connector_Base<SVC_HANDLER> &connector, + SVC_HANDLER *, + long timer_id); + + /// Close up and return underlying SVC_HANDLER *. + SVC_HANDLER *close (void); /// Get SVC_HANDLER. SVC_HANDLER *svc_handler (void); @@ -55,25 +75,31 @@ public: /// Set handle. void handle (ACE_HANDLE); - // = Get/set argument. - /// Get argument. - const void *arg (void); + // = Set/get timer id. + /// Get timer id. + long timer_id (void); - /// Set argument. - void arg (const void *); + /// Set timer id. + void timer_id (long timer_id); - // = Set/get timer cancellation handle. - /// Get cancellation id. - long cancellation_id (void); + /// Called by ACE_Reactor when asynchronous connections fail. + virtual int handle_input (ACE_HANDLE); - /// Set cancellation id. - void cancellation_id (long timer_id); + /// Called by ACE_Reactor when asynchronous connections succeed. + virtual int handle_output (ACE_HANDLE); - /// Increment and decrement refcount within the context of the lock - /// on the ACE_Connector - long incr_refcount (void); + /// Called by ACE_Reactor when asynchronous connections suceeds (on + /// some platforms only). + virtual int handle_exception (ACE_HANDLE fd); - long decr_refcount (void); + /// This method is called if a connection times out before + /// completing. + virtual int handle_timeout (const ACE_Time_Value &tv, + const void *arg); + + /// Should Reactor resume us if we have been suspended before the + /// upcall? + virtual int resume_handler (void); /// Dump the state of an object. void dump (void) const; @@ -81,27 +107,16 @@ public: /// Declare the dynamic allocation hooks. ACE_ALLOC_HOOK_DECLARE; -protected: - /// Prevent direct deletion - ~ACE_Svc_Tuple (void); - private: - /// Associated SVC_HANDLER. - SVC_HANDLER *svc_handler_; - - /// IPC <HANDLE> that we are trying to connect. - ACE_HANDLE handle_; - /// Associated argument. - const void *arg_; + /// Connector base. + ACE_Connector_Base<SVC_HANDLER> &connector_; - /// Associated cancellation id. - long cancellation_id_; + /// Associated SVC_HANDLER. + SVC_HANDLER *svc_handler_; - /// Reference count manipulated within the context of the connector - /// lock. - /// @@ TODO: Things will change after 5.3 goes out of the way. - long refcount_; + /// Associated timer id. + long timer_id_; }; /** @@ -110,22 +125,17 @@ private: * @brief Generic factory for actively connecting clients and creating * service handlers (SVC_HANDLERs). * - * Implements the strategy for actively establishing connections - * with clients. An ACE_Connector is parameterized by concrete - * types that conform to the interfaces of PEER_CONNECTOR and - * SVC_HANDLER. The PEER_CONNECTOR is instantiated with a - * transport mechanism that passively establishes connections. - * The SVC_HANDLER is instantiated with a concrete type that - * performs the application-specific service. An ACE_Connector - * inherits from ACE_Service_Object, which in turn inherits from - * ACE_Event_Handler. This enables the ACE_Reactor to dispatch - * the ACE_Connector's handle_output method when connections - * complete asynchronously. The handle_output method performs - * the connector's active connection establishment and service - * activation strategy. + * Implements the strategy for actively establishing connections with + * clients. An ACE_Connector is parameterized by concrete types that + * conform to the interfaces of PEER_CONNECTOR and SVC_HANDLER. The + * PEER_CONNECTOR is instantiated with a transport mechanism that + * actively establishes connections. The SVC_HANDLER is instantiated + * with a concrete type that performs the application-specific + * service. Both blocking and non-blocking connects are supported. + * Further, non-blocking connects support timeouts. */ template <class SVC_HANDLER, ACE_PEER_CONNECTOR_1> -class ACE_Connector : public ACE_Service_Object +class ACE_Connector : public ACE_Connector_Base<SVC_HANDLER>, public ACE_Service_Object { public: @@ -135,14 +145,13 @@ public: typedef SVC_HANDLER handler_type; typedef ACE_TYPENAME SVC_HANDLER::stream_type stream_type; - // typedef ACE_TYPENAME ACE_PEER_CONNECTOR_ADDR PEER_ADDR; #if defined (ACE_HAS_TYPENAME_KEYWORD) typedef ACE_PEER_CONNECTOR_ADDR ACE_PEER_ADDR_TYPEDEF; #endif /* ACE_HAS_TYPENAME_KEYWORD */ typedef ACE_TYPENAME _ACE_PEER_CONNECTOR::PEER_ADDR - ACE_TYPENAME_ACE_PEER_CONNECTOR_PEER_ADDR; + ACE_TYPENAME_ACE_PEER_CONNECTOR_PEER_ADDR; /** * Initialize a connector. @a flags indicates how <SVC_HANDLER>'s @@ -182,7 +191,7 @@ public: const ACE_PEER_CONNECTOR_ADDR &remote_addr, const ACE_Synch_Options &synch_options = ACE_Synch_Options::defaults, const ACE_PEER_CONNECTOR_ADDR &local_addr - = (ACE_TYPENAME_ACE_PEER_CONNECTOR_PEER_ADDR &) ACE_PEER_CONNECTOR_ADDR_ANY, + = (ACE_TYPENAME_ACE_PEER_CONNECTOR_PEER_ADDR &) ACE_PEER_CONNECTOR_ADDR_ANY, int reuse_addr = 0, int flags = O_RDWR, int perms = 0); @@ -202,7 +211,7 @@ public: const ACE_PEER_CONNECTOR_ADDR &remote_addr, const ACE_Synch_Options &synch_options = ACE_Synch_Options::defaults, const ACE_PEER_CONNECTOR_ADDR &local_addr - = (ACE_TYPENAME_ACE_PEER_CONNECTOR_PEER_ADDR &) ACE_PEER_CONNECTOR_ADDR_ANY, + = (ACE_TYPENAME_ACE_PEER_CONNECTOR_PEER_ADDR &) ACE_PEER_CONNECTOR_ADDR_ANY, int reuse_addr = 0, int flags = O_RDWR, int perms = 0); @@ -230,12 +239,23 @@ public: */ virtual int cancel (SVC_HANDLER *svc_handler); - /// Close down the Connector + /// Close down the Connector. All pending non-blocking connects are + /// canceled and the corresponding svc_handler is closed. virtual int close (void); /// Return the underlying PEER_CONNECTOR object. virtual ACE_PEER_CONNECTOR &connector (void) const; + /// Initialize Svc_Handler. + virtual void initialize_svc_handler (ACE_HANDLE handle, + SVC_HANDLER *svc_handler); + + /// Set Reactor. + virtual void reactor (ACE_Reactor *reactor); + + /// Get Reactor. + virtual ACE_Reactor *reactor (void) const; + /// Dump the state of an object. void dump (void) const; @@ -244,16 +264,7 @@ public: protected: // = Helpful typedefs. - - typedef ACE_Svc_Tuple<SVC_HANDLER> - AST; - - typedef ACE_Map_Manager<ACE_HANDLE, ACE_Svc_Tuple<SVC_HANDLER> *, ACE_SYNCH_RW_MUTEX> - MAP_MANAGER; - typedef ACE_Map_Iterator<ACE_HANDLE, ACE_Svc_Tuple<SVC_HANDLER> *, ACE_SYNCH_RW_MUTEX> - MAP_ITERATOR; - typedef ACE_Map_Entry<ACE_HANDLE, ACE_Svc_Tuple<SVC_HANDLER> *> - MAP_ENTRY; + typedef ACE_NonBlocking_Connect_Handler<SVC_HANDLER> NBCH; // = The following two methods define the Connector's strategies for // creating, connecting, and activating SVC_HANDLER's, respectively. @@ -302,17 +313,23 @@ protected: */ virtual int activate_svc_handler (SVC_HANDLER *svc_handler); - /// Called by ACE_Reactor when asynchronous connections fail. - virtual int handle_input (ACE_HANDLE); + /// Creates and registers ACE_NonBlocking_Connect_Handler. + int nonblocking_connect (SVC_HANDLER *, + const ACE_Synch_Options &); - /// Called by ACE_Reactor when asynchronous connections succeed. - virtual int handle_output (ACE_HANDLE); - - virtual int resume_handler (void); + /// Implementation the <connect> methods. + virtual int connect_i (SVC_HANDLER *&svc_handler, + SVC_HANDLER **sh_copy, + const ACE_PEER_CONNECTOR_ADDR &remote_addr, + const ACE_Synch_Options &synch_options, + const ACE_PEER_CONNECTOR_ADDR &local_addr, + int reuse_addr, + int flags, + int perms); - /// Called by ACE_Reactor when asynchronous connections complete (on - /// some platforms only). - virtual int handle_exception (ACE_HANDLE fd = ACE_INVALID_HANDLE); + /// Return the handle set representing the non-blocking connects in + /// progress. + ACE_Handle_Set &non_blocking_handles (void); // = Dynamic linking hooks. /// Default version does no work and returns -1. Must be overloaded @@ -325,20 +342,6 @@ protected: /// Default version returns address info in <buf>. virtual int info (ACE_TCHAR **, size_t) const; - // = Demultiplexing hooks. - /** - * Terminate the Client ACE_Connector by iterating over any - * unconnected ACE_Svc_Handler's and removing them from the - * ACE_Reactor. - */ - virtual int handle_close (ACE_HANDLE = ACE_INVALID_HANDLE, - ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK); - - /// This method is called if a connection times out before - /// completing. - virtual int handle_timeout (const ACE_Time_Value &tv, - const void *arg); - // = Service management hooks. /// Default version does no work and returns -1. Must be overloaded /// by application developer to do anything meaningful. @@ -348,43 +351,10 @@ protected: /// by application developer to do anything meaningful. virtual int resume (void); - /// Creates and inserts an ACE_Svc_Tuple into the <handler_map_>. - /// so that we can continue accepting this connection asynchronously. - int create_AST (SVC_HANDLER *, - const ACE_Synch_Options &); - - /// Cleanup the <handler_map_> and returns the appropriate - /// ACE_Svc_Tuple (which is 0 if there is no associated tuple). - int cleanup_AST (ACE_HANDLE handle, AST *&ast); - - /// Implementation the <connect> methods. - virtual int connect_i (SVC_HANDLER *&svc_handler, - SVC_HANDLER **sh_copy, - const ACE_PEER_CONNECTOR_ADDR &remote_addr, - const ACE_Synch_Options &synch_options, - const ACE_PEER_CONNECTOR_ADDR &local_addr, - int reuse_addr, - int flags, - int perms); - - - /// Helper method for manipulating the refcount on AST. It holds the - /// lock before manipulating the refcount on AST. - /// @@ TODO: Needs to be out after 5.3 - long incr_ast_refcount (AST *ast); - long decr_ast_refcount (AST *ast); - - /// Lookup table that maps an I/O handle to a SVC_HANDLER *. - MAP_MANAGER handler_map_; private: - /// This is the concrete connector factory (it keeps no state so the - /// <ACE_Connector> is reentrant). + /// This is the peer connector factory. ACE_PEER_CONNECTOR connector_; - /// Keeps track of whether we are in the process of closing (required - /// to avoid circular calls to <handle_close>). - char closing_; - /** * Flags that indicate how <SVC_HANDLER>'s should be initialized * prior to being activated. Right now, the only flag that is @@ -393,10 +363,12 @@ private: */ int flags_; - /// Lock to synchronize access to the internal state of the - /// connector. - /// @@TODO: This needs to go after 1.3 - ACE_SYNCH_MUTEX mutex_; + /// Pointer to the Reactor. + ACE_Reactor *reactor_; + + /// Handle set representing the non-blocking connects in progress. + ACE_Handle_Set non_blocking_handles_; + }; /** @@ -421,23 +393,23 @@ public: // Useful STL-style traits. typedef ACE_Creation_Strategy<SVC_HANDLER> - creation_strategy_type; + creation_strategy_type; typedef ACE_Connect_Strategy<SVC_HANDLER, ACE_PEER_CONNECTOR_2> - connect_strategy_type; + connect_strategy_type; typedef ACE_Concurrency_Strategy<SVC_HANDLER> - concurrency_strategy_type; + concurrency_strategy_type; typedef ACE_Connector <SVC_HANDLER, ACE_PEER_CONNECTOR_2> - base_type; + base_type; // = Define some useful (old style) traits. typedef ACE_Creation_Strategy<SVC_HANDLER> - CREATION_STRATEGY; + CREATION_STRATEGY; typedef ACE_Connect_Strategy<SVC_HANDLER, ACE_PEER_CONNECTOR_2> - CONNECT_STRATEGY; + CONNECT_STRATEGY; typedef ACE_Concurrency_Strategy<SVC_HANDLER> - CONCURRENCY_STRATEGY; + CONCURRENCY_STRATEGY; typedef ACE_Connector <SVC_HANDLER, ACE_PEER_CONNECTOR_2> - SUPER; + SUPER; /** * Initialize a connector. <flags> indicates how <SVC_HANDLER>'s diff --git a/ace/Event_Handler.cpp b/ace/Event_Handler.cpp index 11b1c48b38e..aa96116f662 100644 --- a/ace/Event_Handler.cpp +++ b/ace/Event_Handler.cpp @@ -18,8 +18,10 @@ ACE_RCSID(ace, Event_Handler, "$Id$") ACE_Event_Handler::ACE_Event_Handler (ACE_Reactor *r, int p) - : priority_ (p), - reactor_ (r) + : reference_count_ (1) + , priority_ (p) + , reactor_ (r) + , reference_counting_policy_ (Reference_Counting_Policy::DISABLED) { // ACE_TRACE ("ACE_Event_Handler::ACE_Event_Handler"); } @@ -172,6 +174,58 @@ ACE_Event_Handler::reactor (void) const return this->reactor_; } +ACE_Reactor_Timer_Interface * +ACE_Event_Handler::reactor_timer_interface (void) const +{ + ACE_TRACE ("ACE_Event_Handler::reactor_timer_interface"); + return this->reactor_; +} + +ACE_Event_Handler::Reference_Count +ACE_Event_Handler::add_reference (void) +{ + return ++this->reference_count_; +} + +ACE_Event_Handler::Reference_Count +ACE_Event_Handler::remove_reference (void) +{ + Reference_Count result = + --this->reference_count_; + + if (result == 0) + delete this; + + return result; +} + +ACE_Event_Handler::Policy::~Policy (void) +{ +} + +ACE_Event_Handler::Reference_Counting_Policy::Reference_Counting_Policy (Reference_Counting_Policy::Value value) + : value_ (value) +{ +} + +ACE_Event_Handler::Reference_Counting_Policy::Value +ACE_Event_Handler::Reference_Counting_Policy::value (void) const +{ + return this->value_; +} + +void +ACE_Event_Handler::Reference_Counting_Policy::value (ACE_Event_Handler::Reference_Counting_Policy::Value value) +{ + this->value_ = value; +} + +ACE_Event_Handler::Reference_Counting_Policy & +ACE_Event_Handler::reference_counting_policy (void) +{ + return this->reference_counting_policy_; +} + #if !defined (ACE_HAS_WINCE) ACE_THR_FUNC_RETURN @@ -234,6 +288,92 @@ ACE_Event_Handler::remove_stdin_handler (ACE_Reactor *reactor, #endif /* ACE_HAS_WINCE */ +ACE_Event_Handler_var::ACE_Event_Handler_var (void) + : ptr_ (0) +{ +} + +ACE_Event_Handler_var::ACE_Event_Handler_var (ACE_Event_Handler *p) + : ptr_ (p) +{ +} + +ACE_Event_Handler_var::ACE_Event_Handler_var (const ACE_Event_Handler_var &b) + : ptr_ (b.ptr_) +{ + if (this->ptr_ != 0) + { + this->ptr_->add_reference (); + } +} + +ACE_Event_Handler_var::~ACE_Event_Handler_var (void) +{ + if (this->ptr_ != 0) + { + this->ptr_->remove_reference (); + } +} + +ACE_Event_Handler_var & +ACE_Event_Handler_var::operator= (ACE_Event_Handler *p) +{ + if (this->ptr_ == p) + return *this; + + if (this->ptr_ != 0) + this->ptr_->remove_reference (); + + this->ptr_ = p; + + return *this; +} + +ACE_Event_Handler_var & +ACE_Event_Handler_var::operator= (const ACE_Event_Handler_var &b) +{ + if (this->ptr_ != b.ptr_) + { + if (this->ptr_ != 0) + { + this->ptr_->remove_reference (); + } + + if ((this->ptr_ = b.ptr_) != 0) + { + this->ptr_->add_reference (); + } + } + + return *this; +} + +ACE_Event_Handler * +ACE_Event_Handler_var::operator->() const +{ + return this->ptr_; +} + +ACE_Event_Handler * +ACE_Event_Handler_var::handler (void) const +{ + return this->ptr_; +} + +ACE_Event_Handler * +ACE_Event_Handler_var::release (void) +{ + ACE_Event_Handler *old = this->ptr_; + this->ptr_ = 0; + return old; +} + +void +ACE_Event_Handler_var::reset (ACE_Event_Handler *p) +{ + *this = p; +} + ACE_Notification_Buffer::ACE_Notification_Buffer (void) { ACE_TRACE ("ACE_Notification_Buffer::ACE_Notification_Buffer"); diff --git a/ace/Event_Handler.h b/ace/Event_Handler.h index e5f0df47427..c29ee1e44d8 100644 --- a/ace/Event_Handler.h +++ b/ace/Event_Handler.h @@ -21,10 +21,12 @@ #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "ace/OS.h" +#include "ace/Atomic_Op.h" // Forward declaration. class ACE_Message_Block; class ACE_Reactor; +class ACE_Reactor_Timer_Interface; class ACE_Thread_Manager; class ACE_Process; @@ -162,6 +164,9 @@ public: /// Get the event demultiplexors. virtual ACE_Reactor *reactor (void) const; + /// Get only the reactor's timer related interface. + virtual ACE_Reactor_Timer_Interface *reactor_timer_interface (void) const; + #if !defined (ACE_HAS_WINCE) /** * Used to read from non-socket ACE_HANDLEs in our own thread to @@ -190,11 +195,100 @@ public: ACE_Thread_Manager *thr_mgr); #endif /* ACE_HAS_WINCE */ + /// Reference count type. + typedef long Reference_Count; + + /// Increment reference count on the handler. + /** + * This method is called when the handler is registered with the + * Reactor and when the Reactor makes an upcall on the handler. + * Reference count is 1 when the handler is created. + * + * @return Current reference count. + */ + virtual Reference_Count add_reference (void); + + /// Decrement reference count on the handler. + /** + * This method is called when the handler is removed from the + * Reactor and when an upcall made on the handler by the Reactor + * completes. Handler is deleted when the reference count reaches + * 0. + * + * @return Current reference count. + */ + virtual Reference_Count remove_reference (void); + + /** + * @class Policy + * + * @brief Base class for all handler policies. + */ + class ACE_Export Policy + { + + public: + + /// Virtual destructor. + virtual ~Policy (void); + }; + + /** + * @class Reference_Counting_Policy + * + * @brief This policy dictates the reference counting requirements + * for the handler. + * + * This policy allows applications to configure whether it wants the + * Reactor to call add_reference() and remove_reference() during + * registrations, removals, and upcalls. + * + * <B>Default:</B> DISABLED. + */ + class ACE_Export Reference_Counting_Policy : public Policy + { + /// This policy can only be created by the handler. + friend class ACE_Event_Handler; + + public: + + enum Value + { + /// Perform reference counting. + ENABLED, + /// Don't perform reference counting. + DISABLED + }; + + /// Current Reference_Counting_Policy. + Value value (void) const; + + /// Update Reference_Counting_Policy. + void value (Value value); + + private: + + /// Private constructor. + Reference_Counting_Policy (Value value); + + /// The value of the policy. + Value value_; + }; + + /// Current Reference_Counting_Policy. + Reference_Counting_Policy &reference_counting_policy (void); + protected: /// Force ACE_Event_Handler to be an abstract base class. ACE_Event_Handler (ACE_Reactor * = 0, int priority = ACE_Event_Handler::LO_PRIORITY); + /// Typedef for implementation of reference counting. + typedef ACE_Atomic_Op<ACE_SYNCH_MUTEX, Reference_Count> Atomic_Reference_Count; + + /// Reference count. + Atomic_Reference_Count reference_count_; + private: /// Priority of this Event_Handler. @@ -202,6 +296,58 @@ private: /// Pointer to the various event demultiplexors. ACE_Reactor *reactor_; + + /// Reference counting requirements. + Reference_Counting_Policy reference_counting_policy_; +}; + +/** + * @class ACE_Event_Handler_var + * + * @brief Auto pointer like class for Event Handlers. + * + * Used to manage lifecycle of handlers. This class calls + * ACE_Event_Handler::remove_reference() in its destructor. + */ +class ACE_Export ACE_Event_Handler_var +{ + +public: + + /// Default constructor. + ACE_Event_Handler_var (void); + + /// Construct with a handler. + ACE_Event_Handler_var (ACE_Event_Handler *p); + + /// Copy constructor. + ACE_Event_Handler_var (const ACE_Event_Handler_var &b); + + /// Destructor. + ~ACE_Event_Handler_var (void); + + /// Assignment to a handler. + ACE_Event_Handler_var &operator= (ACE_Event_Handler *p); + + /// Assignment to a ACE_Event_Handler_var. + ACE_Event_Handler_var &operator= (const ACE_Event_Handler_var &b); + + /// Overloaded "->". + ACE_Event_Handler *operator-> () const; + + /// Access the handler. + ACE_Event_Handler *handler (void) const; + + /// Release the handler. + ACE_Event_Handler *release (void); + + /// Reset the handler. + void reset (ACE_Event_Handler *p = 0); + +private: + + /// Handler. + ACE_Event_Handler *ptr_; }; /** diff --git a/ace/Makefile.ace b/ace/Makefile.ace index 9a214661154..a28952f3124 100644 --- a/ace/Makefile.ace +++ b/ace/Makefile.ace @@ -258,76 +258,76 @@ OTHER_FILES = \ Remote_Name_Space \ TEMPLATE_FILES = \ - Acceptor \ - Active_Map_Manager_T \ - Array_Base \ - Node \ - Unbounded_Set \ - Unbounded_Set_Ex \ - Unbounded_Queue \ - Asynch_Acceptor \ - Asynch_Connector \ - Atomic_Op_T \ - Auto_IncDec_T \ - Auto_Ptr \ - Based_Pointer_T \ - Bound_Ptr \ - Connector \ - Containers_T \ - Cache_Map_Manager_T \ - Cached_Connect_Strategy_T \ - Caching_Strategies_T \ - Caching_Utility_T \ - Cleanup_Strategies_T \ - Dump_T \ - Dynamic_Service \ - Env_Value_T \ - Event_Handler_T \ - Framework_Component_T \ - Free_List \ - Functor_T \ - Future \ - Future_Set \ - Hash_Map_Manager_T \ - Hash_Map_With_Allocator_T \ - Hash_Cache_Map_Manager_T \ - IOStream_T \ - Intrusive_List \ - Intrusive_List_Node \ - LOCK_SOCK_Acceptor \ - Local_Name_Space_T \ - Malloc_T \ - Managed_Object \ - Map_Manager \ - Map_T \ - Message_Block_T \ - Message_Queue_T \ - Module \ - Obstack_T \ - Pair_T \ - Refcounted_Auto_Ptr \ - RB_Tree \ - Select_Reactor_T \ - Singleton \ - Strategies_T \ - Stream \ - Stream_Modules \ - String_Base \ - Svc_Handler \ - Synch_T \ - Task_T \ - Template_Instantiations \ - Test_and_Set \ - Timeprobe_T \ - Timer_Hash_T \ - Timer_Heap_T \ - Timer_List_T \ - Timer_Queue_Adapters \ - Timer_Queue_T \ - Timer_Wheel_T \ - Typed_SV_Message \ - Typed_SV_Message_Queue \ - Vector_T + Acceptor \ + Active_Map_Manager_T \ + Array_Base \ + Node \ + Unbounded_Set \ + Unbounded_Set_Ex \ + Unbounded_Queue \ + Asynch_Acceptor \ + Asynch_Connector \ + Atomic_Op_T \ + Auto_IncDec_T \ + Auto_Ptr \ + Based_Pointer_T \ + Bound_Ptr \ + Connector \ + Containers_T \ + Cache_Map_Manager_T \ + Cached_Connect_Strategy_T \ + Caching_Strategies_T \ + Caching_Utility_T \ + Cleanup_Strategies_T \ + Dump_T \ + Dynamic_Service \ + Env_Value_T \ + Event_Handler_T \ + Framework_Component_T \ + Free_List \ + Functor_T \ + Future \ + Future_Set \ + Hash_Map_Manager_T \ + Hash_Map_With_Allocator_T \ + Hash_Cache_Map_Manager_T \ + IOStream_T \ + Intrusive_List \ + Intrusive_List_Node \ + LOCK_SOCK_Acceptor \ + Local_Name_Space_T \ + Malloc_T \ + Managed_Object \ + Map_Manager \ + Map_T \ + Message_Block_T \ + Message_Queue_T \ + Module \ + Obstack_T \ + Pair_T \ + Refcounted_Auto_Ptr \ + RB_Tree \ + Select_Reactor_T \ + Singleton \ + Strategies_T \ + Stream \ + Stream_Modules \ + String_Base \ + Svc_Handler \ + Synch_T \ + Task_T \ + Template_Instantiations \ + Test_and_Set \ + Timeprobe_T \ + Timer_Hash_T \ + Timer_Heap_T \ + Timer_List_T \ + Timer_Queue_Adapters \ + Timer_Queue_T \ + Timer_Wheel_T \ + Typed_SV_Message \ + Typed_SV_Message_Queue \ + Vector_T #---------------------------------------------------------------------------- # Include macros and targets @@ -628,16397 +628,13611 @@ endif # GHS .obj/ARGV.o .obj/ARGV.so .shobj/ARGV.o .shobj/ARGV.so: ARGV.cpp ARGV.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ARGV.i + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Queue.inl \ + ARGV.i .obj/Argv_Type_Converter.o .obj/Argv_Type_Converter.so .shobj/Argv_Type_Converter.o .shobj/Argv_Type_Converter.so: Argv_Type_Converter.cpp \ - Argv_Type_Converter.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Memory.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - Argv_Type_Converter.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl + Argv_Type_Converter.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Memory.h \ + OS_Export.h \ + OS_Errno.h \ + Argv_Type_Converter.inl \ + OS_String.h \ + Basic_Types.h .obj/Basic_Types.o .obj/Basic_Types.so .shobj/Basic_Types.o .shobj/Basic_Types.so: Basic_Types.cpp OS.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Template_Instantiations.cpp - -.obj/Time_Value.o .obj/Time_Value.so .shobj/Time_Value.o .shobj/Time_Value.so: Time_Value.cpp Time_Value.h \ - pre.h \ - OS_Export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Time_Value.inl \ - Basic_Types.h \ - Basic_Types.i + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Basic_Types.i \ + Template_Instantiations.cpp + +.obj/Time_Value.o .obj/Time_Value.so .shobj/Time_Value.o .shobj/Time_Value.so: Time_Value.cpp \ + Time_Value.h \ + pre.h \ + OS_Export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + Basic_Types.h \ + Time_Value.inl .obj/OS.o .obj/OS.so .shobj/OS.o .shobj/OS.so: OS.cpp OS.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sched_Params.h \ - Sched_Params.i \ - OS_Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - OS_Thread_Adapter.inl \ - OS_QoS.h - -.obj/OS_Dirent.o .obj/OS_Dirent.so .shobj/OS_Dirent.o .shobj/OS_Dirent.so: OS_Dirent.cpp OS_Dirent.h \ - pre.h \ - OS_Export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - Log_Msg.h \ - Global_Macros.h \ - Default_Constants.h \ - Log_Priority.h \ - OS.h OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/OS_Memory.o .obj/OS_Memory.so .shobj/OS_Memory.o .shobj/OS_Memory.so: OS_Memory.cpp OS_Memory.h \ - pre.h \ - OS_Export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sched_Params.h \ + OS_Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + OS_QoS.h \ + OS.i + +.obj/OS_Dirent.o .obj/OS_Dirent.so .shobj/OS_Dirent.o .shobj/OS_Dirent.so: OS_Dirent.cpp \ + OS_Dirent.h \ + pre.h \ + OS_Export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + Log_Msg.h \ + Global_Macros.h \ + Default_Constants.h \ + Log_Priority.h \ + OS.h \ + OS_TLI.h \ + Time_Value.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + OS_Log_Msg_Attributes.h \ + OS_Dirent.inl + +.obj/OS_Memory.o .obj/OS_Memory.so .shobj/OS_Memory.o .shobj/OS_Memory.so: OS_Memory.cpp \ + OS_Memory.h \ + pre.h \ + OS_Export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Errno.h \ + OS_Memory.inl .obj/OS_QoS.o .obj/OS_QoS.so .shobj/OS_QoS.o .shobj/OS_QoS.so: OS_QoS.cpp OS_QoS.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i - -.obj/OS_String.o .obj/OS_String.so .shobj/OS_String.o .shobj/OS_String.so: OS_String.cpp OS_String.h \ - pre.h \ - OS_Export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h + +.obj/OS_String.o .obj/OS_String.so .shobj/OS_String.o .shobj/OS_String.so: OS_String.cpp \ + OS_String.h \ + pre.h \ + OS_Export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_Errno.h \ + OS_String.inl .obj/OS_TLI.o .obj/OS_TLI.so .shobj/OS_TLI.o .shobj/OS_TLI.so: OS_TLI.cpp OS_TLI.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_TLI.inl + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Export.h \ + OS_Errno.h \ + OS_TLI.inl .obj/OS_Errno.o .obj/OS_Errno.so .shobj/OS_Errno.o .shobj/OS_Errno.so: OS_Errno.cpp OS_Errno.h \ - pre.h \ - OS_Export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Errno.inl + pre.h \ + OS_Export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Errno.inl .obj/Base_Thread_Adapter.o .obj/Base_Thread_Adapter.so .shobj/Base_Thread_Adapter.o .shobj/Base_Thread_Adapter.so: Base_Thread_Adapter.cpp \ - Base_Thread_Adapter.h \ - pre.h \ - OS_Log_Msg_Attributes.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - streams.h \ - OS_Export.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - Trace.h OS.i + Base_Thread_Adapter.h \ + pre.h \ + OS_Log_Msg_Attributes.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + streams.h \ + OS_Export.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + Trace.h \ + Base_Thread_Adapter.inl .obj/OS_Thread_Adapter.o .obj/OS_Thread_Adapter.so .shobj/OS_Thread_Adapter.o .shobj/OS_Thread_Adapter.so: OS_Thread_Adapter.cpp \ - OS_Thread_Adapter.h \ - pre.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - streams.h \ - OS_Export.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - OS_Thread_Adapter.inl \ - Thread_Hook.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - Trace.h OS.i + OS_Thread_Adapter.h \ + pre.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + streams.h \ + OS_Export.h \ + Thread_Hook.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + Trace.h \ + OS_Thread_Adapter.inl .obj/OS_Log_Msg_Attributes.o .obj/OS_Log_Msg_Attributes.so .shobj/OS_Log_Msg_Attributes.o .shobj/OS_Log_Msg_Attributes.so: OS_Log_Msg_Attributes.cpp \ - OS_Log_Msg_Attributes.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - streams.h \ - OS_Export.h \ - OS_Log_Msg_Attributes.inl - -.obj/Thread_Hook.o .obj/Thread_Hook.so .shobj/Thread_Hook.o .shobj/Thread_Hook.so: Thread_Hook.cpp Thread_Hook.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Export.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i + OS_Log_Msg_Attributes.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + streams.h \ + OS_Export.h \ + OS_Log_Msg_Attributes.inl + +.obj/Thread_Hook.o .obj/Thread_Hook.so .shobj/Thread_Hook.o .shobj/Thread_Hook.so: Thread_Hook.cpp \ + Thread_Hook.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Export.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h .obj/Sched_Params.o .obj/Sched_Params.so .shobj/Sched_Params.o .shobj/Sched_Params.so: Sched_Params.cpp \ - Sched_Params.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sched_Params.i - -.obj/Handle_Set.o .obj/Handle_Set.so .shobj/Handle_Set.o .shobj/Handle_Set.so: Handle_Set.cpp Handle_Set.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Handle_Set.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + Sched_Params.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sched_Params.i + +.obj/Handle_Set.o .obj/Handle_Set.so .shobj/Handle_Set.o .shobj/Handle_Set.so: Handle_Set.cpp \ + Handle_Set.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Handle_Set.i .obj/Copy_Disabled.o .obj/Copy_Disabled.so .shobj/Copy_Disabled.o .shobj/Copy_Disabled.so: Copy_Disabled.cpp \ - Copy_Disabled.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + Copy_Disabled.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/ACE.o .obj/ACE.so .shobj/ACE.o .shobj/ACE.so: ACE.cpp ACE.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Handle_Set.h \ - Handle_Set.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - SString.i \ - Version.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Handle_Set.h \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + String_Base.i \ + Version.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i .obj/Active_Map_Manager.o .obj/Active_Map_Manager.so .shobj/Active_Map_Manager.o .shobj/Active_Map_Manager.so: Active_Map_Manager.cpp \ - Active_Map_Manager.h \ - pre.h \ - OS_String.h \ - OS_Export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - Active_Map_Manager.i \ - Active_Map_Manager_T.h \ - Map_Manager.h \ - Synch.h OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Active_Map_Manager_T.i \ - Active_Map_Manager_T.cpp - -.obj/Arg_Shifter.o .obj/Arg_Shifter.so .shobj/Arg_Shifter.o .shobj/Arg_Shifter.so: Arg_Shifter.cpp Arg_Shifter.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_String.h \ - OS_Export.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.h \ - OS_Memory.inl + Active_Map_Manager.h \ + pre.h \ + OS_String.h \ + OS_Export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Basic_Types.h \ + ACE_export.h \ + Active_Map_Manager_T.h \ + Map_Manager.h \ + Synch.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Active_Map_Manager_T.cpp \ + Active_Map_Manager_T.i \ + Active_Map_Manager.i + +.obj/Arg_Shifter.o .obj/Arg_Shifter.so .shobj/Arg_Shifter.o .shobj/Arg_Shifter.so: Arg_Shifter.cpp \ + Arg_Shifter.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_String.h \ + OS_Export.h \ + Basic_Types.h \ + OS_Errno.h \ + OS_Memory.h .obj/Capabilities.o .obj/Capabilities.so .shobj/Capabilities.o .shobj/Capabilities.so: Capabilities.cpp \ - Capabilities.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Synch.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Hash_Map_Manager_T.h \ - Functor.h ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Functor.i \ - Functor_T.h \ - Functor_T.i \ - Functor_T.cpp \ - Hash_Map_Manager_T.i \ - Hash_Map_Manager_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Capabilities.i - -.obj/Containers.o .obj/Containers.so .shobj/Containers.o .shobj/Containers.so: Containers.cpp Containers.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Containers.i \ - Containers_T.h \ - Node.h Node.cpp \ - Array_Base.h \ - Global_Macros.h \ - OS_Export.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp + Capabilities.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Synch.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Hash_Map_Manager_T.h \ + Functor.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Functor_T.h \ + Functor_T.cpp \ + Functor_T.i \ + Hash_Map_Manager_T.cpp \ + Hash_Map_Manager_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Capabilities.i + +.obj/Containers.o .obj/Containers.so .shobj/Containers.o .shobj/Containers.so: Containers.cpp \ + Containers.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Containers_T.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Global_Macros.h \ + OS_Export.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + Containers.i .obj/Configuration.o .obj/Configuration.so .shobj/Configuration.o .shobj/Configuration.so: Configuration.cpp \ - Configuration.h \ - pre.h SString.h \ - SStringfwd.h \ - Basic_Types.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Basic_Types.i \ - String_Base.h \ - String_Base_Const.h \ - Global_Macros.h \ - OS_Export.h \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - String_Base.i \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - Hash_Map_With_Allocator_T.h \ - Hash_Map_Manager_T.h \ - Functor.h \ - Functor.i \ - Functor_T.h \ - Functor_T.i \ - Functor_T.cpp \ - Hash_Map_Manager_T.i \ - Hash_Map_Manager_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Hash_Map_With_Allocator_T.i \ - Hash_Map_With_Allocator_T.cpp \ - Configuration_Import_Export.h + Configuration.h \ + pre.h \ + SString.h \ + SStringfwd.h \ + Basic_Types.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + String_Base.h \ + String_Base_Const.h \ + Global_Macros.h \ + OS_Export.h \ + OS_String.h \ + OS_Memory.h \ + OS_Errno.h \ + String_Base.cpp \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + Hash_Map_With_Allocator_T.h \ + Hash_Map_Manager_T.h \ + Functor.h \ + Functor_T.h \ + Functor_T.cpp \ + Functor_T.i \ + Hash_Map_Manager_T.cpp \ + Hash_Map_Manager_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Hash_Map_With_Allocator_T.cpp \ + Hash_Map_With_Allocator_T.i \ + Configuration_Import_Export.h .obj/Configuration_Import_Export.o .obj/Configuration_Import_Export.so .shobj/Configuration_Import_Export.o .shobj/Configuration_Import_Export.so: Configuration_Import_Export.cpp \ - Configuration_Import_Export.h \ - pre.h \ - Configuration.h \ - SString.h \ - SStringfwd.h \ - Basic_Types.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Basic_Types.i \ - String_Base.h \ - String_Base_Const.h \ - Global_Macros.h \ - OS_Export.h \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - String_Base.i \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - Hash_Map_With_Allocator_T.h \ - Hash_Map_Manager_T.h \ - Functor.h \ - Functor.i \ - Functor_T.h \ - Functor_T.i \ - Functor_T.cpp \ - Hash_Map_Manager_T.i \ - Hash_Map_Manager_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Hash_Map_With_Allocator_T.i \ - Hash_Map_With_Allocator_T.cpp + Configuration_Import_Export.h \ + pre.h \ + Configuration.h \ + SString.h \ + SStringfwd.h \ + Basic_Types.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + String_Base.h \ + String_Base_Const.h \ + Global_Macros.h \ + OS_Export.h \ + OS_String.h \ + OS_Memory.h \ + OS_Errno.h \ + String_Base.cpp \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + Hash_Map_With_Allocator_T.h \ + Hash_Map_Manager_T.h \ + Functor.h \ + Functor_T.h \ + Functor_T.cpp \ + Functor_T.i \ + Hash_Map_Manager_T.cpp \ + Hash_Map_Manager_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Hash_Map_With_Allocator_T.cpp \ + Hash_Map_With_Allocator_T.i .obj/Dirent.o .obj/Dirent.so .shobj/Dirent.o .shobj/Dirent.so: Dirent.cpp Dirent.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - Dirent.i \ - Log_Msg.h \ - Global_Macros.h \ - Default_Constants.h \ - Log_Priority.h \ - OS.h \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/Dirent_Selector.o .obj/Dirent_Selector.so .shobj/Dirent_Selector.o .shobj/Dirent_Selector.so: Dirent_Selector.cpp OS.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Dirent_Selector.h \ - Dirent_Selector.inl + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + Dirent.i \ + Log_Msg.h \ + Global_Macros.h \ + Default_Constants.h \ + Log_Priority.h \ + OS.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + OS_Log_Msg_Attributes.h + +.obj/Dirent_Selector.o .obj/Dirent_Selector.so .shobj/Dirent_Selector.o .shobj/Dirent_Selector.so: Dirent_Selector.cpp \ + OS.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Dirent_Selector.h \ + Dirent_Selector.inl .obj/Dynamic.o .obj/Dynamic.so .shobj/Dynamic.o .shobj/Dynamic.so: Dynamic.cpp Dynamic.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Dynamic.i \ - Singleton.h \ - Synch.h OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Singleton.h \ + Synch.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Dynamic.i .obj/Flag_Manip.o .obj/Flag_Manip.so .shobj/Flag_Manip.o .shobj/Flag_Manip.so: Flag_Manip.cpp Flag_Manip.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i .obj/Framework_Component.o .obj/Framework_Component.so .shobj/Framework_Component.o .shobj/Framework_Component.so: Framework_Component.cpp \ - Framework_Component.h \ - pre.h Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - DLL_Manager.h \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - SString.i + Framework_Component.h \ + pre.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Framework_Component.inl \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + DLL_Manager.h \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + String_Base.i .obj/Functor.o .obj/Functor.so .shobj/Functor.o .shobj/Functor.so: Functor.cpp Functor_T.h \ - pre.h Functor.h \ - ACE.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Functor.i \ - Functor_T.i \ - Functor_T.cpp + pre.h \ + Functor.h \ + ACE.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Functor_T.cpp \ + Functor_T.i \ + Functor.i .obj/Get_Opt.o .obj/Get_Opt.so .shobj/Get_Opt.o .shobj/Get_Opt.so: Get_Opt.cpp Get_Opt.h \ - pre.h \ - SStringfwd.h \ - Basic_Types.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Basic_Types.i \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Node.h Node.cpp \ - Array_Base.h \ - Global_Macros.h \ - OS_Export.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Get_Opt.i ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SString.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i + pre.h \ + SStringfwd.h \ + Basic_Types.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + Containers.h \ + Containers_T.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Global_Macros.h \ + OS_Export.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SString.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + Get_Opt.i .obj/Hash_Map_Manager.o .obj/Hash_Map_Manager.so .shobj/Hash_Map_Manager.o .shobj/Hash_Map_Manager.so: Hash_Map_Manager.cpp \ - Hash_Map_Manager.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Hash_Map_Manager_T.h \ - Default_Constants.h \ - Functor.h ACE.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Functor.i \ - Functor_T.h \ - Functor_T.i \ - Functor_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Hash_Map_Manager_T.i \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Hash_Map_Manager_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h + Hash_Map_Manager.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Hash_Map_Manager_T.h \ + Default_Constants.h \ + Functor.h \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Functor_T.h \ + Functor_T.cpp \ + Functor_T.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Hash_Map_Manager_T.cpp \ + Hash_Map_Manager_T.i \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h .obj/Connection_Recycling_Strategy.o .obj/Connection_Recycling_Strategy.so .shobj/Connection_Recycling_Strategy.o .shobj/Connection_Recycling_Strategy.so: Connection_Recycling_Strategy.cpp \ - Connection_Recycling_Strategy.h \ - pre.h \ - Recyclable.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Recyclable.inl + Connection_Recycling_Strategy.h \ + pre.h \ + Recyclable.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Hashable.o .obj/Hashable.so .shobj/Hashable.o .shobj/Hashable.so: Hashable.cpp Hashable.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Hashable.inl + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Hashable.inl .obj/Notification_Strategy.o .obj/Notification_Strategy.so .shobj/Notification_Strategy.o .shobj/Notification_Strategy.so: Notification_Strategy.cpp \ - Notification_Strategy.h \ - pre.h \ - Event_Handler.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Event_Handler.i \ - Notification_Strategy.inl - -.obj/Recyclable.o .obj/Recyclable.so .shobj/Recyclable.o .shobj/Recyclable.so: Recyclable.cpp Recyclable.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Recyclable.inl + Notification_Strategy.h \ + pre.h \ + Event_Handler.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Atomic_Op.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Notification_Strategy.inl + +.obj/Recyclable.o .obj/Recyclable.so .shobj/Recyclable.o .shobj/Recyclable.so: Recyclable.cpp \ + Recyclable.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Recyclable.inl .obj/Refcountable.o .obj/Refcountable.so .shobj/Refcountable.o .shobj/Refcountable.so: Refcountable.cpp \ - Refcountable.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Refcountable.inl - -.obj/Handle_Ops.o .obj/Handle_Ops.so .shobj/Handle_Ops.o .shobj/Handle_Ops.so: Handle_Ops.cpp Handle_Ops.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Handle_Ops.i + Refcountable.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Refcountable.inl + +.obj/Handle_Ops.o .obj/Handle_Ops.so .shobj/Handle_Ops.o .shobj/Handle_Ops.so: Handle_Ops.cpp \ + Handle_Ops.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Handle_Ops.i .obj/Init_ACE.o .obj/Init_ACE.so .shobj/Init_ACE.o .shobj/Init_ACE.so: Init_ACE.cpp Init_ACE.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Init_ACE.i \ - Object_Manager.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Init_ACE.i \ + Object_Manager.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i .obj/Lib_Find.o .obj/Lib_Find.so .shobj/Lib_Find.o .shobj/Lib_Find.so: Lib_Find.cpp Lib_Find.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Lib_Find.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Lib_Find.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/Message_Block.o .obj/Message_Block.so .shobj/Message_Block.o .shobj/Message_Block.so: Message_Block.cpp \ - Message_Block.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Default_Constants.h \ - Global_Macros.h \ - OS_Export.h \ - Time_Value.h \ - Time_Value.inl \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Timeprobe.h + Message_Block.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Default_Constants.h \ + Global_Macros.h \ + OS_Export.h \ + Time_Value.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Message_Block_T.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Timeprobe.h \ + Message_Block.i .obj/Method_Request.o .obj/Method_Request.so .shobj/Method_Request.o .shobj/Method_Request.so: Method_Request.cpp \ - Method_Request.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Global_Macros.h \ - OS_Export.h + Method_Request.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Global_Macros.h \ + OS_Export.h .obj/Object_Manager.o .obj/Object_Manager.so .shobj/Object_Manager.o .shobj/Object_Manager.so: Object_Manager.cpp \ - Object_Manager.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Token_Manager.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Map_Manager.h \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Local_Tokens.h \ - Local_Tokens.i \ - Token_Manager.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Service_Manager.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - IPC_SAP.i \ - SOCK.i \ - SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Acceptor.h \ - SOCK_Acceptor.i \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - DLL.h \ - Service_Object.i \ - Service_Manager.i \ - Atomic_Op.h \ - Atomic_Op_T.h \ - Atomic_Op_T.i \ - Atomic_Op_T.cpp \ - Atomic_Op.i + Object_Manager.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Token_Manager.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Map_Manager.h \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Local_Tokens.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Service_Manager.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + Addr.h \ + IPC_SAP.h \ + IPC_SAP.i \ + SOCK.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Acceptor.h \ + SOCK_Acceptor.i \ + Service_Object.h \ + Shared_Object.h \ + DLL.h \ + Object_Manager.i .obj/Registry.o .obj/Registry.so .shobj/Registry.o .shobj/Registry.so: Registry.cpp Registry.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h .obj/String_Base_Const.o .obj/String_Base_Const.so .shobj/String_Base_Const.o .shobj/String_Base_Const.so: String_Base_Const.cpp \ - String_Base_Const.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Basic_Types.h \ - Basic_Types.i + String_Base_Const.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Basic_Types.h .obj/SString.o .obj/SString.so .shobj/SString.o .shobj/SString.so: SString.cpp Malloc.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + SString.i .obj/Stats.o .obj/Stats.so .shobj/Stats.o .shobj/Stats.so: Stats.cpp Stats.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - OS_Memory.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Basic_Stats.h \ - Basic_Stats.inl \ - Stats.i \ - High_Res_Timer.h \ - High_Res_Timer.i + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + OS_Memory.h \ + OS_Export.h \ + OS_Errno.h \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + OS.h \ + OS_Dirent.h \ + OS_String.h \ + Basic_Types.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Queue.inl \ + Basic_Stats.h \ + High_Res_Timer.h \ + Stats.i .obj/Sample_History.o .obj/Sample_History.so .shobj/Sample_History.o .shobj/Sample_History.so: Sample_History.cpp \ - Sample_History.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - Sample_History.inl \ - Basic_Stats.h \ - Basic_Stats.inl \ - Log_Msg.h \ - Global_Macros.h \ - OS_Export.h \ - Default_Constants.h \ - Log_Priority.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/Filecache.o .obj/Filecache.so .shobj/Filecache.o .shobj/Filecache.so: Filecache.cpp Filecache.h \ - pre.h Mem_Map.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Mem_Map.i \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Hash_Map_Manager_T.h \ - Functor.h ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Functor.i \ - Functor_T.h \ - Functor_T.i \ - Functor_T.cpp \ - Hash_Map_Manager_T.i \ - Hash_Map_Manager_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + Sample_History.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Basic_Types.h \ + ACE_export.h \ + Basic_Stats.h \ + Log_Msg.h \ + Global_Macros.h \ + OS_Export.h \ + Default_Constants.h \ + Log_Priority.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + OS_Log_Msg_Attributes.h \ + Sample_History.inl + +.obj/Filecache.o .obj/Filecache.so .shobj/Filecache.o .shobj/Filecache.so: Filecache.cpp \ + Filecache.h \ + pre.h \ + Mem_Map.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Hash_Map_Manager_T.h \ + Functor.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Functor_T.h \ + Functor_T.cpp \ + Functor_T.i \ + Hash_Map_Manager_T.cpp \ + Hash_Map_Manager_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i .obj/Dump.o .obj/Dump.so .shobj/Dump.o .shobj/Dump.so: Dump.cpp Synch_T.h \ - pre.h Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Dump.h Dump_T.h \ - Dump_T.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + pre.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Dump.h \ + Dump_T.h \ + Dump_T.cpp \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i .obj/Log_Msg.o .obj/Log_Msg.so .shobj/Log_Msg.o .shobj/Log_Msg.so: Log_Msg.cpp config-all.h \ - pre.h config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE.h OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Thread_Manager.h \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Log_Msg_Callback.h \ - Log_Msg_IPC.h \ - Log_Msg_Backend.h \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - IPC_SAP.i \ - SOCK.i \ - SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Log_Msg_NT_Event_Log.h \ - Log_Msg_UNIX_Syslog.h \ - Log_Record.h \ - Log_Record.i + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Thread_Manager.h \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Thread_Exit.h \ + Thread_Control.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Log_Msg_Callback.h \ + Log_Msg_IPC.h \ + Log_Msg_Backend.h \ + SPIPE_Connector.h \ + SPIPE_Stream.h \ + SPIPE.h \ + IPC_SAP.h \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i \ + SPIPE_Stream.i \ + SPIPE_Connector.i \ + Log_Msg_NT_Event_Log.h \ + Log_Msg_UNIX_Syslog.h \ + Log_Record.h \ + Log_Record.i .obj/Log_Msg_Callback.o .obj/Log_Msg_Callback.so .shobj/Log_Msg_Callback.o .shobj/Log_Msg_Callback.so: Log_Msg_Callback.cpp \ - Log_Msg_Callback.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + Log_Msg_Callback.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Log_Msg_Backend.o .obj/Log_Msg_Backend.so .shobj/Log_Msg_Backend.o .shobj/Log_Msg_Backend.so: Log_Msg_Backend.cpp \ - Log_Msg_Backend.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl - -.obj/Log_Msg_IPC.o .obj/Log_Msg_IPC.so .shobj/Log_Msg_IPC.o .shobj/Log_Msg_IPC.so: Log_Msg_IPC.cpp Log_Msg_IPC.h \ - pre.h \ - Log_Msg_Backend.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Log_Record.h \ - Log_Priority.h \ - Log_Record.i + Log_Msg_Backend.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl + +.obj/Log_Msg_IPC.o .obj/Log_Msg_IPC.so .shobj/Log_Msg_IPC.o .shobj/Log_Msg_IPC.so: Log_Msg_IPC.cpp \ + Log_Msg_IPC.h \ + pre.h \ + Log_Msg_Backend.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SPIPE_Connector.h \ + SPIPE_Stream.h \ + SPIPE.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SPIPE_Stream.i \ + SPIPE_Connector.i \ + Log_Record.h \ + Log_Priority.h \ + Log_Record.i .obj/Log_Msg_NT_Event_Log.o .obj/Log_Msg_NT_Event_Log.so .shobj/Log_Msg_NT_Event_Log.o .shobj/Log_Msg_NT_Event_Log.so: Log_Msg_NT_Event_Log.cpp \ - config-all.h \ - pre.h config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + config-all.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Log_Msg_UNIX_Syslog.o .obj/Log_Msg_UNIX_Syslog.so .shobj/Log_Msg_UNIX_Syslog.o .shobj/Log_Msg_UNIX_Syslog.so: Log_Msg_UNIX_Syslog.cpp \ - config-all.h \ - pre.h config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE.h OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Log_Msg_UNIX_Syslog.h \ - Log_Msg_Backend.h \ - Log_Record.h \ - Log_Record.i - -.obj/Log_Record.o .obj/Log_Record.so .shobj/Log_Record.o .shobj/Log_Record.so: Log_Record.cpp Log_Record.h \ - OS.h pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Priority.h \ - Log_Record.i \ - Log_Msg.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i + config-all.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg_UNIX_Syslog.h \ + Log_Msg_Backend.h \ + Log_Record.h \ + Log_Record.i + +.obj/Log_Record.o .obj/Log_Record.so .shobj/Log_Record.o .shobj/Log_Record.so: Log_Record.cpp \ + Log_Record.h \ + OS.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Priority.h \ + Log_Record.i \ + Log_Msg.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i .obj/Logging_Strategy.o .obj/Logging_Strategy.so .shobj/Logging_Strategy.o .shobj/Logging_Strategy.so: Logging_Strategy.cpp \ - ACE.h pre.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Get_Opt.h \ - SStringfwd.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Node.h Node.cpp \ - Array_Base.h \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Get_Opt.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Reactor.i \ - Reactor_Impl.h \ - Logging_Strategy.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i + ACE.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Get_Opt.h \ + SStringfwd.h \ + Containers.h \ + Containers_T.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Logging_Strategy.h \ + Service_Object.h \ + Shared_Object.h \ + Svc_Conf_Tokens.h \ + DLL.h .obj/Trace.o .obj/Trace.so .shobj/Trace.o .shobj/Trace.so: Trace.cpp Trace.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Global_Macros.h \ - OS_Export.h \ - Log_Msg.h \ - Default_Constants.h \ - Log_Priority.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - streams.h OS.i \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Global_Macros.h \ + OS_Export.h \ + Log_Msg.h \ + Default_Constants.h \ + Log_Priority.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Min_Max.h \ + streams.h \ + OS_Log_Msg_Attributes.h .obj/Activation_Queue.o .obj/Activation_Queue.so .shobj/Activation_Queue.o .shobj/Activation_Queue.so: Activation_Queue.cpp \ - Activation_Queue.h \ - pre.h Synch_T.h \ - Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Event_Handler.h \ - Event_Handler.i \ - Notification_Strategy.inl \ - Message_Queue.i \ - Method_Request.h \ - Activation_Queue.i - -.obj/Atomic_Op.o .obj/Atomic_Op.so .shobj/Atomic_Op.o .shobj/Atomic_Op.so: Atomic_Op.cpp Atomic_Op.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Synch.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Atomic_Op_T.h \ - Atomic_Op_T.i \ - Atomic_Op_T.cpp \ - Atomic_Op.i + Activation_Queue.h \ + pre.h \ + Synch_T.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Method_Request.h \ + Activation_Queue.i + +.obj/Atomic_Op.o .obj/Atomic_Op.so .shobj/Atomic_Op.o .shobj/Atomic_Op.so: Atomic_Op.cpp \ + Atomic_Op.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Synch.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Atomic_Op.i .obj/Process.o .obj/Process.so .shobj/Process.o .shobj/Process.so: Process.cpp OS.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Process.h \ - Handle_Set.h \ - Handle_Set.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - Process.i \ - ARGV.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - ARGV.i - -.obj/Process_Manager.o .obj/Process_Manager.so .shobj/Process_Manager.o .shobj/Process_Manager.so: Process_Manager.cpp ACE.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Process.h \ - Handle_Set.h \ - Handle_Set.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - Process.i \ - Process_Manager.h \ - Reactor.h \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Process_Manager.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Process.h \ + Handle_Set.h \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + ARGV.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Process.i + +.obj/Process_Manager.o .obj/Process_Manager.so .shobj/Process_Manager.o .shobj/Process_Manager.so: Process_Manager.cpp \ + ACE.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Process.h \ + Handle_Set.h \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + Process_Manager.h \ + Reactor.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Process_Manager.i .obj/Synch.o .obj/Synch.so .shobj/Synch.o .shobj/Synch.so: Synch.cpp Thread.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Synch.h \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Synch.i .obj/Synch_Options.o .obj/Synch_Options.so .shobj/Synch_Options.o .shobj/Synch_Options.so: Synch_Options.cpp \ - Synch_Options.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Time_Value.h \ - OS_Export.h \ - Time_Value.inl \ - Synch_Options.i \ - Trace.h \ - Global_Macros.h + Synch_Options.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Time_Value.h \ + OS_Export.h \ + Synch_Options.i \ + Trace.h \ + Global_Macros.h .obj/Process_Semaphore.o .obj/Process_Semaphore.so .shobj/Process_Semaphore.o .shobj/Process_Semaphore.so: Process_Semaphore.cpp \ - Process_Semaphore.h \ - pre.h Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Process_Semaphore.inl + Process_Semaphore.h \ + pre.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Process_Semaphore.inl .obj/Process_Mutex.o .obj/Process_Mutex.so .shobj/Process_Mutex.o .shobj/Process_Mutex.so: Process_Mutex.cpp \ - Process_Mutex.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Process_Mutex.inl \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i + Process_Mutex.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Process_Mutex.inl .obj/RW_Process_Mutex.o .obj/RW_Process_Mutex.so .shobj/RW_Process_Mutex.o .shobj/RW_Process_Mutex.so: RW_Process_Mutex.cpp \ - RW_Process_Mutex.h \ - pre.h \ - File_Lock.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - File_Lock.inl \ - RW_Process_Mutex.inl \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i - -.obj/File_Lock.o .obj/File_Lock.so .shobj/File_Lock.o .shobj/File_Lock.so: File_Lock.cpp File_Lock.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - File_Lock.inl \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + RW_Process_Mutex.h \ + pre.h \ + File_Lock.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + RW_Process_Mutex.inl + +.obj/File_Lock.o .obj/File_Lock.so .shobj/File_Lock.o .shobj/File_Lock.so: File_Lock.cpp \ + File_Lock.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + File_Lock.inl .obj/Thread.o .obj/Thread.so .shobj/Thread.o .shobj/Thread.so: Thread.cpp Thread.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Thread.i .obj/Thread_Manager.o .obj/Thread_Manager.so .shobj/Thread_Manager.o .shobj/Thread_Manager.so: Thread_Manager.cpp \ - Synch_T.h pre.h \ - Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Dynamic.h \ - Dynamic.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp + Synch_T.h \ + pre.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Dynamic.h \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + Thread_Manager.i .obj/Thread_Adapter.o .obj/Thread_Adapter.so .shobj/Thread_Adapter.o .shobj/Thread_Adapter.so: Thread_Adapter.cpp \ - Thread_Adapter.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - streams.h \ - OS_Export.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - Trace.h OS.i \ - Thread_Manager.h \ - Thread.h \ - Thread.i \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Thread_Hook.h - -.obj/Thread_Exit.o .obj/Thread_Exit.so .shobj/Thread_Exit.o .shobj/Thread_Exit.so: Thread_Exit.cpp Thread_Exit.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Thread_Control.h \ - Thread_Control.inl \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Managed_Object.h \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.i \ - Managed_Object.cpp \ - Thread_Manager.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i + Thread_Adapter.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + streams.h \ + OS_Export.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + Trace.h \ + Thread_Manager.h \ + Thread.h \ + Thread_Exit.h \ + Thread_Control.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Thread_Hook.h \ + Thread_Adapter.inl + +.obj/Thread_Exit.o .obj/Thread_Exit.so .shobj/Thread_Exit.o .shobj/Thread_Exit.so: Thread_Exit.cpp \ + Thread_Exit.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Thread_Control.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Managed_Object.h \ + Object_Manager.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Thread_Manager.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl .obj/Thread_Control.o .obj/Thread_Control.so .shobj/Thread_Control.o .shobj/Thread_Control.so: Thread_Control.cpp \ - config-all.h \ - pre.h config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Thread_Control.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Thread_Control.inl \ - Thread_Manager.h \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Thread_Exit.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i + config-all.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Thread_Control.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Thread_Manager.h \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Thread_Exit.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Thread_Control.inl .obj/Token.o .obj/Token.so .shobj/Token.o .shobj/Token.so: Token.cpp Thread.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Token.h Synch.h \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Token.i + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Token.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Token.i .obj/Event_Handler.o .obj/Event_Handler.so .shobj/Event_Handler.o .shobj/Event_Handler.so: Event_Handler.cpp \ - Event_Handler.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Event_Handler.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Reactor.i \ - Reactor_Impl.h \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i - -.obj/FlReactor.o .obj/FlReactor.so .shobj/FlReactor.o .shobj/FlReactor.so: FlReactor.cpp FlReactor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + Event_Handler.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Atomic_Op.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + Message_Block_T.i \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Event_Handler.i + +.obj/FlReactor.o .obj/FlReactor.so .shobj/FlReactor.o .shobj/FlReactor.so: FlReactor.cpp \ + FlReactor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Msg_WFMO_Reactor.o .obj/Msg_WFMO_Reactor.so .shobj/Msg_WFMO_Reactor.o .shobj/Msg_WFMO_Reactor.so: Msg_WFMO_Reactor.cpp \ - Msg_WFMO_Reactor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Msg_WFMO_Reactor.i + Msg_WFMO_Reactor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/POSIX_Proactor.o .obj/POSIX_Proactor.so .shobj/POSIX_Proactor.o .shobj/POSIX_Proactor.so: POSIX_Proactor.cpp \ - POSIX_Proactor.h \ - config-all.h \ - pre.h config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Proactor_Impl.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Asynch_IO.h \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Reactor.i \ - Reactor_Impl.h \ - Pipe.h Pipe.i \ - POSIX_Asynch_IO.h \ - Asynch_IO_Impl.h \ - Asynch_IO_Impl.i \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Map_Manager.h \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Svc_Conf_Tokens.h \ - POSIX_Asynch_IO.i \ - Asynch_Pseudo_Task.h \ - Select_Reactor.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Token.h Token.i \ - Select_Reactor_Base.i \ - Select_Reactor_T.cpp \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Timer_Heap_T.cpp \ - Select_Reactor_T.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - DLL.h \ - Service_Object.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp \ - POSIX_Proactor.i + POSIX_Proactor.h \ + config-all.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Proactor_Impl.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Asynch_IO.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Pipe.h \ + Pipe.i \ + POSIX_Asynch_IO.h \ + Asynch_IO_Impl.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Map_Manager.h \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Asynch_Pseudo_Task.h \ + Select_Reactor.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Token.h \ + Reactor_Impl.h \ + Select_Reactor_T.cpp \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Timer_Heap_T.cpp \ + Select_Reactor_T.i \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + DLL.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i \ + POSIX_Proactor.i .obj/POSIX_CB_Proactor.o .obj/POSIX_CB_Proactor.so .shobj/POSIX_CB_Proactor.o .shobj/POSIX_CB_Proactor.so: POSIX_CB_Proactor.cpp \ - POSIX_CB_Proactor.h \ - config-all.h \ - pre.h config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - POSIX_Proactor.h \ - Proactor_Impl.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Asynch_IO.h \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Reactor.i \ - Reactor_Impl.h \ - Pipe.h Pipe.i \ - POSIX_Asynch_IO.h \ - Asynch_IO_Impl.h \ - Asynch_IO_Impl.i \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Map_Manager.h \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Svc_Conf_Tokens.h \ - POSIX_Asynch_IO.i \ - Asynch_Pseudo_Task.h \ - Select_Reactor.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Token.h Token.i \ - Select_Reactor_Base.i \ - Select_Reactor_T.cpp \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Timer_Heap_T.cpp \ - Select_Reactor_T.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - DLL.h \ - Service_Object.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp \ - POSIX_Proactor.i \ - POSIX_CB_Proactor.i + POSIX_CB_Proactor.h \ + config-all.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/WIN32_Proactor.o .obj/WIN32_Proactor.so .shobj/WIN32_Proactor.o .shobj/WIN32_Proactor.so: WIN32_Proactor.cpp \ - WIN32_Proactor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + WIN32_Proactor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Priority_Reactor.o .obj/Priority_Reactor.so .shobj/Priority_Reactor.o .shobj/Priority_Reactor.so: Priority_Reactor.cpp \ - Priority_Reactor.h \ - pre.h \ - Unbounded_Queue.h \ - Node.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Node.cpp \ - OS_Memory.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Select_Reactor.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Signal.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Event_Handler.h \ - Event_Handler.i \ - Signal.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Handle_Set.h \ - Handle_Set.i \ - Token.h Token.i \ - Pipe.h Pipe.i \ - Reactor_Impl.h \ - Select_Reactor_Base.i \ - Reactor.h \ - Reactor.i \ - Select_Reactor_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Timer_Heap_T.cpp \ - Select_Reactor_T.i \ - Malloc_T.h \ - Malloc.h \ - Malloc.i \ - Memory_Pool.h \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Malloc_T.i \ - Malloc_T.cpp + Priority_Reactor.h \ + pre.h \ + Unbounded_Queue.h \ + Node.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Node.cpp \ + OS_Memory.h \ + OS_Export.h \ + OS_Errno.h \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + OS.h \ + OS_Dirent.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Queue.inl \ + Select_Reactor.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Signal.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Handle_Set.h \ + Token.h \ + Pipe.h \ + Pipe.i \ + Reactor_Impl.h \ + Select_Reactor_T.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Timer_Heap_T.cpp \ + Select_Reactor_T.i \ + Reactor.h \ + Malloc_T.h \ + Malloc.h \ + Memory_Pool.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Malloc_Allocator.h \ + Malloc_T.cpp \ + Malloc_T.i .obj/Proactor.o .obj/Proactor.so .shobj/Proactor.o .shobj/Proactor.so: Proactor.cpp Proactor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Asynch_IO.h \ - Asynch_IO_Impl.h \ - Asynch_IO_Impl.i \ - Thread_Manager.h \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Timer_List.h \ - Timer_List_T.h \ - Timer_List_T.cpp \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Timer_Heap_T.cpp \ - Timer_Wheel.h \ - Timer_Wheel_T.h \ - Timer_Wheel_T.cpp \ - Proactor.i \ - Proactor_Impl.h \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Reactor.i \ - Reactor_Impl.h \ - Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Task.i Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp \ - Service_Config.h \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - POSIX_Proactor.h \ - Pipe.h Pipe.i \ - POSIX_Asynch_IO.h \ - Map_Manager.h \ - Map_Manager.i \ - Map_Manager.cpp \ - POSIX_Asynch_IO.i \ - Asynch_Pseudo_Task.h \ - Select_Reactor.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Token.h Token.i \ - Select_Reactor_Base.i \ - Select_Reactor_T.cpp \ - Select_Reactor_T.i \ - POSIX_Proactor.i + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Asynch_IO.h \ + Asynch_IO_Impl.h \ + Thread_Manager.h \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Thread_Exit.h \ + Thread_Control.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Timer_List.h \ + Timer_List_T.h \ + Timer_List_T.cpp \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Timer_Heap_T.cpp \ + Timer_Wheel.h \ + Timer_Wheel_T.h \ + Timer_Wheel_T.cpp \ + Proactor_Impl.h \ + Reactor.h \ + Handle_Set.h \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + Svc_Conf_Tokens.h \ + DLL.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i \ + Service_Config.h \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + POSIX_Proactor.h \ + Pipe.h \ + Pipe.i \ + POSIX_Asynch_IO.h \ + Map_Manager.h \ + Map_Manager.cpp \ + Map_Manager.i \ + Asynch_Pseudo_Task.h \ + Select_Reactor.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Token.h \ + Reactor_Impl.h \ + Select_Reactor_T.cpp \ + Select_Reactor_T.i \ + Proactor.i .obj/Reactor.o .obj/Reactor.so .shobj/Reactor.o .shobj/Reactor.so: Reactor.cpp Reactor.h \ - pre.h \ - Handle_Set.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Handle_Set.i \ - Timer_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Reactor.i \ - Reactor_Impl.h \ - Service_Config.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Svc_Conf_Tokens.h \ - Select_Reactor.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Token.h Token.i \ - Pipe.h Pipe.i \ - Select_Reactor_Base.i \ - Select_Reactor_T.cpp \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Timer_Heap_T.cpp \ - Select_Reactor_T.i \ - TP_Reactor.h \ - TP_Reactor.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp + pre.h \ + Handle_Set.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Timer_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Reactor_Impl.h \ + Service_Config.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Svc_Conf_Tokens.h \ + Select_Reactor.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Token.h \ + Pipe.h \ + Pipe.i \ + Select_Reactor_T.cpp \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Timer_Heap_T.cpp \ + Select_Reactor_T.i \ + TP_Reactor.h \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Reactor.i .obj/Select_Reactor.o .obj/Select_Reactor.so .shobj/Select_Reactor.o .shobj/Select_Reactor.so: Select_Reactor.cpp \ - Select_Reactor.h \ - pre.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Signal.h \ - Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Handle_Set.h \ - Handle_Set.i \ - Token.h Token.i \ - Pipe.h Pipe.i \ - Reactor_Impl.h \ - Select_Reactor_Base.i \ - Reactor.h \ - Reactor.i \ - Select_Reactor_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Malloc_Base.h \ - Timer_Heap_T.cpp \ - Select_Reactor_T.i + Select_Reactor.h \ + pre.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Signal.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Handle_Set.h \ + Token.h \ + Pipe.h \ + Pipe.i \ + Reactor_Impl.h \ + Select_Reactor_T.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Malloc_Base.h \ + Unbounded_Set.inl \ + Timer_Heap_T.cpp \ + Select_Reactor_T.i \ + Reactor.h .obj/Select_Reactor_Base.o .obj/Select_Reactor_Base.so .shobj/Select_Reactor_Base.o .shobj/Select_Reactor_Base.so: Select_Reactor_Base.cpp \ - Select_Reactor_Base.h \ - pre.h Signal.h \ - Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Handle_Set.h \ - Handle_Set.i \ - Token.h Token.i \ - Pipe.h Pipe.i \ - Reactor_Impl.h \ - Select_Reactor_Base.i \ - Reactor.h \ - Reactor.i \ - SOCK_Acceptor.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Acceptor.i \ - SOCK_Connector.h \ - SOCK_Connector.i \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Malloc_Base.h \ - Timer_Heap_T.cpp + Select_Reactor_Base.h \ + pre.h \ + Signal.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Handle_Set.h \ + Token.h \ + Pipe.h \ + Pipe.i \ + Reactor_Impl.h \ + Reactor.h \ + SOCK_Acceptor.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Acceptor.i \ + SOCK_Connector.h \ + SOCK_Connector.i \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Malloc_Base.h \ + Unbounded_Set.inl \ + Timer_Heap_T.cpp \ + Select_Reactor_Base.i .obj/SUN_Proactor.o .obj/SUN_Proactor.so .shobj/SUN_Proactor.o .shobj/SUN_Proactor.so: SUN_Proactor.cpp \ - SUN_Proactor.h \ - config-all.h \ - pre.h config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + SUN_Proactor.h \ + config-all.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + POSIX_Proactor.h \ + Proactor_Impl.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Asynch_IO.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Pipe.h \ + Pipe.i \ + POSIX_Asynch_IO.h \ + Asynch_IO_Impl.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Map_Manager.h \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Asynch_Pseudo_Task.h \ + Select_Reactor.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Token.h \ + Reactor_Impl.h \ + Select_Reactor_T.cpp \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Timer_Heap_T.cpp \ + Select_Reactor_T.i \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + DLL.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i \ + SUN_Proactor.i .obj/Dev_Poll_Reactor.o .obj/Dev_Poll_Reactor.so .shobj/Dev_Poll_Reactor.o .shobj/Dev_Poll_Reactor.so: Dev_Poll_Reactor.cpp \ - Dev_Poll_Reactor.h \ - pre.h \ - Reactor_Impl.h \ - Timer_Queue.h \ - Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i - -.obj/TP_Reactor.o .obj/TP_Reactor.so .shobj/TP_Reactor.o .shobj/TP_Reactor.so: TP_Reactor.cpp TP_Reactor.h \ - pre.h \ - Select_Reactor.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Signal.h \ - Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Handle_Set.h \ - Handle_Set.i \ - Token.h Token.i \ - Pipe.h Pipe.i \ - Reactor_Impl.h \ - Select_Reactor_Base.i \ - Reactor.h \ - Reactor.i \ - Select_Reactor_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Malloc_Base.h \ - Timer_Heap_T.cpp \ - Select_Reactor_T.i \ - TP_Reactor.i - -.obj/TkReactor.o .obj/TkReactor.so .shobj/TkReactor.o .shobj/TkReactor.so: TkReactor.cpp TkReactor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + Dev_Poll_Reactor.h \ + pre.h \ + Reactor_Impl.h \ + Timer_Queue.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i + +.obj/TP_Reactor.o .obj/TP_Reactor.so .shobj/TP_Reactor.o .shobj/TP_Reactor.so: TP_Reactor.cpp \ + TP_Reactor.h \ + pre.h \ + Select_Reactor.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Signal.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Handle_Set.h \ + Token.h \ + Pipe.h \ + Pipe.i \ + Reactor_Impl.h \ + Select_Reactor_T.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Malloc_Base.h \ + Unbounded_Set.inl \ + Timer_Heap_T.cpp \ + Select_Reactor_T.i \ + Reactor.h \ + TP_Reactor.i + +.obj/TkReactor.o .obj/TkReactor.so .shobj/TkReactor.o .shobj/TkReactor.so: TkReactor.cpp \ + TkReactor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/WFMO_Reactor.o .obj/WFMO_Reactor.so .shobj/WFMO_Reactor.o .shobj/WFMO_Reactor.so: WFMO_Reactor.cpp \ - WFMO_Reactor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl - -.obj/XtReactor.o .obj/XtReactor.so .shobj/XtReactor.o .shobj/XtReactor.so: XtReactor.cpp XtReactor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl - -.obj/QtReactor.o .obj/QtReactor.so .shobj/QtReactor.o .shobj/QtReactor.so: QtReactor.cpp QtReactor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl - -.obj/Asynch_IO.o .obj/Asynch_IO.so .shobj/Asynch_IO.o .shobj/Asynch_IO.so: Asynch_IO.cpp Asynch_IO.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Proactor.h \ - Asynch_IO_Impl.h \ - Asynch_IO_Impl.i \ - Thread_Manager.h \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Timer_List.h \ - Timer_List_T.h \ - Timer_List_T.cpp \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Timer_Heap_T.cpp \ - Timer_Wheel.h \ - Timer_Wheel_T.h \ - Timer_Wheel_T.cpp \ - Proactor.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - INET_Addr.h \ - Addr.h Addr.i \ - INET_Addr.i + WFMO_Reactor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl + +.obj/XtReactor.o .obj/XtReactor.so .shobj/XtReactor.o .shobj/XtReactor.so: XtReactor.cpp \ + XtReactor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl + +.obj/QtReactor.o .obj/QtReactor.so .shobj/QtReactor.o .shobj/QtReactor.so: QtReactor.cpp \ + QtReactor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl + +.obj/Asynch_IO.o .obj/Asynch_IO.so .shobj/Asynch_IO.o .shobj/Asynch_IO.so: Asynch_IO.cpp \ + Asynch_IO.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Proactor.h \ + Asynch_IO_Impl.h \ + Thread_Manager.h \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Thread_Exit.h \ + Thread_Control.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Timer_List.h \ + Timer_List_T.h \ + Timer_List_T.cpp \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Timer_Heap_T.cpp \ + Timer_Wheel.h \ + Timer_Wheel_T.h \ + Timer_Wheel_T.cpp \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + INET_Addr.h \ + Sock_Connect.h \ + Sock_Connect.i \ + Addr.h .obj/Asynch_IO_Impl.o .obj/Asynch_IO_Impl.so .shobj/Asynch_IO_Impl.o .shobj/Asynch_IO_Impl.so: Asynch_IO_Impl.cpp \ - Asynch_IO_Impl.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Asynch_IO.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Asynch_IO_Impl.i + Asynch_IO_Impl.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Asynch_IO.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Asynch_IO_Impl.i .obj/Asynch_Pseudo_Task.o .obj/Asynch_Pseudo_Task.so .shobj/Asynch_Pseudo_Task.o .shobj/Asynch_Pseudo_Task.so: Asynch_Pseudo_Task.cpp \ - Asynch_Pseudo_Task.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Reactor.i \ - Reactor_Impl.h \ - Select_Reactor.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Token.h Token.i \ - Pipe.h Pipe.i \ - Select_Reactor_Base.i \ - Select_Reactor_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Malloc_Base.h \ - Timer_Heap_T.cpp \ - Select_Reactor_T.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp + Asynch_Pseudo_Task.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Select_Reactor.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Token.h \ + Pipe.h \ + Pipe.i \ + Reactor_Impl.h \ + Select_Reactor_T.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Malloc_Base.h \ + Unbounded_Set.inl \ + Timer_Heap_T.cpp \ + Select_Reactor_T.i \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + Svc_Conf_Tokens.h \ + DLL.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i .obj/POSIX_Asynch_IO.o .obj/POSIX_Asynch_IO.so .shobj/POSIX_Asynch_IO.o .shobj/POSIX_Asynch_IO.so: POSIX_Asynch_IO.cpp \ - POSIX_Asynch_IO.h \ - config-all.h \ - pre.h config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Asynch_IO_Impl.h \ - Asynch_IO.h \ - Asynch_IO_Impl.i \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Map_Manager.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - POSIX_Asynch_IO.i \ - Proactor.h \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Timer_List.h \ - Timer_List_T.h \ - Timer_List_T.cpp \ - Timer_Heap.h \ - Timer_Heap_T.h \ - Timer_Heap_T.cpp \ - Timer_Wheel.h \ - Timer_Wheel_T.h \ - Timer_Wheel_T.cpp \ - Proactor.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - INET_Addr.h \ - Addr.h Addr.i \ - INET_Addr.i \ - Asynch_Pseudo_Task.h \ - Select_Reactor.h \ - Select_Reactor_T.h \ - Select_Reactor_Base.h \ - Token.h Token.i \ - Pipe.h Pipe.i \ - Select_Reactor_Base.i \ - Select_Reactor_T.cpp \ - Select_Reactor_T.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - DLL.h \ - Service_Object.i \ - Task.i Task_T.h \ - Message_Queue.h \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp \ - POSIX_Proactor.h \ - Proactor_Impl.h \ - POSIX_Proactor.i + POSIX_Asynch_IO.h \ + config-all.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Asynch_IO_Impl.h \ + Asynch_IO.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Queue.inl \ + Map_Manager.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Proactor.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Timer_List.h \ + Timer_List_T.h \ + Timer_List_T.cpp \ + Timer_Heap.h \ + Timer_Heap_T.h \ + Timer_Heap_T.cpp \ + Timer_Wheel.h \ + Timer_Wheel_T.h \ + Timer_Wheel_T.cpp \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + INET_Addr.h \ + Addr.h \ + Asynch_Pseudo_Task.h \ + Select_Reactor.h \ + Select_Reactor_T.h \ + Select_Reactor_Base.h \ + Token.h \ + Pipe.h \ + Pipe.i \ + Reactor_Impl.h \ + Select_Reactor_T.cpp \ + Select_Reactor_T.i \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + DLL.h \ + Task_T.h \ + Message_Queue.h \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i \ + POSIX_Proactor.h \ + Proactor_Impl.h \ + POSIX_Asynch_IO.i .obj/WIN32_Asynch_IO.o .obj/WIN32_Asynch_IO.so .shobj/WIN32_Asynch_IO.o .shobj/WIN32_Asynch_IO.so: WIN32_Asynch_IO.cpp \ - WIN32_Asynch_IO.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + WIN32_Asynch_IO.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Addr.o .obj/Addr.so .shobj/Addr.o .shobj/Addr.so: Addr.cpp Addr.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.i \ - Log_Msg.h \ - Global_Macros.h \ - OS_Export.h \ - Default_Constants.h \ - Log_Priority.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/INET_Addr.o .obj/INET_Addr.so .shobj/INET_Addr.o .shobj/INET_Addr.so: INET_Addr.cpp INET_Addr.h \ - pre.h \ - Sock_Connect.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sock_Connect.i \ - Addr.h Addr.i \ - INET_Addr.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Log_Msg.h \ + Global_Macros.h \ + OS_Export.h \ + Default_Constants.h \ + Log_Priority.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + OS_Log_Msg_Attributes.h \ + Addr.i + +.obj/INET_Addr.o .obj/INET_Addr.so .shobj/INET_Addr.o .shobj/INET_Addr.so: INET_Addr.cpp \ + INET_Addr.h \ + pre.h \ + Sock_Connect.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sock_Connect.i \ + Addr.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + INET_Addr.i .obj/Multihomed_INET_Addr.o .obj/Multihomed_INET_Addr.so .shobj/Multihomed_INET_Addr.o .shobj/Multihomed_INET_Addr.so: Multihomed_INET_Addr.cpp \ - Multihomed_INET_Addr.h \ - pre.h \ - INET_Addr.h \ - Sock_Connect.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sock_Connect.i \ - Addr.h Addr.i \ - INET_Addr.i \ - Containers_T.h \ - Containers.h \ - Containers.i \ - Node.h Node.cpp \ - Array_Base.h \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Multihomed_INET_Addr.i + Multihomed_INET_Addr.h \ + pre.h \ + INET_Addr.h \ + Sock_Connect.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sock_Connect.i \ + Addr.h \ + Containers_T.h \ + Containers.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + Multihomed_INET_Addr.i .obj/IPC_SAP.o .obj/IPC_SAP.so .shobj/IPC_SAP.o .shobj/IPC_SAP.so: IPC_SAP.cpp IPC_SAP.h \ - pre.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/LSOCK.o .obj/LSOCK.so .shobj/LSOCK.o .shobj/LSOCK.so: LSOCK.cpp LSOCK.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SOCK.h \ - ACE_export.h \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i LSOCK.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SOCK.h \ + ACE_export.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + LSOCK.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/LSOCK_Acceptor.o .obj/LSOCK_Acceptor.so .shobj/LSOCK_Acceptor.o .shobj/LSOCK_Acceptor.so: LSOCK_Acceptor.cpp \ - LSOCK_Acceptor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SOCK_Acceptor.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Acceptor.i \ - UNIX_Addr.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - UNIX_Addr.i \ - LSOCK_Stream.h \ - LSOCK.h LSOCK.i \ - LSOCK_Stream.i + LSOCK_Acceptor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SOCK_Acceptor.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Acceptor.i \ + UNIX_Addr.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + LSOCK_Stream.h \ + LSOCK.h \ + LSOCK.i \ + LSOCK_Stream.i .obj/LSOCK_CODgram.o .obj/LSOCK_CODgram.so .shobj/LSOCK_CODgram.o .shobj/LSOCK_CODgram.so: LSOCK_CODgram.cpp \ - LSOCK_CODgram.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - LSOCK.h SOCK.h \ - ACE_export.h \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i LSOCK.i \ - SOCK_CODgram.h \ - SOCK_IO.h ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_CODgram.i \ - LSOCK_CODgram.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + LSOCK_CODgram.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + LSOCK.h \ + SOCK.h \ + ACE_export.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + LSOCK.i \ + SOCK_CODgram.h \ + SOCK_IO.h \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_CODgram.i \ + LSOCK_CODgram.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/LSOCK_Connector.o .obj/LSOCK_Connector.so .shobj/LSOCK_Connector.o .shobj/LSOCK_Connector.so: LSOCK_Connector.cpp \ - LSOCK_Connector.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - LSOCK_Stream.h \ - UNIX_Addr.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - UNIX_Addr.i \ - LSOCK.h LSOCK.i \ - LSOCK_Stream.i \ - LSOCK_Connector.i - -.obj/LSOCK_Dgram.o .obj/LSOCK_Dgram.so .shobj/LSOCK_Dgram.o .shobj/LSOCK_Dgram.so: LSOCK_Dgram.cpp LSOCK_Dgram.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SOCK_Dgram.h \ - SOCK.h \ - ACE_export.h \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i \ - INET_Addr.h \ - Sock_Connect.h \ - Sock_Connect.i \ - INET_Addr.i \ - SOCK_Dgram.i \ - LSOCK.h LSOCK.i \ - LSOCK_Dgram.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + LSOCK_Connector.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SOCK_Connector.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Connector.i \ + LSOCK_Stream.h \ + UNIX_Addr.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + LSOCK.h \ + LSOCK.i \ + LSOCK_Stream.i \ + LSOCK_Connector.i + +.obj/LSOCK_Dgram.o .obj/LSOCK_Dgram.so .shobj/LSOCK_Dgram.o .shobj/LSOCK_Dgram.so: LSOCK_Dgram.cpp \ + LSOCK_Dgram.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SOCK_Dgram.h \ + SOCK.h \ + ACE_export.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + INET_Addr.h \ + Sock_Connect.h \ + Sock_Connect.i \ + SOCK_Dgram.i \ + LSOCK.h \ + LSOCK.i \ + LSOCK_Dgram.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/LSOCK_Stream.o .obj/LSOCK_Stream.so .shobj/LSOCK_Stream.o .shobj/LSOCK_Stream.so: LSOCK_Stream.cpp \ - LSOCK_Stream.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - UNIX_Addr.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - UNIX_Addr.i \ - LSOCK.h LSOCK.i \ - LSOCK_Stream.i + LSOCK_Stream.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + UNIX_Addr.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + LSOCK.h \ + LSOCK.i \ + LSOCK_Stream.i .obj/SOCK.o .obj/SOCK.so .shobj/SOCK.o .shobj/SOCK.so: SOCK.cpp SOCK.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/SOCK_Acceptor.o .obj/SOCK_Acceptor.so .shobj/SOCK_Acceptor.o .shobj/SOCK_Acceptor.so: SOCK_Acceptor.cpp \ - SOCK_Acceptor.h \ - pre.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Acceptor.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - OS_QoS.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp + SOCK_Acceptor.h \ + pre.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Acceptor.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + OS_QoS.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i .obj/SOCK_CODgram.o .obj/SOCK_CODgram.so .shobj/SOCK_CODgram.o .shobj/SOCK_CODgram.so: SOCK_CODgram.cpp \ - SOCK_CODgram.h \ - pre.h SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_CODgram.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + SOCK_CODgram.h \ + pre.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_CODgram.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/Sock_Connect.o .obj/Sock_Connect.so .shobj/Sock_Connect.o .shobj/Sock_Connect.so: Sock_Connect.cpp \ - Sock_Connect.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sock_Connect.i \ - INET_Addr.h \ - Addr.h Addr.i \ - INET_Addr.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Handle_Set.h \ - Handle_Set.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - ACE.i Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - SString.i + Sock_Connect.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sock_Connect.i \ + INET_Addr.h \ + Addr.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Handle_Set.h \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + String_Base.i .obj/SOCK_Connector.o .obj/SOCK_Connector.so .shobj/SOCK_Connector.o .shobj/SOCK_Connector.so: SOCK_Connector.cpp \ - SOCK_Connector.h \ - pre.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - OS_QoS.h - -.obj/SOCK_Dgram.o .obj/SOCK_Dgram.so .shobj/SOCK_Dgram.o .shobj/SOCK_Dgram.so: SOCK_Dgram.cpp SOCK_Dgram.h \ - pre.h SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i \ - INET_Addr.h \ - Sock_Connect.h \ - Sock_Connect.i \ - INET_Addr.i \ - SOCK_Dgram.i \ - Handle_Set.h \ - Handle_Set.i \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - ACE.i + SOCK_Connector.h \ + pre.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Connector.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + OS_QoS.h + +.obj/SOCK_Dgram.o .obj/SOCK_Dgram.so .shobj/SOCK_Dgram.o .shobj/SOCK_Dgram.so: SOCK_Dgram.cpp \ + SOCK_Dgram.h \ + pre.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + INET_Addr.h \ + Sock_Connect.h \ + Sock_Connect.i \ + SOCK_Dgram.i \ + Handle_Set.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + ACE.i .obj/SOCK_Dgram_Bcast.o .obj/SOCK_Dgram_Bcast.so .shobj/SOCK_Dgram_Bcast.o .shobj/SOCK_Dgram_Bcast.so: SOCK_Dgram_Bcast.cpp \ - SOCK_Dgram_Bcast.h \ - pre.h \ - INET_Addr.h \ - Sock_Connect.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sock_Connect.i \ - Addr.h Addr.i \ - INET_Addr.i \ - SOCK_Dgram.h \ - SOCK.h \ - IPC_SAP.h \ - Flag_Manip.h \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i \ - SOCK_Dgram.i \ - SOCK_Dgram_Bcast.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - ACE.i + SOCK_Dgram_Bcast.h \ + pre.h \ + INET_Addr.h \ + Sock_Connect.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sock_Connect.i \ + Addr.h \ + SOCK_Dgram.h \ + SOCK.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + SOCK_Dgram.i \ + SOCK_Dgram_Bcast.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + ACE.i .obj/SOCK_Dgram_Mcast.o .obj/SOCK_Dgram_Mcast.so .shobj/SOCK_Dgram_Mcast.o .shobj/SOCK_Dgram_Mcast.so: SOCK_Dgram_Mcast.cpp \ - SOCK_Dgram_Mcast.h \ - pre.h \ - SOCK_Dgram.h \ - SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i \ - INET_Addr.h \ - Sock_Connect.h \ - Sock_Connect.i \ - INET_Addr.i \ - SOCK_Dgram.i \ - SOCK_Dgram_Mcast.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + SOCK_Dgram_Mcast.h \ + pre.h \ + SOCK_Dgram.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + INET_Addr.h \ + Sock_Connect.h \ + Sock_Connect.i \ + SOCK_Dgram.i \ + SOCK_Dgram_Mcast.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/SOCK_IO.o .obj/SOCK_IO.so .shobj/SOCK_IO.o .shobj/SOCK_IO.so: SOCK_IO.cpp SOCK_IO.h \ - pre.h SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - Handle_Set.h \ - Handle_Set.i + pre.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + Handle_Set.h .obj/SOCK_SEQPACK_Acceptor.o .obj/SOCK_SEQPACK_Acceptor.so .shobj/SOCK_SEQPACK_Acceptor.o .shobj/SOCK_SEQPACK_Acceptor.so: SOCK_SEQPACK_Acceptor.cpp \ - SOCK_SEQPACK_Acceptor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - SOCK_SEQPACK_Association.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_SEQPACK_Association.i \ - Multihomed_INET_Addr.h \ - Containers_T.h \ - Containers.h \ - Containers.i \ - Node.h Node.cpp \ - Array_Base.h \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Multihomed_INET_Addr.i \ - SOCK_SEQPACK_Acceptor.i \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp + SOCK_SEQPACK_Acceptor.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SOCK_SEQPACK_Association.h \ + SOCK_IO.h \ + SOCK.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_SEQPACK_Association.i \ + Multihomed_INET_Addr.h \ + Containers_T.h \ + Containers.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + SOCK_SEQPACK_Acceptor.i \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i .obj/SOCK_SEQPACK_Association.o .obj/SOCK_SEQPACK_Association.so .shobj/SOCK_SEQPACK_Association.o .shobj/SOCK_SEQPACK_Association.so: SOCK_SEQPACK_Association.cpp \ - SOCK_SEQPACK_Association.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_SEQPACK_Association.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + SOCK_SEQPACK_Association.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ACE_export.h \ + config-all.h \ + ace_wchar.h \ + ace_wchar.inl \ + SOCK_IO.h \ + SOCK.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_SEQPACK_Association.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/SOCK_SEQPACK_Connector.o .obj/SOCK_SEQPACK_Connector.so .shobj/SOCK_SEQPACK_Connector.o .shobj/SOCK_SEQPACK_Connector.so: SOCK_SEQPACK_Connector.cpp \ - SOCK_SEQPACK_Connector.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - SOCK_SEQPACK_Association.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_SEQPACK_Association.i \ - Multihomed_INET_Addr.h \ - Containers_T.h \ - Containers.h \ - Containers.i \ - Node.h Node.cpp \ - Array_Base.h \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Multihomed_INET_Addr.i \ - SOCK_SEQPACK_Connector.i - -.obj/SOCK_Stream.o .obj/SOCK_Stream.so .shobj/SOCK_Stream.o .shobj/SOCK_Stream.so: SOCK_Stream.cpp SOCK_Stream.h \ - pre.h SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i + SOCK_SEQPACK_Connector.h \ + pre.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ACE_export.h \ + config-all.h \ + ace_wchar.h \ + ace_wchar.inl \ + SOCK_SEQPACK_Association.h \ + SOCK_IO.h \ + SOCK.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_SEQPACK_Association.i \ + Multihomed_INET_Addr.h \ + Containers_T.h \ + Containers.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + SOCK_SEQPACK_Connector.i + +.obj/SOCK_Stream.o .obj/SOCK_Stream.so .shobj/SOCK_Stream.o .shobj/SOCK_Stream.so: SOCK_Stream.cpp \ + SOCK_Stream.h \ + pre.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i .obj/ATM_Addr.o .obj/ATM_Addr.so .shobj/ATM_Addr.o .shobj/ATM_Addr.so: ATM_Addr.cpp ATM_Addr.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/ATM_Acceptor.o .obj/ATM_Acceptor.so .shobj/ATM_Acceptor.o .shobj/ATM_Acceptor.so: ATM_Acceptor.cpp \ - ATM_Acceptor.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + ATM_Acceptor.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/ATM_Connector.o .obj/ATM_Connector.so .shobj/ATM_Connector.o .shobj/ATM_Connector.so: ATM_Connector.cpp \ - ATM_Connector.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl - -.obj/ATM_Params.o .obj/ATM_Params.so .shobj/ATM_Params.o .shobj/ATM_Params.so: ATM_Params.cpp ATM_Params.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + ATM_Connector.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl + +.obj/ATM_Params.o .obj/ATM_Params.so .shobj/ATM_Params.o .shobj/ATM_Params.so: ATM_Params.cpp \ + ATM_Params.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/ATM_QoS.o .obj/ATM_QoS.so .shobj/ATM_QoS.o .shobj/ATM_QoS.so: ATM_QoS.cpp ATM_QoS.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl - -.obj/ATM_Stream.o .obj/ATM_Stream.so .shobj/ATM_Stream.o .shobj/ATM_Stream.so: ATM_Stream.cpp ATM_Stream.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl + +.obj/ATM_Stream.o .obj/ATM_Stream.so .shobj/ATM_Stream.o .shobj/ATM_Stream.so: ATM_Stream.cpp \ + ATM_Stream.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/XTI_ATM_Mcast.o .obj/XTI_ATM_Mcast.so .shobj/XTI_ATM_Mcast.o .shobj/XTI_ATM_Mcast.so: XTI_ATM_Mcast.cpp \ - XTI_ATM_Mcast.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + XTI_ATM_Mcast.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/DEV.o .obj/DEV.so .shobj/DEV.o .shobj/DEV.so: DEV.cpp DEV.h \ - pre.h IO_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IO_SAP.i \ - DEV_Addr.h \ - Addr.h Addr.i \ - DEV_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i DEV.i + pre.h \ + IO_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IO_SAP.i \ + DEV_Addr.h \ + Addr.h \ + DEV.i .obj/DEV_Addr.o .obj/DEV_Addr.so .shobj/DEV_Addr.o .shobj/DEV_Addr.so: DEV_Addr.cpp DEV_Addr.h \ - pre.h Addr.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.i OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - DEV_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i + pre.h \ + Addr.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + DEV_Addr.i \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i .obj/DEV_Connector.o .obj/DEV_Connector.so .shobj/DEV_Connector.o .shobj/DEV_Connector.so: DEV_Connector.cpp \ - DEV_Connector.h \ - pre.h DEV_IO.h \ - DEV.h IO_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IO_SAP.i \ - DEV_Addr.h \ - Addr.h Addr.i \ - DEV_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i DEV.i \ - DEV_IO.i \ - DEV_Connector.i + DEV_Connector.h \ + pre.h \ + DEV_IO.h \ + DEV.h \ + IO_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IO_SAP.i \ + DEV_Addr.h \ + Addr.h \ + DEV.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + DEV_IO.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + DEV_Connector.i .obj/DEV_IO.o .obj/DEV_IO.so .shobj/DEV_IO.o .shobj/DEV_IO.so: DEV_IO.cpp DEV_IO.h \ - pre.h DEV.h \ - IO_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IO_SAP.i \ - DEV_Addr.h \ - Addr.h Addr.i \ - DEV_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i DEV.i \ - DEV_IO.i + pre.h \ + DEV.h \ + IO_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IO_SAP.i \ + DEV_Addr.h \ + Addr.h \ + DEV.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + DEV_IO.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/FIFO.o .obj/FIFO.so .shobj/FIFO.o .shobj/FIFO.so: FIFO.cpp FIFO.h \ - pre.h IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - FIFO.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/FIFO_Recv.o .obj/FIFO_Recv.so .shobj/FIFO_Recv.o .shobj/FIFO_Recv.so: FIFO_Recv.cpp FIFO_Recv.h \ - pre.h FIFO.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - FIFO.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - FIFO_Recv.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + FIFO.i + +.obj/FIFO_Recv.o .obj/FIFO_Recv.so .shobj/FIFO_Recv.o .shobj/FIFO_Recv.so: FIFO_Recv.cpp \ + FIFO_Recv.h \ + pre.h \ + FIFO.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + FIFO_Recv.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/FIFO_Recv_Msg.o .obj/FIFO_Recv_Msg.so .shobj/FIFO_Recv_Msg.o .shobj/FIFO_Recv_Msg.so: FIFO_Recv_Msg.cpp \ - FIFO_Recv_Msg.h \ - pre.h \ - FIFO_Recv.h \ - FIFO.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - FIFO.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - FIFO_Recv.i \ - FIFO_Recv_Msg.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/FIFO_Send.o .obj/FIFO_Send.so .shobj/FIFO_Send.o .shobj/FIFO_Send.so: FIFO_Send.cpp FIFO_Send.h \ - pre.h FIFO.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - FIFO.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - FIFO_Send.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + FIFO_Recv_Msg.h \ + pre.h \ + FIFO_Recv.h \ + FIFO.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + FIFO_Recv.i \ + FIFO_Recv_Msg.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h + +.obj/FIFO_Send.o .obj/FIFO_Send.so .shobj/FIFO_Send.o .shobj/FIFO_Send.so: FIFO_Send.cpp \ + FIFO_Send.h \ + pre.h \ + FIFO.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + FIFO_Send.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/FIFO_Send_Msg.o .obj/FIFO_Send_Msg.so .shobj/FIFO_Send_Msg.o .shobj/FIFO_Send_Msg.so: FIFO_Send_Msg.cpp \ - FIFO_Send_Msg.h \ - pre.h \ - FIFO_Send.h \ - FIFO.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - FIFO.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - FIFO_Send.i \ - FIFO_Send_Msg.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/FILE_Addr.o .obj/FILE_Addr.so .shobj/FILE_Addr.o .shobj/FILE_Addr.so: FILE_Addr.cpp FILE_Addr.h \ - pre.h Addr.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.i \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - FILE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i + FIFO_Send_Msg.h \ + pre.h \ + FIFO_Send.h \ + FIFO.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + FIFO_Send.i \ + FIFO_Send_Msg.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h + +.obj/FILE_Addr.o .obj/FILE_Addr.so .shobj/FILE_Addr.o .shobj/FILE_Addr.so: FILE_Addr.cpp \ + FILE_Addr.h \ + pre.h \ + Addr.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + Lib_Find.h \ + Lib_Find.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + FILE_Addr.i \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i .obj/FILE.o .obj/FILE.so .shobj/FILE.o .shobj/FILE.so: FILE.cpp FILE.h \ - pre.h IO_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IO_SAP.i \ - FILE_Addr.h \ - Addr.h Addr.i \ - FILE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - FILE.i + pre.h \ + IO_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IO_SAP.i \ + FILE_Addr.h \ + Addr.h \ + FILE.i .obj/FILE_Connector.o .obj/FILE_Connector.so .shobj/FILE_Connector.o .shobj/FILE_Connector.so: FILE_Connector.cpp \ - FILE_Connector.h \ - pre.h FILE_IO.h \ - FILE.h IO_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IO_SAP.i \ - FILE_Addr.h \ - Addr.h Addr.i \ - FILE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - FILE.i \ - FILE_IO.i \ - FILE_Connector.i + FILE_Connector.h \ + pre.h \ + FILE_IO.h \ + FILE.h \ + IO_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IO_SAP.i \ + FILE_Addr.h \ + Addr.h \ + FILE.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + FILE_IO.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + FILE_Connector.i .obj/FILE_IO.o .obj/FILE_IO.so .shobj/FILE_IO.o .shobj/FILE_IO.so: FILE_IO.cpp FILE_IO.h \ - pre.h FILE.h \ - IO_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IO_SAP.i \ - FILE_Addr.h \ - Addr.h Addr.i \ - FILE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - FILE.i \ - FILE_IO.i + pre.h \ + FILE.h \ + IO_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IO_SAP.i \ + FILE_Addr.h \ + Addr.h \ + FILE.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + FILE_IO.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/IO_SAP.o .obj/IO_SAP.so .shobj/IO_SAP.o .shobj/IO_SAP.so: IO_SAP.cpp IO_SAP.h \ - pre.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IO_SAP.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IO_SAP.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/IOStream.o .obj/IOStream.so .shobj/IOStream.o .shobj/IOStream.so: IOStream.cpp IOStream.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + IOStream_T.h \ + INET_Addr.h \ + Sock_Connect.h \ + Sock_Connect.i \ + Addr.h \ + Handle_Set.h \ + IOStream_T.cpp \ + IOStream_T.i .obj/Pipe.o .obj/Pipe.so .shobj/Pipe.o .shobj/Pipe.so: Pipe.cpp Pipe.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Pipe.i \ - SOCK_Acceptor.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Acceptor.i \ - SOCK_Connector.h \ - SOCK_Connector.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Pipe.i \ + SOCK_Acceptor.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Acceptor.i \ + SOCK_Connector.h \ + SOCK_Connector.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/Signal.o .obj/Signal.so .shobj/Signal.o .shobj/Signal.so: Signal.cpp Synch_T.h \ - pre.h Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Signal.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Node.h Node.cpp \ - Array_Base.h \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp - -.obj/SPIPE_Addr.o .obj/SPIPE_Addr.so .shobj/SPIPE_Addr.o .shobj/SPIPE_Addr.so: SPIPE_Addr.cpp SPIPE_Addr.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - SPIPE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i + pre.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Signal.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Containers.h \ + Containers_T.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + Signal.i + +.obj/SPIPE_Addr.o .obj/SPIPE_Addr.so .shobj/SPIPE_Addr.o .shobj/SPIPE_Addr.so: SPIPE_Addr.cpp \ + SPIPE_Addr.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + SPIPE_Addr.i \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i .obj/SPIPE.o .obj/SPIPE.so .shobj/SPIPE.o .shobj/SPIPE.so: SPIPE.cpp SPIPE.h \ - pre.h IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SPIPE_Addr.h \ - Addr.h Addr.i \ - SPIPE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - SPIPE.i + pre.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i .obj/SPIPE_Acceptor.o .obj/SPIPE_Acceptor.so .shobj/SPIPE_Acceptor.o .shobj/SPIPE_Acceptor.so: SPIPE_Acceptor.cpp \ - SPIPE_Acceptor.h \ - pre.h \ - SPIPE_Stream.h \ - SPIPE.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SPIPE_Addr.h \ - Addr.h Addr.i \ - SPIPE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - SPIPE.i \ - SPIPE_Stream.i + SPIPE_Acceptor.h \ + pre.h \ + SPIPE_Stream.h \ + SPIPE.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SPIPE_Stream.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/SPIPE_Connector.o .obj/SPIPE_Connector.so .shobj/SPIPE_Connector.o .shobj/SPIPE_Connector.so: SPIPE_Connector.cpp \ - SPIPE_Connector.h \ - pre.h \ - SPIPE_Stream.h \ - SPIPE.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SPIPE_Addr.h \ - Addr.h Addr.i \ - SPIPE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - SPIPE.i \ - SPIPE_Stream.i \ - SPIPE_Connector.i + SPIPE_Connector.h \ + pre.h \ + SPIPE_Stream.h \ + SPIPE.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SPIPE_Stream.i \ + SPIPE_Connector.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/SPIPE_Stream.o .obj/SPIPE_Stream.so .shobj/SPIPE_Stream.o .shobj/SPIPE_Stream.so: SPIPE_Stream.cpp \ - SPIPE_Stream.h \ - pre.h SPIPE.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SPIPE_Addr.h \ - Addr.h Addr.i \ - SPIPE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - SPIPE.i \ - SPIPE_Stream.i - -.obj/SV_Message.o .obj/SV_Message.so .shobj/SV_Message.o .shobj/SV_Message.so: SV_Message.cpp SV_Message.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - SV_Message.i + SPIPE_Stream.h \ + pre.h \ + SPIPE.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SPIPE_Stream.i + +.obj/SV_Message.o .obj/SV_Message.so .shobj/SV_Message.o .shobj/SV_Message.so: SV_Message.cpp \ + SV_Message.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + SV_Message.i .obj/SV_Message_Queue.o .obj/SV_Message_Queue.so .shobj/SV_Message_Queue.o .shobj/SV_Message_Queue.so: SV_Message_Queue.cpp \ - SV_Message_Queue.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SV_Message.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - SV_Message.i \ - SV_Message_Queue.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + SV_Message_Queue.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SV_Message.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + SV_Message_Queue.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/SV_Semaphore_Complex.o .obj/SV_Semaphore_Complex.so .shobj/SV_Semaphore_Complex.o .shobj/SV_Semaphore_Complex.so: SV_Semaphore_Complex.cpp \ - SV_Semaphore_Complex.h \ - pre.h \ - SV_Semaphore_Simple.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + SV_Semaphore_Complex.h \ + pre.h \ + SV_Semaphore_Simple.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/SV_Semaphore_Simple.o .obj/SV_Semaphore_Simple.so .shobj/SV_Semaphore_Simple.o .shobj/SV_Semaphore_Simple.so: SV_Semaphore_Simple.cpp \ - SV_Semaphore_Simple.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - SV_Semaphore_Simple.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i + SV_Semaphore_Simple.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + SV_Semaphore_Simple.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i .obj/SV_Shared_Memory.o .obj/SV_Shared_Memory.so .shobj/SV_Shared_Memory.o .shobj/SV_Shared_Memory.so: SV_Shared_Memory.cpp \ - SV_Shared_Memory.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - SV_Shared_Memory.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + SV_Shared_Memory.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + SV_Shared_Memory.i .obj/TLI.o .obj/TLI.so .shobj/TLI.o .shobj/TLI.so: TLI.cpp TLI.h \ - pre.h IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - Addr.h Addr.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + Addr.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + TLI.i .obj/TLI_Acceptor.o .obj/TLI_Acceptor.so .shobj/TLI_Acceptor.o .shobj/TLI_Acceptor.so: TLI_Acceptor.cpp \ - TLI_Acceptor.h \ - pre.h TLI.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - Addr.h Addr.i \ - TLI_Stream.h \ - INET_Addr.h \ - Sock_Connect.h \ - Sock_Connect.i \ - INET_Addr.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - ACE.i + TLI_Acceptor.h \ + pre.h \ + TLI.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + Addr.h \ + TLI_Stream.h \ + INET_Addr.h \ + Sock_Connect.h \ + Sock_Connect.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + ACE.i .obj/TLI_Connector.o .obj/TLI_Connector.so .shobj/TLI_Connector.o .shobj/TLI_Connector.so: TLI_Connector.cpp \ - Handle_Set.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Handle_Set.i \ - TLI_Connector.h \ - TLI_Stream.h \ - TLI.h IPC_SAP.h \ - Flag_Manip.h \ - Flag_Manip.i \ - IPC_SAP.i \ - Addr.h Addr.i \ - INET_Addr.h \ - Sock_Connect.h \ - Sock_Connect.i \ - INET_Addr.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - ACE.i - -.obj/TLI_Stream.o .obj/TLI_Stream.so .shobj/TLI_Stream.o .shobj/TLI_Stream.so: TLI_Stream.cpp TLI_Stream.h \ - pre.h TLI.h \ - IPC_SAP.h \ - Flag_Manip.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - Addr.h Addr.i \ - INET_Addr.h \ - Sock_Connect.h \ - Sock_Connect.i \ - INET_Addr.i \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - ACE.i + Handle_Set.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + TLI_Connector.h \ + TLI_Stream.h \ + TLI.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + Addr.h \ + INET_Addr.h \ + Sock_Connect.h \ + Sock_Connect.i \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + ACE.i \ + TLI_Connector.i + +.obj/TLI_Stream.o .obj/TLI_Stream.so .shobj/TLI_Stream.o .shobj/TLI_Stream.so: TLI_Stream.cpp \ + TLI_Stream.h \ + pre.h \ + TLI.h \ + IPC_SAP.h \ + Flag_Manip.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + Addr.h \ + INET_Addr.h \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + ACE.i \ + TLI_Stream.i .obj/TTY_IO.o .obj/TTY_IO.so .shobj/TTY_IO.o .shobj/TTY_IO.so: TTY_IO.cpp TTY_IO.h \ - OS.h pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - DEV_IO.h DEV.h \ - IO_SAP.h \ - Flag_Manip.h \ - Flag_Manip.i \ - IO_SAP.i \ - DEV_Addr.h \ - Addr.h Addr.i \ - DEV_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i DEV.i \ - DEV_IO.i - -.obj/UNIX_Addr.o .obj/UNIX_Addr.so .shobj/UNIX_Addr.o .shobj/UNIX_Addr.so: UNIX_Addr.cpp UNIX_Addr.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h \ - ACE_export.h \ - Addr.i \ - Log_Msg.h \ - Global_Macros.h \ - OS_Export.h \ - Default_Constants.h \ - Log_Priority.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - UNIX_Addr.i + OS.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + DEV_IO.h \ + DEV.h \ + IO_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IO_SAP.i \ + DEV_Addr.h \ + Addr.h \ + DEV.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + DEV_IO.i + +.obj/UNIX_Addr.o .obj/UNIX_Addr.so .shobj/UNIX_Addr.o .shobj/UNIX_Addr.so: UNIX_Addr.cpp \ + UNIX_Addr.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + ACE_export.h \ + Log_Msg.h \ + Global_Macros.h \ + OS_Export.h \ + Default_Constants.h \ + Log_Priority.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + UNIX_Addr.i .obj/UPIPE_Acceptor.o .obj/UPIPE_Acceptor.so .shobj/UPIPE_Acceptor.o .shobj/UPIPE_Acceptor.so: UPIPE_Acceptor.cpp \ - UPIPE_Acceptor.h \ - pre.h \ - UPIPE_Stream.h \ - Stream.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - IO_Cntl_Msg.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - Module.h \ - Task_T.h \ - Message_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Event_Handler.h \ - Event_Handler.i \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.i \ - Task_T.cpp \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp \ - Stream.i \ - Stream.cpp \ - SPIPE.h \ - IPC_SAP.h \ - IPC_SAP.i \ - SPIPE_Addr.h \ - Addr.h Addr.i \ - SPIPE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - SPIPE.i \ - UPIPE_Addr.h \ - UPIPE_Stream.i \ - SPIPE_Acceptor.h \ - SPIPE_Stream.h \ - SPIPE_Stream.i \ - UPIPE_Acceptor.i + UPIPE_Acceptor.h \ + pre.h \ + UPIPE_Stream.h \ + Stream.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + IO_Cntl_Msg.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + Message_Block_T.i \ + Module.h \ + Task_T.h \ + Message_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + Svc_Conf_Tokens.h \ + DLL.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.cpp \ + Task_T.i \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Stream.cpp \ + Stream.i \ + SPIPE.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i \ + UPIPE_Addr.h \ + SPIPE_Acceptor.h \ + SPIPE_Stream.h \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SPIPE_Stream.i \ + UPIPE_Acceptor.i .obj/UPIPE_Connector.o .obj/UPIPE_Connector.so .shobj/UPIPE_Connector.o .shobj/UPIPE_Connector.so: UPIPE_Connector.cpp \ - UPIPE_Connector.h \ - pre.h \ - UPIPE_Stream.h \ - Stream.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - IO_Cntl_Msg.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - Module.h \ - Task_T.h \ - Message_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Event_Handler.h \ - Event_Handler.i \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.i \ - Task_T.cpp \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp \ - Stream.i \ - Stream.cpp \ - SPIPE.h \ - IPC_SAP.h \ - IPC_SAP.i \ - SPIPE_Addr.h \ - Addr.h Addr.i \ - SPIPE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - SPIPE.i \ - UPIPE_Addr.h \ - UPIPE_Stream.i \ - SPIPE_Stream.h \ - SPIPE_Stream.i \ - UPIPE_Connector.i + UPIPE_Connector.h \ + pre.h \ + UPIPE_Stream.h \ + Stream.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + IO_Cntl_Msg.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + Message_Block_T.i \ + Module.h \ + Task_T.h \ + Message_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + Svc_Conf_Tokens.h \ + DLL.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.cpp \ + Task_T.i \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Stream.cpp \ + Stream.i \ + SPIPE.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i \ + UPIPE_Addr.h \ + SPIPE_Stream.h \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SPIPE_Stream.i \ + UPIPE_Connector.i .obj/UPIPE_Stream.o .obj/UPIPE_Stream.so .shobj/UPIPE_Stream.o .shobj/UPIPE_Stream.so: UPIPE_Stream.cpp \ - UPIPE_Stream.h \ - pre.h Stream.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - IO_Cntl_Msg.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - Module.h \ - Task_T.h \ - Message_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Event_Handler.h \ - Event_Handler.i \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.i \ - Task_T.cpp \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp \ - Stream.i \ - Stream.cpp \ - SPIPE.h \ - IPC_SAP.h \ - IPC_SAP.i \ - SPIPE_Addr.h \ - Addr.h Addr.i \ - SPIPE_Addr.i \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - SPIPE.i \ - UPIPE_Addr.h \ - UPIPE_Stream.i + UPIPE_Stream.h \ + pre.h \ + Stream.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + IO_Cntl_Msg.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + Message_Block_T.i \ + Module.h \ + Task_T.h \ + Message_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + Svc_Conf_Tokens.h \ + DLL.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.cpp \ + Task_T.i \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Stream.cpp \ + Stream.i \ + SPIPE.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SPIPE_Addr.h \ + Addr.h \ + SPIPE.i \ + UPIPE_Addr.h \ + UPIPE_Stream.i .obj/MEM_Acceptor.o .obj/MEM_Acceptor.so .shobj/MEM_Acceptor.o .shobj/MEM_Acceptor.so: MEM_Acceptor.cpp \ - MEM_Acceptor.h \ - pre.h \ - SOCK_Acceptor.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Acceptor.i \ - MEM_Stream.h \ - MEM_IO.h \ - MEM_SAP.h \ - PI_Malloc.h \ - Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Based_Pointer_T.h \ - Based_Pointer_T.i \ - Based_Pointer_T.cpp \ - Based_Pointer_Repository.h \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - PI_Malloc.i \ - Process_Mutex.h \ - Process_Mutex.inl \ - MEM_SAP.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Process_Semaphore.h \ - Process_Semaphore.inl \ - MEM_IO.i \ - MEM_Stream.i \ - MEM_Addr.h \ - MEM_Addr.i \ - OS_QoS.h \ - MEM_Acceptor.i + MEM_Acceptor.h \ + pre.h \ + SOCK_Acceptor.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Acceptor.i \ + MEM_Stream.h \ + MEM_IO.h \ + MEM_SAP.h \ + PI_Malloc.h \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Based_Pointer_T.h \ + Based_Pointer_T.cpp \ + Based_Pointer_Repository.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Based_Pointer_T.i \ + Process_Mutex.h \ + MEM_SAP.i \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + Process_Semaphore.h \ + MEM_IO.i \ + MEM_Stream.i \ + MEM_Addr.h \ + OS_QoS.h \ + MEM_Acceptor.i .obj/MEM_Addr.o .obj/MEM_Addr.so .shobj/MEM_Addr.o .shobj/MEM_Addr.so: MEM_Addr.cpp MEM_Addr.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - INET_Addr.h \ - Sock_Connect.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sock_Connect.i \ - Addr.h Addr.i \ - INET_Addr.i \ - MEM_Addr.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + INET_Addr.h \ + Sock_Connect.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sock_Connect.i \ + Addr.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + MEM_Addr.i .obj/MEM_Connector.o .obj/MEM_Connector.so .shobj/MEM_Connector.o .shobj/MEM_Connector.so: MEM_Connector.cpp \ - MEM_Connector.h \ - pre.h \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - MEM_Stream.h \ - MEM_IO.h \ - MEM_SAP.h \ - PI_Malloc.h \ - Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Based_Pointer_T.h \ - Based_Pointer_T.i \ - Based_Pointer_T.cpp \ - Based_Pointer_Repository.h \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - PI_Malloc.i \ - Process_Mutex.h \ - Process_Mutex.inl \ - MEM_SAP.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Process_Semaphore.h \ - Process_Semaphore.inl \ - MEM_IO.i \ - MEM_Stream.i \ - MEM_Addr.h \ - MEM_Addr.i \ - MEM_Connector.i + MEM_Connector.h \ + pre.h \ + SOCK_Connector.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Connector.i \ + MEM_Stream.h \ + MEM_IO.h \ + MEM_SAP.h \ + PI_Malloc.h \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Based_Pointer_T.h \ + Based_Pointer_T.cpp \ + Based_Pointer_Repository.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Based_Pointer_T.i \ + Process_Mutex.h \ + MEM_SAP.i \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + Process_Semaphore.h \ + MEM_IO.i \ + MEM_Stream.i \ + MEM_Addr.h \ + MEM_Connector.i .obj/MEM_IO.o .obj/MEM_IO.so .shobj/MEM_IO.o .shobj/MEM_IO.so: MEM_IO.cpp MEM_IO.h \ - pre.h SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i \ - MEM_SAP.h \ - PI_Malloc.h \ - Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Based_Pointer_T.h \ - Based_Pointer_T.i \ - Based_Pointer_T.cpp \ - Based_Pointer_Repository.h \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - PI_Malloc.i \ - Process_Mutex.h \ - Process_Mutex.inl \ - MEM_SAP.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Process_Semaphore.h \ - Process_Semaphore.inl \ - MEM_IO.i \ - Handle_Set.h \ - Handle_Set.i + pre.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + MEM_SAP.h \ + PI_Malloc.h \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Based_Pointer_T.h \ + Based_Pointer_T.cpp \ + Based_Pointer_Repository.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Based_Pointer_T.i \ + Process_Mutex.h \ + MEM_SAP.i \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + Process_Semaphore.h \ + MEM_IO.i \ + Handle_Set.h .obj/MEM_SAP.o .obj/MEM_SAP.so .shobj/MEM_SAP.o .shobj/MEM_SAP.so: MEM_SAP.cpp MEM_SAP.h \ - pre.h \ - PI_Malloc.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Malloc.h OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Based_Pointer_T.h \ - Based_Pointer_T.i \ - Based_Pointer_T.cpp \ - Based_Pointer_Repository.h \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - PI_Malloc.i \ - Process_Mutex.h \ - Process_Mutex.inl \ - MEM_SAP.i - -.obj/MEM_Stream.o .obj/MEM_Stream.so .shobj/MEM_Stream.o .shobj/MEM_Stream.so: MEM_Stream.cpp MEM_Stream.h \ - pre.h MEM_IO.h \ - SOCK.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Addr.h Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i \ - MEM_SAP.h \ - PI_Malloc.h \ - Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Based_Pointer_T.h \ - Based_Pointer_T.i \ - Based_Pointer_T.cpp \ - Based_Pointer_Repository.h \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - PI_Malloc.i \ - Process_Mutex.h \ - Process_Mutex.inl \ - MEM_SAP.i \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Process_Semaphore.h \ - Process_Semaphore.inl \ - MEM_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - MEM_Stream.i - -.obj/Basic_Stats.o .obj/Basic_Stats.so .shobj/Basic_Stats.o .shobj/Basic_Stats.so: Basic_Stats.cpp Basic_Stats.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - Basic_Stats.inl \ - Log_Msg.h \ - Global_Macros.h \ - OS_Export.h \ - Default_Constants.h \ - Log_Priority.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + PI_Malloc.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Malloc.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Based_Pointer_T.h \ + Based_Pointer_T.cpp \ + Based_Pointer_Repository.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Based_Pointer_T.i \ + Process_Mutex.h \ + MEM_SAP.i + +.obj/MEM_Stream.o .obj/MEM_Stream.so .shobj/MEM_Stream.o .shobj/MEM_Stream.so: MEM_Stream.cpp \ + MEM_Stream.h \ + pre.h \ + MEM_IO.h \ + SOCK.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Addr.h \ + IPC_SAP.h \ + Flag_Manip.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + MEM_SAP.h \ + PI_Malloc.h \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Based_Pointer_T.h \ + Based_Pointer_T.cpp \ + Based_Pointer_Repository.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Based_Pointer_T.i \ + Process_Mutex.h \ + MEM_SAP.i \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + Process_Semaphore.h \ + MEM_IO.i \ + INET_Addr.h \ + MEM_Stream.i + +.obj/Basic_Stats.o .obj/Basic_Stats.so .shobj/Basic_Stats.o .shobj/Basic_Stats.so: Basic_Stats.cpp \ + Basic_Stats.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Basic_Types.h \ + ACE_export.h \ + Log_Msg.h \ + Global_Macros.h \ + OS_Export.h \ + Default_Constants.h \ + Log_Priority.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + OS_Log_Msg_Attributes.h \ + Basic_Stats.inl .obj/High_Res_Timer.o .obj/High_Res_Timer.so .shobj/High_Res_Timer.o .shobj/High_Res_Timer.so: High_Res_Timer.cpp \ - High_Res_Timer.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - High_Res_Timer.i \ - Stats.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Basic_Stats.h \ - Basic_Stats.inl \ - Stats.i Synch.h \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + High_Res_Timer.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + High_Res_Timer.i \ + Stats.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Queue.inl \ + Basic_Stats.h .obj/Profile_Timer.o .obj/Profile_Timer.so .shobj/Profile_Timer.o .shobj/Profile_Timer.so: Profile_Timer.cpp \ - Profile_Timer.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - High_Res_Timer.h \ - High_Res_Timer.i \ - Profile_Timer.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/System_Time.o .obj/System_Time.so .shobj/System_Time.o .shobj/System_Time.so: System_Time.cpp System_Time.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Memory_Pool.h \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Malloc_Base.h \ - Memory_Pool.i \ - Malloc_T.h \ - Malloc.h \ - Malloc.i \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp + Profile_Timer.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + High_Res_Timer.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Profile_Timer.i + +.obj/System_Time.o .obj/System_Time.so .shobj/System_Time.o .shobj/System_Time.so: System_Time.cpp \ + System_Time.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Memory_Pool.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Event_Handler.h \ + Atomic_Op.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Malloc_Base.h \ + Unbounded_Set.inl \ + Malloc_T.h \ + Malloc.h \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i .obj/Time_Request_Reply.o .obj/Time_Request_Reply.so .shobj/Time_Request_Reply.o .shobj/Time_Request_Reply.so: Time_Request_Reply.cpp \ - Time_Request_Reply.h \ - pre.h \ - Time_Value.h \ - OS_Export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Time_Value.inl \ - SString.h \ - SStringfwd.h \ - Basic_Types.h \ - Basic_Types.i \ - String_Base.h \ - String_Base_Const.h \ - Global_Macros.h \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - String_Base.i \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i + Time_Request_Reply.h \ + pre.h \ + Time_Value.h \ + OS_Export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + SString.h \ + SStringfwd.h \ + Basic_Types.h \ + String_Base.h \ + String_Base_Const.h \ + Global_Macros.h \ + OS_String.h \ + OS_Memory.h \ + OS_Errno.h \ + String_Base.cpp \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_TLI.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i .obj/Timeprobe.o .obj/Timeprobe.so .shobj/Timeprobe.o .shobj/Timeprobe.so: Timeprobe.cpp OS.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i - -.obj/Timer_Hash.o .obj/Timer_Hash.so .shobj/Timer_Hash.o .shobj/Timer_Hash.so: Timer_Hash.cpp Timer_Hash.h \ - pre.h \ - Timer_Hash_T.h \ - Timer_Queue_T.h \ - Free_List.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Timer_Hash_T.cpp \ - High_Res_Timer.h \ - High_Res_Timer.i \ - Timer_Heap_T.h \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Malloc_Base.h \ - Timer_Heap_T.cpp \ - Timer_List_T.h \ - Timer_List_T.cpp - -.obj/Timer_Heap.o .obj/Timer_Heap.so .shobj/Timer_Heap.o .shobj/Timer_Heap.so: Timer_Heap.cpp Timer_Heap.h \ - pre.h \ - Timer_Heap_T.h \ - Timer_Queue_T.h \ - Free_List.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Malloc_Base.h \ - Timer_Heap_T.cpp - -.obj/Timer_List.o .obj/Timer_List.so .shobj/Timer_List.o .shobj/Timer_List.so: Timer_List.cpp Timer_List.h \ - pre.h \ - Timer_List_T.h \ - Timer_Queue_T.h \ - Free_List.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Timer_List_T.cpp - -.obj/Timer_Queue.o .obj/Timer_Queue.so .shobj/Timer_Queue.o .shobj/Timer_Queue.so: Timer_Queue.cpp Containers.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Containers.i \ - Containers_T.h \ - Node.h Node.cpp \ - Array_Base.h \ - Global_Macros.h \ - OS_Export.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Timer_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i - -.obj/Timer_Wheel.o .obj/Timer_Wheel.so .shobj/Timer_Wheel.o .shobj/Timer_Wheel.so: Timer_Wheel.cpp Timer_Wheel.h \ - pre.h \ - Timer_Wheel_T.h \ - Timer_Queue_T.h \ - Free_List.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Event_Handler.h \ - Event_Handler.i \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Timer_Wheel_T.cpp + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h + +.obj/Timer_Hash.o .obj/Timer_Hash.so .shobj/Timer_Hash.o .shobj/Timer_Hash.so: Timer_Hash.cpp \ + Timer_Hash.h \ + pre.h \ + Timer_Hash_T.h \ + Timer_Queue_T.h \ + Free_List.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Timer_Hash_T.cpp \ + High_Res_Timer.h \ + Timer_Heap_T.h \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Malloc_Base.h \ + Unbounded_Set.inl \ + Timer_Heap_T.cpp \ + Timer_List_T.h \ + Timer_List_T.cpp + +.obj/Timer_Heap.o .obj/Timer_Heap.so .shobj/Timer_Heap.o .shobj/Timer_Heap.so: Timer_Heap.cpp \ + Timer_Heap.h \ + pre.h \ + Timer_Heap_T.h \ + Timer_Queue_T.h \ + Free_List.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Malloc_Base.h \ + Unbounded_Set.inl \ + Timer_Heap_T.cpp + +.obj/Timer_List.o .obj/Timer_List.so .shobj/Timer_List.o .shobj/Timer_List.so: Timer_List.cpp \ + Timer_List.h \ + pre.h \ + Timer_List_T.h \ + Timer_Queue_T.h \ + Free_List.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Timer_List_T.cpp + +.obj/Timer_Queue.o .obj/Timer_Queue.so .shobj/Timer_Queue.o .shobj/Timer_Queue.so: Timer_Queue.cpp \ + Containers.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Containers_T.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Global_Macros.h \ + OS_Export.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + Timer_Queue.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i + +.obj/Timer_Wheel.o .obj/Timer_Wheel.so .shobj/Timer_Wheel.o .shobj/Timer_Wheel.so: Timer_Wheel.cpp \ + Timer_Wheel.h \ + pre.h \ + Timer_Wheel_T.h \ + Timer_Queue_T.h \ + Free_List.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Free_List.cpp \ + Free_List.i \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Timer_Wheel_T.cpp .obj/DLL.o .obj/DLL.so .shobj/DLL.o .shobj/DLL.so: DLL.cpp DLL.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - DLL_Manager.h \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - SString.i - -.obj/DLL_Manager.o .obj/DLL_Manager.so .shobj/DLL_Manager.o .shobj/DLL_Manager.so: DLL_Manager.cpp DLL_Manager.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - SString.i \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + DLL_Manager.h \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + String_Base.i + +.obj/DLL_Manager.o .obj/DLL_Manager.so .shobj/DLL_Manager.o .shobj/DLL_Manager.so: DLL_Manager.cpp \ + DLL_Manager.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + String_Base.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i .obj/Dynamic_Service_Base.o .obj/Dynamic_Service_Base.so .shobj/Dynamic_Service_Base.o .shobj/Dynamic_Service_Base.so: Dynamic_Service_Base.cpp \ - Dynamic_Service_Base.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Service_Config.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - OS_Memory.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Service_Repository.h \ - Service_Repository.i \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - DLL.h \ - Service_Object.i \ - Service_Types.i - -.obj/Parse_Node.o .obj/Parse_Node.so .shobj/Parse_Node.o .shobj/Parse_Node.so: Parse_Node.cpp Parse_Node.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - DLL.h OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Parse_Node.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Service_Repository.h \ - Service_Repository.i \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Service_Object.i \ - Service_Types.i \ - Task.h \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp + Dynamic_Service_Base.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Service_Config.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + OS_Memory.h \ + OS_Export.h \ + OS_Errno.h \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + OS.h \ + OS_Dirent.h \ + OS_String.h \ + Basic_Types.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Queue.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Service_Repository.h \ + Service_Types.h \ + Service_Object.h \ + Shared_Object.h \ + DLL.h + +.obj/Parse_Node.o .obj/Parse_Node.so .shobj/Parse_Node.o .shobj/Parse_Node.so: Parse_Node.cpp \ + Parse_Node.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + DLL.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Service_Config.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Queue.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Service_Repository.h \ + Service_Types.h \ + Service_Object.h \ + Shared_Object.h \ + Task.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i \ + Parse_Node.i .obj/Service_Config.o .obj/Service_Config.so .shobj/Service_Config.o .shobj/Service_Config.so: Service_Config.cpp \ - Svc_Conf.h \ - pre.h Obstack.h \ - Obstack_T.h \ - Obchunk.h \ - Malloc.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Obchunk.i \ - Obstack_T.i \ - Obstack_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Parse_Node.h \ - DLL.h \ - Parse_Node.i \ - Get_Opt.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Get_Opt.i \ - ARGV.h ARGV.i \ - Service_Manager.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - IPC_SAP.i \ - SOCK.i \ - SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Acceptor.h \ - SOCK_Acceptor.i \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Service_Object.i \ - Service_Manager.i \ - Service_Repository.h \ - Service_Repository.i \ - Service_Types.h \ - Service_Types.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i + Svc_Conf.h \ + pre.h \ + Obstack.h \ + Obstack_T.h \ + Obchunk.h \ + Malloc.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Obstack_T.cpp \ + Obstack_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Parse_Node.h \ + DLL.h \ + Get_Opt.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + ARGV.h \ + Service_Manager.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + Addr.h \ + IPC_SAP.h \ + IPC_SAP.i \ + SOCK.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Acceptor.h \ + SOCK_Acceptor.i \ + Service_Object.h \ + Shared_Object.h \ + Service_Repository.h \ + Service_Types.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Service_Config.i .obj/Service_Manager.o .obj/Service_Manager.so .shobj/Service_Manager.o .shobj/Service_Manager.so: Service_Manager.cpp \ - Get_Opt.h pre.h \ - SStringfwd.h \ - Basic_Types.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Basic_Types.i \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Node.h Node.cpp \ - Array_Base.h \ - Global_Macros.h \ - OS_Export.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Get_Opt.i \ - Service_Repository.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Service_Repository.i \ - Service_Config.h \ - SString.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Service_Manager.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - IPC_SAP.i \ - SOCK.i \ - SOCK_IO.i \ - INET_Addr.h \ - INET_Addr.i \ - SOCK_Stream.i \ - SOCK_Acceptor.h \ - SOCK_Acceptor.i \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - DLL.h \ - Service_Object.i \ - Service_Manager.i \ - Service_Types.h \ - Service_Types.i \ - WFMO_Reactor.h + Get_Opt.h \ + pre.h \ + SStringfwd.h \ + Basic_Types.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + Containers.h \ + Containers_T.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Global_Macros.h \ + OS_Export.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + Service_Repository.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Service_Config.h \ + SString.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Service_Manager.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + Addr.h \ + IPC_SAP.h \ + IPC_SAP.i \ + SOCK.i \ + SOCK_IO.i \ + INET_Addr.h \ + SOCK_Stream.i \ + SOCK_Acceptor.h \ + SOCK_Acceptor.i \ + Service_Object.h \ + Shared_Object.h \ + DLL.h \ + Service_Types.h \ + WFMO_Reactor.h \ + Service_Manager.i .obj/Service_Object.o .obj/Service_Object.so .shobj/Service_Object.o .shobj/Service_Object.so: Service_Object.cpp \ - Service_Object.h \ - pre.h \ - Shared_Object.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - Event_Handler.h \ - Event_Handler.i \ - DLL.h \ - Service_Object.i \ - Service_Types.h \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Synch.h \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Service_Types.i + Service_Object.h \ + pre.h \ + Shared_Object.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Svc_Conf_Tokens.h \ + Event_Handler.h \ + Atomic_Op.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + DLL.h \ + Service_Object.i \ + Service_Types.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i .obj/Service_Repository.o .obj/Service_Repository.so .shobj/Service_Repository.o .shobj/Service_Repository.so: Service_Repository.cpp \ - Service_Repository.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Default_Constants.h \ - Synch.h OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Service_Repository.i \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - Event_Handler.h \ - Event_Handler.i \ - DLL.h \ - Service_Object.i \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Service_Types.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + Service_Repository.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Default_Constants.h \ + Synch.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Service_Types.h \ + Service_Object.h \ + Shared_Object.h \ + Svc_Conf_Tokens.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + DLL.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Service_Repository.i .obj/Service_Types.o .obj/Service_Types.so .shobj/Service_Types.o .shobj/Service_Types.so: Service_Types.cpp \ - Service_Types.h \ - pre.h \ - Service_Object.h \ - Shared_Object.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - Event_Handler.h \ - Event_Handler.i \ - DLL.h \ - Service_Object.i \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Synch.h \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Service_Types.i \ - Stream_Modules.h \ - Task.h \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.cpp \ - Stream.h \ - Stream.i \ - Stream.cpp + Service_Types.h \ + pre.h \ + Service_Object.h \ + Shared_Object.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Svc_Conf_Tokens.h \ + Event_Handler.h \ + Atomic_Op.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + DLL.h \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Stream_Modules.h \ + Task.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i \ + Stream.h \ + Stream.cpp \ + Stream.i \ + Service_Types.i .obj/Service_Templates.o .obj/Service_Templates.so .shobj/Service_Templates.o .shobj/Service_Templates.so: Service_Templates.cpp \ - Service_Templates.h \ - pre.h \ - Svc_Conf.h \ - Obstack.h \ - Obstack_T.h \ - Obchunk.h \ - Malloc.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Obchunk.i \ - Obstack_T.i \ - Obstack_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Parse_Node.h \ - DLL.h \ - Parse_Node.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Stream_Modules.h \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Service_Object.i \ - Task.i Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.cpp \ - Stream.h \ - Stream.i \ - Stream.cpp + Service_Templates.h \ + pre.h \ + Svc_Conf.h \ + Obstack.h \ + Obstack_T.h \ + Obchunk.h \ + Malloc.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Obstack_T.cpp \ + Obstack_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Parse_Node.h \ + DLL.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Stream_Modules.h \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i \ + Stream.h \ + Stream.cpp \ + Stream.i .obj/Shared_Object.o .obj/Shared_Object.so .shobj/Shared_Object.o .shobj/Shared_Object.so: Shared_Object.cpp \ - Shared_Object.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Shared_Object.i + Shared_Object.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Shared_Object.i .obj/XML_Svc_Conf.o .obj/XML_Svc_Conf.so .shobj/XML_Svc_Conf.o .shobj/XML_Svc_Conf.so: XML_Svc_Conf.cpp \ - XML_Svc_Conf.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + XML_Svc_Conf.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Svc_Conf_l.o .obj/Svc_Conf_l.so .shobj/Svc_Conf_l.o .shobj/Svc_Conf_l.so: Svc_Conf_l.cpp OS.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Svc_Conf.h \ - Obstack.h \ - Obstack_T.h \ - Obchunk.h \ - Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Obchunk.i \ - Obstack_T.i \ - Obstack_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Parse_Node.h \ - DLL.h \ - Parse_Node.i \ - Svc_Conf_Lexer_Guard.h - -.obj/Svc_Conf_y.o .obj/Svc_Conf_y.so .shobj/Svc_Conf_y.o .shobj/Svc_Conf_y.so: Svc_Conf_y.cpp Svc_Conf.h \ - pre.h Obstack.h \ - Obstack_T.h \ - Obchunk.h \ - Malloc.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Obchunk.i \ - Obstack_T.i \ - Obstack_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Parse_Node.h \ - DLL.h \ - Parse_Node.i \ - ARGV.h ARGV.i \ - Module.h \ - Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Service_Object.i \ - Thread_Manager.h \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.i \ - Task_T.cpp \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp \ - Stream.h \ - Stream.i \ - Stream.cpp \ - Service_Types.h \ - Service_Types.i + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Svc_Conf.h \ + Obstack.h \ + Obstack_T.h \ + Obchunk.h \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Obstack_T.cpp \ + Obstack_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Parse_Node.h \ + DLL.h \ + Svc_Conf_Lexer_Guard.h + +.obj/Svc_Conf_y.o .obj/Svc_Conf_y.so .shobj/Svc_Conf_y.o .shobj/Svc_Conf_y.so: Svc_Conf_y.cpp \ + Svc_Conf.h \ + pre.h \ + Obstack.h \ + Obstack_T.h \ + Obchunk.h \ + Malloc.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Obstack_T.cpp \ + Obstack_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Parse_Node.h \ + DLL.h \ + ARGV.h \ + Module.h \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task.h \ + Service_Object.h \ + Shared_Object.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.cpp \ + Task_T.i \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Stream.h \ + Stream.cpp \ + Stream.i \ + Service_Types.h .obj/Svc_Conf_Lexer_Guard.o .obj/Svc_Conf_Lexer_Guard.so .shobj/Svc_Conf_Lexer_Guard.o .shobj/Svc_Conf_Lexer_Guard.so: Svc_Conf_Lexer_Guard.cpp \ - Svc_Conf_Lexer_Guard.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Svc_Conf.h \ - Obstack.h \ - Obstack_T.h \ - Obchunk.h \ - Malloc.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Obchunk.i \ - Obstack_T.i \ - Obstack_T.cpp \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Parse_Node.h \ - DLL.h \ - Parse_Node.i + Svc_Conf_Lexer_Guard.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Svc_Conf.h \ + Obstack.h \ + Obstack_T.h \ + Obchunk.h \ + Malloc.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Obstack_T.cpp \ + Obstack_T.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Parse_Node.h \ + DLL.h .obj/CDR_Base.o .obj/CDR_Base.so .shobj/CDR_Base.o .shobj/CDR_Base.so: CDR_Base.cpp CDR_Base.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - Default_Constants.h \ - CDR_Base.inl \ - Message_Block.h \ - Global_Macros.h \ - OS_Export.h \ - Time_Value.h \ - Time_Value.inl \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i - -.obj/CDR_Stream.o .obj/CDR_Stream.so .shobj/CDR_Stream.o .shobj/CDR_Stream.so: CDR_Stream.cpp CDR_Stream.h \ - pre.h \ - CDR_Base.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - Default_Constants.h \ - CDR_Base.inl \ - SStringfwd.h \ - OS_Memory.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - OS_String.h \ - OS_String.inl \ - Message_Block.h \ - Global_Macros.h \ - Time_Value.h \ - Time_Value.inl \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - CDR_Stream.i \ - SString.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Basic_Types.h \ + ACE_export.h \ + Default_Constants.h \ + Message_Block.h \ + Global_Macros.h \ + OS_Export.h \ + Time_Value.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + OS_Memory.h \ + OS_TLI.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Message_Block_T.i \ + CDR_Base.inl + +.obj/CDR_Stream.o .obj/CDR_Stream.so .shobj/CDR_Stream.o .shobj/CDR_Stream.so: CDR_Stream.cpp \ + CDR_Stream.h \ + pre.h \ + CDR_Base.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Basic_Types.h \ + ACE_export.h \ + Default_Constants.h \ + SStringfwd.h \ + OS_Memory.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Message_Block.h \ + Global_Macros.h \ + Time_Value.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + OS.h \ + OS_Dirent.h \ + OS_TLI.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Message_Block_T.i \ + SString.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + CDR_Stream.i .obj/Codeset_IBM1047.o .obj/Codeset_IBM1047.so .shobj/Codeset_IBM1047.o .shobj/Codeset_IBM1047.so: Codeset_IBM1047.cpp \ - Codeset_IBM1047.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl + Codeset_IBM1047.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Codeset_Registry.o .obj/Codeset_Registry.so .shobj/Codeset_Registry.o .shobj/Codeset_Registry.so: Codeset_Registry.cpp \ - Codeset_Registry.h \ - pre.h SString.h \ - SStringfwd.h \ - Basic_Types.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Basic_Types.i \ - String_Base.h \ - String_Base_Const.h \ - Global_Macros.h \ - OS_Export.h \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - String_Base.i \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - CDR_Base.h \ - CDR_Base.inl \ - Codeset_Registry.inl + Codeset_Registry.h \ + pre.h \ + SString.h \ + SStringfwd.h \ + Basic_Types.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + String_Base.h \ + String_Base_Const.h \ + Global_Macros.h \ + OS_Export.h \ + OS_String.h \ + OS_Memory.h \ + OS_Errno.h \ + String_Base.cpp \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + CDR_Base.h \ + Codeset_Registry.inl .obj/Codeset_Registry_db.o .obj/Codeset_Registry_db.so .shobj/Codeset_Registry_db.o .shobj/Codeset_Registry_db.so: Codeset_Registry_db.cpp \ - Codeset_Registry.h \ - pre.h SString.h \ - SStringfwd.h \ - Basic_Types.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Basic_Types.i \ - String_Base.h \ - String_Base_Const.h \ - Global_Macros.h \ - OS_Export.h \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - String_Base.i \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - CDR_Base.h \ - CDR_Base.inl \ - Codeset_Registry.inl + Codeset_Registry.h \ + pre.h \ + SString.h \ + SStringfwd.h \ + Basic_Types.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + String_Base.h \ + String_Base_Const.h \ + Global_Macros.h \ + OS_Export.h \ + OS_String.h \ + OS_Memory.h \ + OS_Errno.h \ + String_Base.cpp \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + CDR_Base.h .obj/Message_Queue.o .obj/Message_Queue.so .shobj/Message_Queue.o .shobj/Message_Queue.so: Message_Queue.cpp \ - Message_Queue.h \ - pre.h \ - Message_Block.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Default_Constants.h \ - Global_Macros.h \ - OS_Export.h \ - Time_Value.h \ - Time_Value.inl \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - IO_Cntl_Msg.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Event_Handler.h \ - Event_Handler.i \ - Notification_Strategy.inl \ - Message_Queue.i + Message_Queue.h \ + pre.h \ + Message_Block.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Default_Constants.h \ + Global_Macros.h \ + OS_Export.h \ + Time_Value.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Malloc_Base.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Message_Queue.i .obj/Reactor_Notification_Strategy.o .obj/Reactor_Notification_Strategy.so .shobj/Reactor_Notification_Strategy.o .shobj/Reactor_Notification_Strategy.so: Reactor_Notification_Strategy.cpp \ - Reactor_Notification_Strategy.h \ - pre.h \ - Notification_Strategy.h \ - Event_Handler.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Event_Handler.i \ - Notification_Strategy.inl \ - Reactor_Notification_Strategy.inl \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Timer_Queue_T.h \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Signal.h \ - Signal.i \ - Reactor.i \ - Reactor_Impl.h + Reactor_Notification_Strategy.h \ + pre.h \ + Notification_Strategy.h \ + Event_Handler.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Atomic_Op.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Timer_Queue_T.cpp \ + Signal.h \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Reactor_Notification_Strategy.inl .obj/Task.o .obj/Task.so .shobj/Task.o .shobj/Task.so: Task.cpp Task.h \ - pre.h \ - Service_Object.h \ - Shared_Object.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - Event_Handler.h \ - Event_Handler.i \ - DLL.h \ - Service_Object.i \ - Thread_Manager.h \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - Thread_Manager.i \ - Task.i Task_T.h \ - Message_Queue.h \ - Message_Block.h \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - IO_Cntl_Msg.h \ - Message_Queue_T.h \ - Message_Queue_T.i \ - Message_Queue_T.cpp \ - Notification_Strategy.h \ - Notification_Strategy.inl \ - Message_Queue.i \ - Task_T.i \ - Task_T.cpp \ - Module.h \ - Module.i \ - Module.cpp \ - Stream_Modules.h \ - Stream_Modules.cpp + pre.h \ + Service_Object.h \ + Shared_Object.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Svc_Conf_Tokens.h \ + Event_Handler.h \ + Atomic_Op.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + DLL.h \ + Thread_Manager.h \ + Thread_Exit.h \ + Thread_Control.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Unbounded_Queue.inl \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Containers_T.cpp \ + Containers_T.i \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Task_T.h \ + Message_Queue.h \ + Message_Block.h \ + Message_Block_T.h \ + Message_Block_T.cpp \ + Message_Block_T.i \ + IO_Cntl_Msg.h \ + Message_Queue_T.h \ + Message_Queue_T.cpp \ + Message_Queue_T.i \ + Notification_Strategy.h \ + Task_T.cpp \ + Module.h \ + Module.cpp \ + Stream_Modules.h \ + Stream_Modules.cpp \ + Module.i \ + Task_T.i \ + Task.i .obj/Based_Pointer_Repository.o .obj/Based_Pointer_Repository.so .shobj/Based_Pointer_Repository.o .shobj/Based_Pointer_Repository.so: Based_Pointer_Repository.cpp \ - Map_Manager.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Synch.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Based_Pointer_Repository.h \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp + Map_Manager.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Synch.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Based_Pointer_Repository.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl .obj/Malloc.o .obj/Malloc.so .shobj/Malloc.o .shobj/Malloc.so: Malloc.cpp Malloc.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp - -.obj/PI_Malloc.o .obj/PI_Malloc.so .shobj/PI_Malloc.o .shobj/PI_Malloc.so: PI_Malloc.cpp PI_Malloc.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Malloc.h OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Based_Pointer_T.h \ - Based_Pointer_T.i \ - Based_Pointer_T.cpp \ - Based_Pointer_Repository.h \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp \ - PI_Malloc.i \ - Process_Mutex.h \ - Process_Mutex.inl + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Malloc.i + +.obj/PI_Malloc.o .obj/PI_Malloc.so .shobj/PI_Malloc.o .shobj/PI_Malloc.so: PI_Malloc.cpp \ + PI_Malloc.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Malloc.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Based_Pointer_T.h \ + Based_Pointer_T.cpp \ + Based_Pointer_Repository.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Based_Pointer_T.i \ + Process_Mutex.h \ + PI_Malloc.i .obj/Malloc_Allocator.o .obj/Malloc_Allocator.so .shobj/Malloc_Allocator.o .shobj/Malloc_Allocator.so: Malloc_Allocator.cpp \ - Malloc_Allocator.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Malloc_Base.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc_Allocator.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Synch_T.h \ - Synch.h Synch.i \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp + Malloc_Allocator.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Malloc_Base.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Malloc_Allocator.i \ + Synch_T.h \ + Synch.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i .obj/Malloc_Instantiations.o .obj/Malloc_Instantiations.so .shobj/Malloc_Instantiations.o .shobj/Malloc_Instantiations.so: Malloc_Instantiations.cpp \ - Malloc.h pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i + Malloc.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl .obj/Mem_Map.o .obj/Mem_Map.so .shobj/Mem_Map.o .shobj/Mem_Map.so: Mem_Map.cpp Mem_Map.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Mem_Map.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/Memory_Pool.o .obj/Memory_Pool.so .shobj/Memory_Pool.o .shobj/Memory_Pool.so: Memory_Pool.cpp Memory_Pool.h \ - pre.h ACE.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Malloc_Base.h \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - Based_Pointer_T.h \ - Based_Pointer_T.i \ - Based_Pointer_T.cpp \ - Based_Pointer_Repository.h \ - Singleton.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Mem_Map.i + +.obj/Memory_Pool.o .obj/Memory_Pool.so .shobj/Memory_Pool.o .shobj/Memory_Pool.so: Memory_Pool.cpp \ + Memory_Pool.h \ + pre.h \ + ACE.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Event_Handler.h \ + Atomic_Op.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Malloc_Base.h \ + Unbounded_Set.inl \ + Memory_Pool.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + Based_Pointer_T.h \ + Based_Pointer_T.cpp \ + Based_Pointer_Repository.h \ + Singleton.h \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Based_Pointer_T.i .obj/Obchunk.o .obj/Obchunk.so .shobj/Obchunk.o .shobj/Obchunk.so: Obchunk.cpp Obchunk.h \ - pre.h Malloc.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Obchunk.i + pre.h \ + Malloc.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Obchunk.i .obj/Obstack.o .obj/Obstack.so .shobj/Obstack.o .shobj/Obstack.so: Obstack.cpp Obstack.h \ - pre.h \ - Obstack_T.h \ - Obchunk.h \ - Malloc.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Obchunk.i \ - Obstack_T.i \ - Obstack_T.cpp - -.obj/Read_Buffer.o .obj/Read_Buffer.so .shobj/Read_Buffer.o .shobj/Read_Buffer.so: Read_Buffer.cpp Read_Buffer.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Read_Buffer.i \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc_Base.h \ - Service_Config.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h + pre.h \ + Obstack_T.h \ + Obchunk.h \ + Malloc.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Obstack_T.cpp \ + Obstack_T.i + +.obj/Read_Buffer.o .obj/Read_Buffer.so .shobj/Read_Buffer.o .shobj/Read_Buffer.so: Read_Buffer.cpp \ + Read_Buffer.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_Base.h \ + Service_Config.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Read_Buffer.i .obj/Shared_Memory.o .obj/Shared_Memory.so .shobj/Shared_Memory.o .shobj/Shared_Memory.so: Shared_Memory.cpp \ - Shared_Memory.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i + Shared_Memory.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h .obj/Shared_Memory_MM.o .obj/Shared_Memory_MM.so .shobj/Shared_Memory_MM.o .shobj/Shared_Memory_MM.so: Shared_Memory_MM.cpp \ - Shared_Memory_MM.h \ - pre.h \ - Shared_Memory.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Mem_Map.h \ - Mem_Map.i \ - Shared_Memory_MM.i + Shared_Memory_MM.h \ + pre.h \ + Shared_Memory.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Mem_Map.h \ + Shared_Memory_MM.i .obj/Shared_Memory_SV.o .obj/Shared_Memory_SV.so .shobj/Shared_Memory_SV.o .shobj/Shared_Memory_SV.so: Shared_Memory_SV.cpp \ - Shared_Memory_SV.h \ - pre.h \ - Shared_Memory.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - SV_Shared_Memory.h \ - SV_Shared_Memory.i \ - Shared_Memory_SV.i + Shared_Memory_SV.h \ + pre.h \ + Shared_Memory.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + SV_Shared_Memory.h \ + Shared_Memory_SV.i .obj/Codecs.o .obj/Codecs.so .shobj/Codecs.o .shobj/Codecs.so: Codecs.cpp OS.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Codecs.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Codecs.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h .obj/Local_Tokens.o .obj/Local_Tokens.so .shobj/Local_Tokens.o .shobj/Local_Tokens.so: Local_Tokens.cpp \ - Local_Tokens.h \ - pre.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Local_Tokens.i + Local_Tokens.h \ + pre.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl .obj/Remote_Tokens.o .obj/Remote_Tokens.so .shobj/Remote_Tokens.o .shobj/Remote_Tokens.so: Remote_Tokens.cpp \ - Remote_Tokens.h \ - pre.h \ - INET_Addr.h \ - Sock_Connect.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sock_Connect.i \ - Addr.h Addr.i \ - INET_Addr.i \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - IPC_SAP.h \ - Flag_Manip.h \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - ACE.i SOCK_IO.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Synch_Options.h \ - Synch_Options.i \ - Local_Tokens.h \ - Local_Tokens.i \ - Token_Request_Reply.h \ - Token_Request_Reply.i \ - Remote_Tokens.i \ - Singleton.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Singleton.i \ - Singleton.cpp \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp \ - Framework_Component.h \ - Framework_Component.inl \ - Framework_Component_T.h \ - Framework_Component_T.inl \ - Framework_Component_T.cpp + Remote_Tokens.h \ + pre.h \ + INET_Addr.h \ + Sock_Connect.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sock_Connect.i \ + Addr.h \ + SOCK_Connector.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + ACE.i \ + SOCK_IO.i \ + SOCK_Stream.i \ + SOCK_Connector.i \ + Synch_Options.h \ + Local_Tokens.h \ + Token_Request_Reply.h \ + Singleton.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Singleton.cpp \ + Singleton.i \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Framework_Component.h \ + Framework_Component_T.h \ + Framework_Component_T.cpp \ + Framework_Component_T.inl \ + Remote_Tokens.i .obj/Token_Collection.o .obj/Token_Collection.so .shobj/Token_Collection.o .shobj/Token_Collection.so: Token_Collection.cpp \ - Token_Collection.h \ - pre.h \ - Map_Manager.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Synch.h \ - ACE_export.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Local_Tokens.h \ - Local_Tokens.i \ - Token_Collection.i + Token_Collection.h \ + pre.h \ + Map_Manager.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Synch.h \ + ACE_export.h \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Local_Tokens.h \ + Token_Collection.i .obj/Token_Invariants.o .obj/Token_Invariants.so .shobj/Token_Invariants.o .shobj/Token_Invariants.so: Token_Invariants.cpp \ - Token_Invariants.h \ - pre.h Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Map_Manager.h \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Local_Tokens.h \ - Local_Tokens.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + Token_Invariants.h \ + pre.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Map_Manager.h \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Local_Tokens.h \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i .obj/Token_Manager.o .obj/Token_Manager.so .shobj/Token_Manager.o .shobj/Token_Manager.so: Token_Manager.cpp \ - Token_Manager.h \ - pre.h Synch.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - Map_Manager.h \ - Map_Manager.i \ - Map_Manager.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Malloc_Allocator.h \ - Malloc_Base.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Local_Tokens.h \ - Local_Tokens.i \ - Token_Manager.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + Token_Manager.h \ + pre.h \ + Synch.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + OS_Log_Msg_Attributes.h \ + Log_Msg.h \ + Log_Priority.h \ + Synch_T.i \ + Map_Manager.h \ + Map_Manager.cpp \ + Malloc.h \ + Malloc_T.h \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Map_Manager.i \ + Local_Tokens.h \ + Object_Manager.h \ + Managed_Object.h \ + Managed_Object.cpp \ + Managed_Object.i \ + Token_Manager.i .obj/Token_Request_Reply.o .obj/Token_Request_Reply.so .shobj/Token_Request_Reply.o .shobj/Token_Request_Reply.so: Token_Request_Reply.cpp \ - Token_Request_Reply.h \ - pre.h \ - Local_Tokens.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - Local_Tokens.i \ - Time_Value.h \ - OS_Export.h \ - ACE_export.h \ - Time_Value.inl \ - Token_Request_Reply.i + Token_Request_Reply.h \ + pre.h \ + Local_Tokens.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + Time_Value.h \ + OS_Export.h \ + ACE_export.h \ + Token_Request_Reply.i .obj/Local_Name_Space.o .obj/Local_Name_Space.so .shobj/Local_Name_Space.o .shobj/Local_Name_Space.so: Local_Name_Space.cpp \ - ACE.h pre.h \ - OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i \ - Local_Name_Space.h \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - String_Base.cpp \ - Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - Local_Name_Space_T.h \ - Name_Space.h \ - Name_Proxy.h \ - INET_Addr.h \ - Addr.h Addr.i \ - INET_Addr.i \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - IPC_SAP.h \ - IPC_SAP.i \ - SOCK.i \ - SOCK_IO.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Synch_Options.h \ - Synch_Options.i \ - Name_Request_Reply.h \ - Naming_Context.h \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - DLL.h \ - Service_Object.i \ - Hash_Map_Manager_T.h \ - Functor.h \ - Functor.i \ - Functor_T.h \ - Functor_T.i \ - Functor_T.cpp \ - Hash_Map_Manager_T.i \ - Hash_Map_Manager_T.cpp \ - Local_Name_Space_T.cpp \ - RW_Process_Mutex.h \ - File_Lock.h \ - File_Lock.inl \ - RW_Process_Mutex.inl - -.obj/Name_Proxy.o .obj/Name_Proxy.so .shobj/Name_Proxy.o .shobj/Name_Proxy.so: Name_Proxy.cpp Name_Proxy.h \ - pre.h \ - INET_Addr.h \ - Sock_Connect.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS.h \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Sock_Connect.i \ - Addr.h Addr.i \ - INET_Addr.i \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - IPC_SAP.h \ - Flag_Manip.h \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i ACE.h \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - ACE.i SOCK_IO.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Node.h Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Malloc_Base.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.h \ - SStringfwd.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Synch_Options.h \ - Synch_Options.i \ - Name_Request_Reply.h + ACE.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Local_Name_Space.h \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + Local_Name_Space_T.h \ + Name_Space.h \ + Name_Proxy.h \ + INET_Addr.h \ + Addr.h \ + SOCK_Connector.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + IPC_SAP.h \ + IPC_SAP.i \ + SOCK.i \ + SOCK_IO.i \ + SOCK_Stream.i \ + SOCK_Connector.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Synch_Options.h \ + Name_Request_Reply.h \ + Naming_Context.h \ + Containers.h \ + Containers_T.h \ + Array_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Containers_T.cpp \ + Containers_T.i \ + Service_Object.h \ + Shared_Object.h \ + DLL.h \ + Hash_Map_Manager_T.h \ + Functor.h \ + Functor_T.h \ + Functor_T.cpp \ + Functor_T.i \ + Hash_Map_Manager_T.cpp \ + Hash_Map_Manager_T.i \ + Local_Name_Space_T.cpp \ + RW_Process_Mutex.h \ + File_Lock.h + +.obj/Name_Proxy.o .obj/Name_Proxy.so .shobj/Name_Proxy.o .shobj/Name_Proxy.so: Name_Proxy.cpp \ + Name_Proxy.h \ + pre.h \ + INET_Addr.h \ + Sock_Connect.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS.h \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Sock_Connect.i \ + Addr.h \ + SOCK_Connector.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + IPC_SAP.h \ + Flag_Manip.h \ + Flag_Manip.i \ + IPC_SAP.i \ + SOCK.i \ + ACE.h \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + ACE.i \ + SOCK_IO.i \ + SOCK_Stream.i \ + SOCK_Connector.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Node.h \ + Node.cpp \ + Unbounded_Queue.cpp \ + Malloc_Base.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Queue.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + SString.h \ + SStringfwd.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Synch_Options.h \ + Name_Request_Reply.h .obj/Name_Request_Reply.o .obj/Name_Request_Reply.so .shobj/Name_Request_Reply.o .shobj/Name_Request_Reply.so: Name_Request_Reply.cpp \ - Name_Request_Reply.h \ - pre.h \ - Basic_Types.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Basic_Types.i \ - Log_Msg.h \ - Global_Macros.h \ - OS_Export.h \ - Default_Constants.h \ - Log_Priority.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl - -.obj/Name_Space.o .obj/Name_Space.so .shobj/Name_Space.o .shobj/Name_Space.so: Name_Space.cpp Name_Space.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SString.h \ - SStringfwd.h \ - Basic_Types.h \ - Basic_Types.i \ - String_Base.h \ - String_Base_Const.h \ - Global_Macros.h \ - OS_Export.h \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - String_Base.i \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - Name_Proxy.h \ - INET_Addr.h \ - Addr.h Addr.i \ - INET_Addr.i \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - IPC_SAP.h \ - IPC_SAP.i \ - SOCK.i \ - SOCK_IO.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Synch_Options.h \ - Synch_Options.i \ - Name_Request_Reply.h + Name_Request_Reply.h \ + pre.h \ + Basic_Types.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + Log_Msg.h \ + Global_Macros.h \ + OS_Export.h \ + Default_Constants.h \ + Log_Priority.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + OS_Log_Msg_Attributes.h + +.obj/Name_Space.o .obj/Name_Space.so .shobj/Name_Space.o .shobj/Name_Space.so: Name_Space.cpp \ + Name_Space.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SString.h \ + SStringfwd.h \ + Basic_Types.h \ + String_Base.h \ + String_Base_Const.h \ + Global_Macros.h \ + OS_Export.h \ + OS_String.h \ + OS_Memory.h \ + OS_Errno.h \ + String_Base.cpp \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + Name_Proxy.h \ + INET_Addr.h \ + Addr.h \ + SOCK_Connector.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + IPC_SAP.h \ + IPC_SAP.i \ + SOCK.i \ + SOCK_IO.i \ + SOCK_Stream.i \ + SOCK_Connector.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Synch_Options.h \ + Name_Request_Reply.h .obj/Naming_Context.o .obj/Naming_Context.so .shobj/Naming_Context.o .shobj/Naming_Context.so: Naming_Context.cpp \ - Get_Opt.h pre.h \ - SStringfwd.h \ - Basic_Types.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - ACE_export.h \ - Basic_Types.i \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Node.h Node.cpp \ - Array_Base.h \ - Global_Macros.h \ - OS_Export.h \ - OS.h \ - OS_Dirent.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Malloc_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Get_Opt.i \ - Naming_Context.h \ - SString.h \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Name_Proxy.h \ - INET_Addr.h \ - Addr.h Addr.i \ - INET_Addr.i \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - IPC_SAP.h \ - IPC_SAP.i \ - SOCK.i \ - SOCK_IO.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Service_Config.h \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Synch_Options.h \ - Synch_Options.i \ - Name_Request_Reply.h \ - Name_Space.h \ - Remote_Name_Space.h \ - Local_Name_Space_T.h \ - Local_Name_Space.h \ - Hash_Map_Manager_T.h \ - Functor.h \ - Functor.i \ - Functor_T.h \ - Functor_T.i \ - Functor_T.cpp \ - Hash_Map_Manager_T.i \ - Hash_Map_Manager_T.cpp \ - Local_Name_Space_T.cpp \ - Registry_Name_Space.h \ - RW_Process_Mutex.h \ - File_Lock.h \ - File_Lock.inl \ - RW_Process_Mutex.inl + Get_Opt.h \ + pre.h \ + SStringfwd.h \ + Basic_Types.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + ACE_export.h \ + Containers.h \ + Containers_T.h \ + Node.h \ + Node.cpp \ + Array_Base.h \ + Global_Macros.h \ + OS_Export.h \ + OS.h \ + OS_Dirent.h \ + OS_Errno.h \ + OS_String.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Malloc_Base.h \ + Array_Base.cpp \ + Array_Base.inl \ + Unbounded_Set.h \ + Unbounded_Set.cpp \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Unbounded_Set.inl \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + Containers_T.cpp \ + Containers_T.i \ + Naming_Context.h \ + SString.h \ + String_Base.h \ + String_Base_Const.h \ + String_Base.cpp \ + ACE.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + Service_Object.h \ + Shared_Object.h \ + Svc_Conf_Tokens.h \ + DLL.h \ + Name_Proxy.h \ + INET_Addr.h \ + Addr.h \ + SOCK_Connector.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + IPC_SAP.h \ + IPC_SAP.i \ + SOCK.i \ + SOCK_IO.i \ + SOCK_Stream.i \ + SOCK_Connector.i \ + Service_Config.h \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Synch_Options.h \ + Name_Request_Reply.h \ + Name_Space.h \ + Remote_Name_Space.h \ + Local_Name_Space_T.h \ + Local_Name_Space.h \ + Hash_Map_Manager_T.h \ + Functor.h \ + Functor_T.h \ + Functor_T.cpp \ + Functor_T.i \ + Hash_Map_Manager_T.cpp \ + Hash_Map_Manager_T.i \ + Local_Name_Space_T.cpp \ + Registry_Name_Space.h \ + RW_Process_Mutex.h \ + File_Lock.h .obj/Registry_Name_Space.o .obj/Registry_Name_Space.so .shobj/Registry_Name_Space.o .shobj/Registry_Name_Space.so: Registry_Name_Space.cpp \ - Registry_Name_Space.h \ - pre.h OS.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - OS_Dirent.h \ - OS_Export.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Dirent.inl \ - OS_String.h \ - Basic_Types.h \ - ACE_export.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Memory.h \ - OS_Memory.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i + Registry_Name_Space.h \ + pre.h \ + OS.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + OS_Dirent.h \ + OS_Export.h \ + OS_Errno.h \ + OS_String.h \ + Basic_Types.h \ + ACE_export.h \ + OS_Memory.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Global_Macros.h \ + Min_Max.h \ + streams.h \ + Trace.h .obj/Remote_Name_Space.o .obj/Remote_Name_Space.so .shobj/Remote_Name_Space.o .shobj/Remote_Name_Space.so: Remote_Name_Space.cpp \ - Remote_Name_Space.h \ - pre.h \ - ACE_export.h \ - config-all.h \ - config.h \ - config-linux.h \ - config-linux-common.h \ - config-g++-common.h \ - post.h \ - ace_wchar.h \ - ace_wchar.inl \ - SString.h \ - SStringfwd.h \ - Basic_Types.h \ - Basic_Types.i \ - String_Base.h \ - String_Base_Const.h \ - Global_Macros.h \ - OS_Export.h \ - OS_String.h \ - OS_String.inl \ - OS_Memory.h \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Memory.inl \ - String_Base.i \ - Malloc_Base.h \ - OS.h \ - OS_Dirent.h \ - OS_Dirent.inl \ - OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - String_Base.cpp \ - ACE.h \ - Flag_Manip.h \ - Flag_Manip.i \ - Handle_Ops.h \ - Handle_Ops.i \ - Lib_Find.h \ - Lib_Find.i \ - Init_ACE.h \ - Init_ACE.i \ - Sock_Connect.h \ - Sock_Connect.i \ - ACE.i Malloc.h \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc.i \ - Malloc_T.h \ - Synch.h Synch.i \ - Synch_T.h \ - Synch_T.i \ - Thread.h \ - Thread_Adapter.h \ - Base_Thread_Adapter.h \ - Base_Thread_Adapter.inl \ - Thread_Adapter.inl \ - Thread.i \ - Synch_T.cpp \ - Malloc_Allocator.h \ - Malloc_Allocator.i \ - Free_List.h \ - Free_List.i \ - Free_List.cpp \ - Malloc_T.i \ - Malloc_T.cpp \ - Memory_Pool.h \ - Event_Handler.h \ - Event_Handler.i \ - Signal.h \ - Signal.i \ - Mem_Map.h \ - Mem_Map.i \ - SV_Semaphore_Complex.h \ - SV_Semaphore_Simple.h \ - SV_Semaphore_Simple.i \ - SV_Semaphore_Complex.i \ - Unbounded_Set.h \ - Node.h Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - SString.i \ - Name_Proxy.h \ - INET_Addr.h \ - Addr.h Addr.i \ - INET_Addr.i \ - SOCK_Connector.h \ - SOCK_Stream.h \ - SOCK_IO.h \ - SOCK.h \ - IPC_SAP.h \ - IPC_SAP.i \ - SOCK.i \ - SOCK_IO.i \ - SOCK_Stream.i \ - SOCK_Connector.i \ - Service_Config.h \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - XML_Svc_Conf.h \ - Service_Config.i \ - Reactor.h \ - Handle_Set.h \ - Handle_Set.i \ - Timer_Queue.h \ - Timer_Queue_T.h \ - Test_and_Set.h \ - Test_and_Set.i \ - Test_and_Set.cpp \ - Timer_Queue_T.i \ - Timer_Queue_T.cpp \ - Reactor.i \ - Reactor_Impl.h \ - Svc_Conf_Tokens.h \ - Synch_Options.h \ - Synch_Options.i \ - Name_Request_Reply.h \ - Name_Space.h + Remote_Name_Space.h \ + pre.h \ + ACE_export.h \ + config-all.h \ + config.h \ + config-sunos5.7.h \ + config-sunos5.6.h \ + config-sunos5.5.h \ + config-g++-common.h \ + post.h \ + ace_wchar.h \ + ace_wchar.inl \ + SString.h \ + SStringfwd.h \ + Basic_Types.h \ + String_Base.h \ + String_Base_Const.h \ + Global_Macros.h \ + OS_Export.h \ + OS_String.h \ + OS_Memory.h \ + OS_Errno.h \ + String_Base.cpp \ + ACE.h \ + OS.h \ + OS_Dirent.h \ + OS_TLI.h \ + Time_Value.h \ + Default_Constants.h \ + Min_Max.h \ + streams.h \ + Trace.h \ + Flag_Manip.h \ + Flag_Manip.i \ + Handle_Ops.h \ + Handle_Ops.i \ + Lib_Find.h \ + Lib_Find.i \ + Init_ACE.h \ + Init_ACE.i \ + Sock_Connect.h \ + Sock_Connect.i \ + ACE.i \ + Malloc.h \ + Log_Msg.h \ + Log_Priority.h \ + OS_Log_Msg_Attributes.h \ + Malloc_T.h \ + Synch.h \ + Synch_T.h \ + Synch_T.cpp \ + Thread.h \ + Thread_Adapter.h \ + Base_Thread_Adapter.h \ + Synch_T.i \ + Malloc_Allocator.h \ + Malloc_Base.h \ + Free_List.h \ + Free_List.cpp \ + Free_List.i \ + Malloc_T.cpp \ + Malloc_T.i \ + Memory_Pool.h \ + Event_Handler.h \ + Atomic_Op.h \ + Atomic_Op_T.h \ + Atomic_Op_T.cpp \ + Atomic_Op_T.i \ + Signal.h \ + Mem_Map.h \ + SV_Semaphore_Complex.h \ + SV_Semaphore_Simple.h \ + SV_Semaphore_Simple.i \ + SV_Semaphore_Complex.i \ + Unbounded_Set.h \ + Node.h \ + Node.cpp \ + Unbounded_Set.cpp \ + Unbounded_Set.inl \ + Auto_Ptr.h \ + Auto_Ptr.cpp \ + Auto_Ptr.i \ + String_Base.i \ + Name_Proxy.h \ + INET_Addr.h \ + Addr.h \ + SOCK_Connector.h \ + SOCK_Stream.h \ + SOCK_IO.h \ + SOCK.h \ + IPC_SAP.h \ + IPC_SAP.i \ + SOCK.i \ + SOCK_IO.i \ + SOCK_Stream.i \ + SOCK_Connector.i \ + Service_Config.h \ + Unbounded_Queue.h \ + Unbounded_Queue.cpp \ + Unbounded_Queue.inl \ + XML_Svc_Conf.h \ + Reactor.h \ + Handle_Set.h \ + Timer_Queue.h \ + Timer_Queue_T.h \ + Timer_Queue_T.cpp \ + Reactor_Timer_Interface.h \ + Timer_Queue_T.i \ + Svc_Conf_Tokens.h \ + Synch_Options.h \ + Name_Request_Reply.h \ + Name_Space.h # IF YOU PUT ANYTHING HERE IT WILL GO AWAY @@ -4486,14 +4486,16 @@ ACE_OS::event_timedwait (ACE_event_t *event, { event->waiting_threads_++; + ACE_Time_Value absolute_timeout = *timeout; + // cond_timewait() expects absolute time, check // <use_absolute_time> flag. - if (use_absolute_time == 0 && timeout != 0) - *timeout += ACE_OS::gettimeofday (); + if (use_absolute_time == 0) + absolute_timeout += ACE_OS::gettimeofday (); if (ACE_OS::cond_timedwait (&event->condition_, &event->lock_, - timeout) != 0) + &absolute_timeout) != 0) { result = -1; error = errno; diff --git a/ace/Proactor.cpp b/ace/Proactor.cpp index 85ea994f9b0..cd708199606 100644 --- a/ace/Proactor.cpp +++ b/ace/Proactor.cpp @@ -164,13 +164,42 @@ ACE_Proactor_Handle_Timeout_Upcall::ACE_Proactor_Handle_Timeout_Upcall (void) } int -ACE_Proactor_Handle_Timeout_Upcall::timeout (TIMER_QUEUE &timer_queue, +ACE_Proactor_Handle_Timeout_Upcall::registration (TIMER_QUEUE &, + ACE_Handler *, + const void *) +{ + return 0; +} + +int +ACE_Proactor_Handle_Timeout_Upcall::preinvoke (TIMER_QUEUE &, + ACE_Handler *, + const void *, + int, + const ACE_Time_Value &, + const void *&) +{ + return 0; +} + +int +ACE_Proactor_Handle_Timeout_Upcall::postinvoke (TIMER_QUEUE &, + ACE_Handler *, + const void *, + int, + const ACE_Time_Value &, + const void *) +{ + return 0; +} + +int +ACE_Proactor_Handle_Timeout_Upcall::timeout (TIMER_QUEUE &, ACE_Handler *handler, const void *act, + int, const ACE_Time_Value &time) { - ACE_UNUSED_ARG (timer_queue); - if (this->proactor_ == 0) ACE_ERROR_RETURN ((LM_ERROR, ACE_LIB_TEXT ("(%t) No Proactor set in ACE_Proactor_Handle_Timeout_Upcall,") @@ -202,10 +231,12 @@ ACE_Proactor_Handle_Timeout_Upcall::timeout (TIMER_QUEUE &timer_queue, int ACE_Proactor_Handle_Timeout_Upcall::cancellation (TIMER_QUEUE &timer_queue, - ACE_Handler *handler) + ACE_Handler *handler, + int dont_call_handle_close) { ACE_UNUSED_ARG (timer_queue); ACE_UNUSED_ARG (handler); + ACE_UNUSED_ARG (dont_call_handle_close); // Do nothing return 0; diff --git a/ace/Proactor.h b/ace/Proactor.h index 53ddb9d1d39..53414a70074 100644 --- a/ace/Proactor.h +++ b/ace/Proactor.h @@ -66,15 +66,38 @@ public: /// Constructor. ACE_Proactor_Handle_Timeout_Upcall (void); + /// This method is called when a timer is registered. + int registration (TIMER_QUEUE &timer_queue, + ACE_Handler *handler, + const void *arg); + + /// This method is called before the timer expires. + int preinvoke (TIMER_QUEUE &timer_queue, + ACE_Handler *handler, + const void *arg, + int recurring_timer, + const ACE_Time_Value &cur_time, + const void *&upcall_act); + /// This method is called when the timer expires. int timeout (TIMER_QUEUE &timer_queue, - ACE_Handler *handler, - const void *arg, - const ACE_Time_Value &cur_time); + ACE_Handler *handler, + const void *arg, + int recurring_timer, + const ACE_Time_Value &cur_time); + + /// This method is called after the timer expires. + int postinvoke (TIMER_QUEUE &timer_queue, + ACE_Handler *handler, + const void *arg, + int recurring_timer, + const ACE_Time_Value &cur_time, + const void *upcall_act); /// This method is called when the timer is canceled. int cancellation (TIMER_QUEUE &timer_queue, - ACE_Handler *handler); + ACE_Handler *handler, + int dont_call_handle_close); /// This method is called when the timer queue is destroyed and the /// timer is still contained in it. @@ -270,7 +293,7 @@ public: /// This method adds the <handle> to the I/O completion port. This /// function is a no-op function for Unix systems and returns 0; virtual int register_handle (ACE_HANDLE handle, - const void *completion_key); + const void *completion_key); // = Timer management. /** @@ -285,12 +308,12 @@ public: * failure (which is guaranteed never to be a valid <timer_id>). */ virtual long schedule_timer (ACE_Handler &handler, - const void *act, - const ACE_Time_Value &time); + const void *act, + const ACE_Time_Value &time); virtual long schedule_repeating_timer (ACE_Handler &handler, - const void *act, - const ACE_Time_Value &interval); + const void *act, + const ACE_Time_Value &interval); // Same as above except <interval> it is used to reschedule the // <handler> automatically. @@ -298,14 +321,14 @@ public: /// This combines the above two methods into one. Mostly for backward /// compatibility. virtual long schedule_timer (ACE_Handler &handler, - const void *act, - const ACE_Time_Value &time, - const ACE_Time_Value &interval); + const void *act, + const ACE_Time_Value &time, + const ACE_Time_Value &interval); /// Cancel all timers associated with this <handler>. Returns number /// of timers cancelled. virtual int cancel_timer (ACE_Handler &handler, - int dont_call_handle_close = 1); + int dont_call_handle_close = 1); /** * Cancel the single <ACE_Handler> that matches the <timer_id> value @@ -317,8 +340,8 @@ public: * wasn't found. */ virtual int cancel_timer (long timer_id, - const void **act = 0, - int dont_call_handle_close = 1); + const void **act = 0, + int dont_call_handle_close = 1); /** * Dispatch a single set of events, waiting up to a specified time limit @@ -616,7 +639,7 @@ class ACE_Export ACE_Proactor public: class Timer_Queue {}; ACE_Proactor (size_t /* number_of_threads */ = 0, - Timer_Queue * /* tq */ = 0) {} + Timer_Queue * /* tq */ = 0) {} virtual int handle_events (void) { return -1; } virtual int handle_events (ACE_Time_Value &) { return -1; } diff --git a/ace/Reactor.h b/ace/Reactor.h index d7f91a6df46..c2de4c54ca9 100644 --- a/ace/Reactor.h +++ b/ace/Reactor.h @@ -29,6 +29,9 @@ class ACE_Reactor_Impl; // declaration will not work #include "ace/Timer_Queue.h" +// Contains the timer related interface for the Reactor. +#include "ace/Reactor_Timer_Interface.h" + // Event_Handler.h contains the definition of ACE_Reactor_Mask #include "ace/Event_Handler.h" @@ -44,7 +47,7 @@ class ACE_Reactor_Impl; * its delegation/implementation class, e.g., * <ACE_Select_Reactor> or <ACE_WFMO_Reactor>. */ -class ACE_Export ACE_Reactor +class ACE_Export ACE_Reactor : public ACE_Reactor_Timer_Interface { public: /// Operations on the "ready" mask and the "dispatch" mask. @@ -295,56 +298,98 @@ public: virtual int handle_events (ACE_Time_Value &max_wait_time); virtual int alertable_handle_events (ACE_Time_Value &max_wait_time); - // = Register and remove Handlers. + // = Register and remove handlers. - /// Register <event_handler> with <mask>. The I/O handle will always - /// come from <get_handle> on the <event_handler>. + /** + * Register handler for I/O events. + * + * A handler can be associated with multiple handles. A handle + * cannot be associated with multiple handlers. + * + * The handle will come from ACE_Event_Handler::get_handle(). + * + * Reactor will call ACE_Event_Handler::add_reference() for a new + * handler/handle pair. + * + * If this handler/handle pair has already been registered, any new + * masks specified will be added. In this case, + * ACE_Event_Handler::add_reference() will not be called. + * + * If the registered handler is currently suspended, it will remain + * suspended. When the handler is resumed, it will have the + * existing masks plus any masks added through this call. Handlers + * do not have partial suspensions. + */ virtual int register_handler (ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask); - /// Register <event_handler> with <mask>. The I/O handle is provided - /// through the <io_handle> parameter. + /** + * Register handler for I/O events. + * + * Same as register_handler(ACE_Event_Handler*,ACE_Reactor_Mask), + * except handle is explicitly specified. + */ virtual int register_handler (ACE_HANDLE io_handle, ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask); #if defined (ACE_WIN32) + /** + * Register handler for OS events. + * * Register an <event_handler> that will be notified when - * <event_handle> is signaled. Since no event mask is passed - * through this interface, it is assumed that the <event_handle> - * being passed in is an event handle and not an I/O handle. + * <event_handle> is signaled. * - * Originally this interface was available for all platforms, but - * because ACE_HANDLE is an int on non-Win32 platforms, compilers - * are not able to tell the difference between + * Reactor will call ACE_Event_Handler::add_reference() for a new + * handler/handle pair. + * + * This interface is only available Win32 platforms because + * ACE_HANDLE is an int on non-Win32 platforms and compilers are not + * able to tell the difference between * register_handler(ACE_Event_Handler*,ACE_Reactor_Mask) and - * register_handler(ACE_Event_Handler*,ACE_HANDLE). Therefore, we - * have restricted this method to Win32 only. + * register_handler(ACE_Event_Handler*,ACE_HANDLE). */ virtual int register_handler (ACE_Event_Handler *event_handler, ACE_HANDLE event_handle = ACE_INVALID_HANDLE); + #endif /* ACE_WIN32 */ /** - * Register an <event_handler> that will be notified when - * <event_handle> is signaled. <mask> specifies the network events - * that the <event_handler> is interested in. + * Register handler for I/O events. + * + * Similar to + * register_handler(ACE_HANDLE,ACE_Event_Handler*,ACE_Reactor_Mask), + * except that the user gets to specify the event handle that will + * be used for this registration. This only applies to Reactors + * that use event handles for I/O registrations. */ virtual int register_handler (ACE_HANDLE event_handle, ACE_HANDLE io_handle, ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask); - /// Register <event_handler> with all the <handles> in the <Handle_Set>. + /** + * Register handler for multiple I/O events. + * + * Shorthand for calling + * register_handler(ACE_HANDLE,ACE_Event_Handler*,ACE_Reactor_Mask), + * multiple times for the same <event_handler> and <masks> but + * different <handles>. + */ virtual int register_handler (const ACE_Handle_Set &handles, ACE_Event_Handler *event_handler, - ACE_Reactor_Mask mask); + ACE_Reactor_Mask masks); /** + * Register handler for signals. + * * Register <new_sh> to handle the signal <signum> using the * <new_disp>. Returns the <old_sh> that was previously registered * (if any), along with the <old_disp> of the signal handler. + * + * Reactor will call ACE_Event_Handler::add_reference() on <new_sh> + * and ACE_Event_Handler::remove_reference() on <old_sh>. */ virtual int register_handler (int signum, ACE_Event_Handler *new_sh, @@ -352,78 +397,129 @@ public: ACE_Event_Handler **old_sh = 0, ACE_Sig_Action *old_disp = 0); - /// Registers <new_sh> to handle a set of signals <sigset> using the - /// <new_disp>. - virtual int register_handler (const ACE_Sig_Set &sigset, - ACE_Event_Handler *new_sh, - ACE_Sig_Action *new_disp = 0); - /** - * Removes <event_handler>. Note that the I/O handle will be - * obtained using <get_handle> method of <event_handler> . If - * <mask> includes <ACE_Event_Handler::DONT_CALL> then the - * <handle_close> method of the <event_handler> is not invoked. + * Register handler for multiple signals. + * + * Shorthand for calling + * register_handler(int,ACE_Event_Handler*,ACE_Sig_Action*,ACE_Event_Handler**,ACE_Sig_Action*) + * multiple times for the same <event_handler> and <sig_action> but + * different <signals>. */ - virtual int remove_handler (ACE_Event_Handler *event_handler, - ACE_Reactor_Mask mask); + virtual int register_handler (const ACE_Sig_Set &signals, + ACE_Event_Handler *event_handler, + ACE_Sig_Action *sig_action = 0); /** - * Removes the <ACE_Event_Handler> associated with <handle>. If - * <mask> includes <ACE_Event_Handler::DONT_CALL> then the - * <handle_close> method of the associated <event_handler> is not - * invoked. + * Remove <masks> from <handle> registration. + * + * For I/O handles, <masks> are removed from the Reactor. Unless + * <masks> includes <ACE_Event_Handler::DONT_CALL>, + * ACE_Event_Handler::handle_close() will be called with the <masks> + * that have been removed. If all masks have been removed, + * ACE_Event_Handler::remove_reference() will be called. + * + * For OS handles, the <handle> is removed from the Reactor. Unless + * <masks> includes <ACE_Event_Handler::DONT_CALL>, + * ACE_Event_Handler::handle_close() will be called with + * <ACE_Event_Handler::NULL_MASK>. + * ACE_Event_Handler::remove_reference() will also be called. */ virtual int remove_handler (ACE_HANDLE handle, - ACE_Reactor_Mask mask); + ACE_Reactor_Mask masks); /** - * Removes all handles in <handle_set>. If <mask> == - * <ACE_Event_Handler::DONT_CALL> then the <handle_close> method of - * the associated <event_handler>s is not invoked. + * Remove <masks> from <event_handler> registration. + * + * Same as remove_handler(ACE_HANDLE,ACE_Reactor_Mask), except + * <handle> comes from ACE_Event_Handler::get_handle(). */ - virtual int remove_handler (const ACE_Handle_Set &handle_set, - ACE_Reactor_Mask mask); + virtual int remove_handler (ACE_Event_Handler *event_handler, + ACE_Reactor_Mask masks); /** + * Remove <masks> from multiple <handle> registrations. + * + * Shorthand for calling remove_handler(ACE_HANDLE,ACE_Reactor_Mask) + * multiple times for the same <masks> but different <handles>. + */ + virtual int remove_handler (const ACE_Handle_Set &handles, + ACE_Reactor_Mask masks); + + /** + * Remove signal handler registration. + * * Remove the ACE_Event_Handler currently associated with <signum>. * Install the new disposition (if given) and return the previous - * disposition (if desired by the caller). Returns 0 on success and - * -1 if <signum> is invalid. + * disposition (if desired by the caller). + * + * ACE_Event_Handler::handle_close() will be called with + * <ACE_Event_Handler::SIGNAL_MASK>. + * ACE_Event_Handler::remove_reference() will also be called. */ virtual int remove_handler (int signum, ACE_Sig_Action *new_disp, ACE_Sig_Action *old_disp = 0, int sigkey = -1); - /// Calls <remove_handler> for every signal in <sigset>. + /** + * Remove multiple signal handler registrations. + * + * Shorthand for calling + * remove_handler(int,ACE_Sig_Action*,ACE_Sig_Action*,int) multiple + * times for every signal in <sigset>. + */ virtual int remove_handler (const ACE_Sig_Set &sigset); // = Suspend and resume Handlers. - /// Suspend <event_handler> temporarily. Use - /// <ACE_Event_Handler::get_handle> to get the handle. - virtual int suspend_handler (ACE_Event_Handler *event_handler); - - /// Suspend <handle> temporarily. + /** + * Suspend <handle> temporarily. + */ virtual int suspend_handler (ACE_HANDLE handle); - /// Suspend all <handles> in handle set temporarily. + /** + * Suspend <event_handler> temporarily. + * + * Handle is obtained from ACE_Event_Handler::get_handle(). + */ + virtual int suspend_handler (ACE_Event_Handler *event_handler); + + /** + * Suspend <handles> temporarily. + * + * Shorthand for calling suspend_handler(ACE_HANDLE) with multiple + * <handles>. + */ virtual int suspend_handler (const ACE_Handle_Set &handles); - /// Suspend all <handles> temporarily. + /** + * Suspend all registered handles temporarily. + */ virtual int suspend_handlers (void); - /// Resume <event_handler>. Use <ACE_Event_Handler::get_handle> to - /// get the handle. - virtual int resume_handler (ACE_Event_Handler *event_handler); - - /// Resume <handle>. + /** + * Resume <handle>. + */ virtual int resume_handler (ACE_HANDLE handle); - /// Resume all <handles> in handle set. + /** + * Resume <event_handler>. + * + * Handle is obtained from ACE_Event_Handler::get_handle(). + */ + virtual int resume_handler (ACE_Event_Handler *event_handler); + + /** + * Resume <handles>. + * + * Shorthand for calling resume_handler(ACE_HANDLE) with multiple + * <handles>. + */ virtual int resume_handler (const ACE_Handle_Set &handles); - /// Resume all <handles>. + /** + * Resume all registered handles. + */ virtual int resume_handlers (void); /// Does the reactor allow the application to resume the handle on @@ -435,12 +531,19 @@ public: // = Timer management. /** - * Schedule an ACE_Event_Handler that will expire after an amount + * Schedule a timer event. + * + * Schedule a timer event that will expire after an <delay> amount * of time. The return value of this method, a timer_id value, - * uniquely identifies the event_handler in the ACE_Reactor's - * internal list of timers. - * This timer_id value can be used to cancel the timer - * with the cancel_timer() call. + * uniquely identifies the <event_handler> in the ACE_Reactor's + * internal list of timers. This timer_id value can be used to + * cancel the timer with the cancel_timer() call. + * + * Reactor will call ACE_Event_Handler::add_reference() on the + * handler. After the timeout occurs and + * ACE_Event_Handler::handle_timeout() has completed, the handler + * will be implicitly removed from the Reactor and + * ACE_Event_Handler::remove_reference() will be called. * * @see cancel_timer() * @see reset_timer_interval() @@ -457,33 +560,48 @@ public: const ACE_Time_Value &interval = ACE_Time_Value::zero); /** + * Reset recurring timer interval. + * * Resets the interval of the timer represented by <timer_id> to * <interval>, which is specified in relative time to the current * <gettimeofday>. If <interval> is equal to * <ACE_Time_Value::zero>, the timer will become a non-rescheduling * timer. Returns 0 if successful, -1 if not. + * + * This change will not take effect until the next timeout. */ virtual int reset_timer_interval (long timer_id, const ACE_Time_Value &interval); - /// Cancel all <Event_Handler>s that match the address of - /// <event_handler>. Returns number of handlers cancelled. - virtual int cancel_timer (ACE_Event_Handler *event_handler, - int dont_call_handle_close = 1); - /** - * Cancel the single <Event_Handler> that matches the <timer_id> - * value, which was returned from the schedule method. If arg is - * non-NULL then it will be set to point to the ``magic cookie'' - * argument passed in when the Event_Handler was registered. This - * makes it possible to free up the memory and avoid memory leaks. - * Returns 1 if cancellation succeeded and 0 if the <timer_id> - * wasn't found. + * Cancel timer. + * + * Cancel timer associated with <timer_id> that was returned from + * the schedule_timer() method. If arg is non-NULL then it will be + * set to point to the ``magic cookie'' argument passed in when the + * handler was registered. This makes it possible to free up the + * memory and avoid memory leaks. Returns 1 if cancellation + * succeeded and 0 if the <timer_id> wasn't found. + * + * ACE_Event_Handler::handle_close() will be called with + * <ACE_Event_Handler::TIMER_MASK>. + * ACE_Event_Handler::remove_reference() will also be called. */ virtual int cancel_timer (long timer_id, const void **arg = 0, int dont_call_handle_close = 1); + /** + * Cancel all timers associated with event handler. + * + * Shorthand for calling cancel_timer(long,const void **,int) + * multiple times for all timer associated with <event_handler>. + * + * Returns number of handlers cancelled. + */ + virtual int cancel_timer (ACE_Event_Handler *event_handler, + int dont_call_handle_close = 1); + // = High-level Event_Handler scheduling operations /// Add <masks_to_be_added> to the <event_handler>'s entry. @@ -491,9 +609,9 @@ public: /// Note that this call does not cause the Reactor to re-examine /// its set of handlers - the new masks will be noticed the next /// time the Reactor waits for activity. If there is no other - /// activity expected, or you need immediate re-examination of - /// the wait masks, either call ACE_Reactor::notify after this - /// call, or use ACE_Reactor::register_handler instead. + /// activity expected, or you need immediate re-examination of the + /// wait masks, either call ACE_Reactor::notify after this call, or + /// use ACE_Reactor::register_handler instead. virtual int schedule_wakeup (ACE_Event_Handler *event_handler, ACE_Reactor_Mask masks_to_be_added); @@ -503,8 +621,8 @@ public: /// its set of handlers - the new masks will be noticed the next /// time the Reactor waits for activity. If there is no other /// activity expected, or you need immediate re-examination of - /// the wait masks, either call ACE_Reactor::notify after this - /// call, or use ACE_Reactor::register_handler instead. + /// the wait masks, either call ACE_Reactor::notify after this call, + /// or use ACE_Reactor::register_handler instead. virtual int schedule_wakeup (ACE_HANDLE handle, ACE_Reactor_Mask masks_to_be_added); @@ -531,16 +649,35 @@ public: // = Notification methods. /** - * Notify <event_handler> of <mask> event. The <ACE_Time_Value> - * indicates how long to blocking trying to notify. If <timeout> == - * 0, the caller will block until action is possible, else will wait - * until the relative time specified in <timeout> elapses). Note that - * <mask> can only be one of the pre-defined <ACE_Event_Handler> - * masks, e.g., <READ_MASK>, <WRITE_MASK>, or <EXCEPT_MASK>. + * Dispatch user specified events. + * + * Handler will be dispatched irrespective of whether it is + * registered, not registered, or suspended in the Reactor. + * + * If user specified event is successfully queued, + * ACE_Event_Handler::add_reference() will be called. After the + * notify occurs and the upcall to the handler completes, the + * handler will be implicitly removed from the Reactor and + * ACE_Event_Handler::remove_reference() will be called. No other + * upcall reference counting is done. + * + * For I/O or OS events, the upcall is invoked with an + * ACE_INVALID_HANDLE. + * + * For timer events, the upcall is invoked with a null ACT. + * + * @param event_handler: IN - Handler on which the event will be + * dispatched. + * @param masks: IN - Events to be dispatched - multiple events can + * be OR'd together. + * @param timeout: INOUT - Relative time up to which to wait for + * user specified event to be queued. If tv is 0, wait + * indefinitely. When the call returns, tv has the time remaining + * after the call completes. */ virtual int notify (ACE_Event_Handler *event_handler = 0, - ACE_Reactor_Mask mask = ACE_Event_Handler::EXCEPT_MASK, - ACE_Time_Value *tv = 0); + ACE_Reactor_Mask masks = ACE_Event_Handler::EXCEPT_MASK, + ACE_Time_Value *timeout = 0); /** * Set the maximum number of times that ACE_Reactor will @@ -564,10 +701,14 @@ public: /** * Purge any notifications pending in this reactor for the specified - * <ACE_Event_Handler> object. If <eh> == 0, all notifications for all - * handlers are removed (but not any notifications posted just to wake up - * the reactor itself). Returns the number of notifications purged. - * Returns -1 on error. + * <ACE_Event_Handler> object. If <eh> == 0, all notifications for + * all handlers are removed (but not any notifications posted just + * to wake up the reactor itself). Returns the number of + * notifications purged. Returns -1 on error. + * + * After the purging occurs, the handler will be implicitly removed + * from the Reactor and ACE_Event_Handler::remove_reference() will + * be called. */ virtual int purge_pending_notifications (ACE_Event_Handler *, ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK); @@ -575,9 +716,21 @@ public: // = Assorted helper methods. /** + * Return the Event_Handler associated with <handle>. Return 0 if + * <handle> is not registered. + * + * Reactor will call ACE_Event_Handler::add_reference() on the + * handler before returning it. + */ + virtual ACE_Event_Handler *find_handler (ACE_HANDLE handle); + + /** * Check to see if <handle> is associated with a valid Event_Handler * bound to <mask>. Return the <event_handler> associated with this * <handler> if <event_handler> != 0. + * + * Reactor will call ACE_Event_Handler::add_reference() on the + * handler before returning it if <event_handler> != 0. */ virtual int handler (ACE_HANDLE handle, ACE_Reactor_Mask mask, diff --git a/ace/Reactor.i b/ace/Reactor.i index 9324bdcfe43..82f1e37aa8d 100644 --- a/ace/Reactor.i +++ b/ace/Reactor.i @@ -51,7 +51,7 @@ ACE_Reactor::run_event_loop (ACE_Time_Value &tv) if (r == 0) return -1; - return r->run_reactor_event_loop + return r->run_reactor_event_loop (tv, ACE_Reactor::check_reconfiguration); } @@ -83,7 +83,7 @@ ACE_Reactor::run_alertable_event_loop (ACE_Time_Value &tv) if (r == 0) return -1; - return r->run_alertable_reactor_event_loop + return r->run_alertable_reactor_event_loop (tv, ACE_Reactor::check_reconfiguration); } @@ -544,6 +544,12 @@ ACE_Reactor::purge_pending_notifications (ACE_Event_Handler *eh, return this->implementation ()->purge_pending_notifications (eh, mask); } +ACE_INLINE ACE_Event_Handler * +ACE_Reactor::find_handler (ACE_HANDLE handle) +{ + return this->implementation ()->find_handler (handle); +} + ACE_INLINE int ACE_Reactor::handler (ACE_HANDLE handle, ACE_Reactor_Mask mask, @@ -670,6 +676,3 @@ ACE_Reactor::uses_event_associations (void) { return this->implementation ()->uses_event_associations (); } - - - diff --git a/ace/Reactor_Impl.h b/ace/Reactor_Impl.h index 5ff0d2bcfb0..06df53fcf00 100644 --- a/ace/Reactor_Impl.h +++ b/ace/Reactor_Impl.h @@ -477,6 +477,12 @@ public: ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK) = 0; /** + * Return the Event_Handler associated with <handle>. Return 0 if + * <handle> is not registered. + */ + virtual ACE_Event_Handler *find_handler (ACE_HANDLE handle) = 0; + + /** * Check to see if <handle> is associated with a valid Event_Handler * bound to <mask>. Return the <event_handler> associated with this * <handler> if <event_handler> != 0. diff --git a/ace/Reactor_Timer_Interface.h b/ace/Reactor_Timer_Interface.h new file mode 100644 index 00000000000..f94bedc0993 --- /dev/null +++ b/ace/Reactor_Timer_Interface.h @@ -0,0 +1,50 @@ +/* -*- C++ -*- */ + +//============================================================================= +/** + * @file Reactor_Timer_Interface.h + * + * $Id$ + * + * @author Irfan Pyarali <irfan@oomworks.com> + */ +//============================================================================= + +#ifndef ACE_REACTOR_TIMER_INTERFACE_H +#define ACE_REACTOR_TIMER_INTERFACE_H +#include "ace/pre.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +class ACE_Event_Handler; + +/** + * @class ACE_Reactor_Timer_Interface + * + * @brief Interface for timer related methods on the Reactor. + */ +class ACE_Export ACE_Reactor_Timer_Interface +{ +public: + + virtual long schedule_timer (ACE_Event_Handler *event_handler, + const void *arg, + const ACE_Time_Value &delay, + const ACE_Time_Value &interval = ACE_Time_Value::zero) = 0; + + virtual int reset_timer_interval (long timer_id, + const ACE_Time_Value &interval) = 0; + + virtual int cancel_timer (long timer_id, + const void **arg = 0, + int dont_call_handle_close = 1) = 0; + + virtual int cancel_timer (ACE_Event_Handler *event_handler, + int dont_call_handle_close = 1) = 0; + +}; + +#include "ace/post.h" +#endif /* ACE_REACTOR_TIMER_INTERFACE_H */ diff --git a/ace/Select_Reactor_Base.cpp b/ace/Select_Reactor_Base.cpp index f0e71bcffc3..44232c79647 100644 --- a/ace/Select_Reactor_Base.cpp +++ b/ace/Select_Reactor_Base.cpp @@ -123,10 +123,10 @@ int ACE_Select_Reactor_Handler_Repository::unbind_all (void) { // Unbind all of the <handle, ACE_Event_Handler>s. - for (int handle = 0; - handle < this->max_handlep1_; - handle++) - this->unbind (ACE_SELECT_REACTOR_HANDLE (handle), + for (int slot = 0; + slot < this->max_handlep1_; + slot++) + this->unbind (ACE_SELECT_REACTOR_HANDLE (slot), ACE_Event_Handler::ALL_EVENTS_MASK); return 0; @@ -207,25 +207,44 @@ ACE_Select_Reactor_Handler_Repository::bind (ACE_HANDLE handle, if (this->invalid_handle (handle)) return -1; + // Is this handle already in the Reactor? + int existing_handle = 0; + #if defined (ACE_WIN32) + int assigned_slot = -1; for (ssize_t i = 0; i < this->max_handlep1_; i++) { - // Found it, so let's just reuse this location. + // If handle is already registered. if (ACE_SELECT_REACTOR_HANDLE (i) == handle) { + // Cannot use a different handler for an existing handle. + if (ACE_SELECT_REACTOR_EVENT_HANDLER (this, i) != + event_handler) + return -1; + + // Remember location. assigned_slot = i; + + // Remember that this handle is already registered in the + // Reactor. + existing_handle = 1; + + // We can stop looking now. break; } - // Here's the first free slot, so let's take it. - else if (ACE_SELECT_REACTOR_HANDLE (i) == ACE_INVALID_HANDLE - && assigned_slot == -1) - assigned_slot = i; + else + // Here's the first free slot, so let's take it. + if (ACE_SELECT_REACTOR_HANDLE (i) == ACE_INVALID_HANDLE && + assigned_slot == -1) + { + assigned_slot = i; + } } if (assigned_slot > -1) - // We found a free spot, let's reuse it. + // We found a spot. { ACE_SELECT_REACTOR_HANDLE (assigned_slot) = handle; ACE_SELECT_REACTOR_EVENT_HANDLER (this, assigned_slot) = event_handler; @@ -243,11 +262,29 @@ ACE_Select_Reactor_Handler_Repository::bind (ACE_HANDLE handle, errno = ENOMEM; return -1; } + #else + + // Check if this handle is already registered. + ACE_Event_Handler *current_handler = + ACE_SELECT_REACTOR_EVENT_HANDLER (this, handle); + + if (current_handler) + { + // Cannot use a different handler for an existing handle. + if (current_handler != event_handler) + return -1; + + // Remember that this handle is already registered in the + // Reactor. + existing_handle = 1; + } + ACE_SELECT_REACTOR_EVENT_HANDLER (this, handle) = event_handler; if (this->max_handlep1_ < handle + 1) this->max_handlep1_ = handle + 1; + #endif /* ACE_WIN32 */ if (this->select_reactor_.is_suspended_i (handle)) @@ -270,15 +307,18 @@ ACE_Select_Reactor_Handler_Repository::bind (ACE_HANDLE handle, this->select_reactor_.state_changed_ = 1; } - /* - // @@NOTE: We used to do this in earlier versions of ACE+TAO. But - // this is totally wrong.. - // Clear any suspend masks for it too. - this->select_reactor_.bit_ops (handle, - mask, - this->select_reactor_.suspend_set_, - ACE_Reactor::CLR_MASK); - */ + // If new entry, call add_reference() if needed. + if (!existing_handle) + { + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + } + } return 0; } @@ -292,9 +332,9 @@ ACE_Select_Reactor_Handler_Repository::unbind (ACE_HANDLE handle, ACE_TRACE ("ACE_Select_Reactor_Handler_Repository::unbind"); size_t slot; - ACE_Event_Handler *eh = this->find (handle, &slot); + ACE_Event_Handler *event_handler = this->find (handle, &slot); - if (eh == 0) + if (event_handler == 0) return -1; // Clear out the <mask> bits in the Select_Reactor's wait_set. @@ -314,11 +354,6 @@ ACE_Select_Reactor_Handler_Repository::unbind (ACE_HANDLE handle, // keep going or if it needs to reconsult select(). this->select_reactor_.state_changed_ = 1; - // Close down the <Event_Handler> unless we've been instructed not - // to. - if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::DONT_CALL) == 0) - eh->handle_close (handle, mask); - // If there are no longer any outstanding events on this <handle> // then we can totally shut down the Event_Handler. @@ -331,14 +366,19 @@ ACE_Select_Reactor_Handler_Repository::unbind (ACE_HANDLE handle, || this->select_reactor_.suspend_set_.wr_mask_.is_set (handle) || this->select_reactor_.suspend_set_.ex_mask_.is_set (handle)); - if (!has_any_wait_mask - && !has_any_suspend_mask - && (this->find (handle, &slot) == eh)) -#if defined (ACE_WIN32) + int complete_removal = 0; + + if (!has_any_wait_mask && !has_any_suspend_mask) { - ACE_SELECT_REACTOR_HANDLE (slot) = ACE_INVALID_HANDLE; + // The handle has been completed removed. + complete_removal = 1; + ACE_SELECT_REACTOR_EVENT_HANDLER (this, slot) = 0; +#if defined (ACE_WIN32) + + ACE_SELECT_REACTOR_HANDLE (slot) = ACE_INVALID_HANDLE; + if (this->max_handlep1_ == (int) slot + 1) { // We've deleted the last entry (i.e., i + 1 == the current @@ -355,43 +395,60 @@ ACE_Select_Reactor_Handler_Repository::unbind (ACE_HANDLE handle, this->max_handlep1_ = i + 1; } - } + #else - { - ACE_SELECT_REACTOR_EVENT_HANDLER (this, handle) = 0; - if (this->max_handlep1_ == handle + 1) - { - // We've deleted the last entry, so we need to figure out - // the last valid place in the array that is worth looking - // at. - ACE_HANDLE wait_rd_max = this->select_reactor_.wait_set_.rd_mask_.max_set (); - ACE_HANDLE wait_wr_max = this->select_reactor_.wait_set_.wr_mask_.max_set (); - ACE_HANDLE wait_ex_max = this->select_reactor_.wait_set_.ex_mask_.max_set (); - - ACE_HANDLE suspend_rd_max = this->select_reactor_.suspend_set_.rd_mask_.max_set (); - ACE_HANDLE suspend_wr_max = this->select_reactor_.suspend_set_.wr_mask_.max_set (); - ACE_HANDLE suspend_ex_max = this->select_reactor_.suspend_set_.ex_mask_.max_set (); - - // Compute the maximum of six values. - this->max_handlep1_ = wait_rd_max; - if (this->max_handlep1_ < wait_wr_max) - this->max_handlep1_ = wait_wr_max; - if (this->max_handlep1_ < wait_ex_max) - this->max_handlep1_ = wait_ex_max; - - if (this->max_handlep1_ < suspend_rd_max) - this->max_handlep1_ = suspend_rd_max; - if (this->max_handlep1_ < suspend_wr_max) - this->max_handlep1_ = suspend_wr_max; - if (this->max_handlep1_ < suspend_ex_max) - this->max_handlep1_ = suspend_ex_max; - - this->max_handlep1_++; - } - } + if (this->max_handlep1_ == handle + 1) + { + // We've deleted the last entry, so we need to figure out + // the last valid place in the array that is worth looking + // at. + ACE_HANDLE wait_rd_max = this->select_reactor_.wait_set_.rd_mask_.max_set (); + ACE_HANDLE wait_wr_max = this->select_reactor_.wait_set_.wr_mask_.max_set (); + ACE_HANDLE wait_ex_max = this->select_reactor_.wait_set_.ex_mask_.max_set (); + + ACE_HANDLE suspend_rd_max = this->select_reactor_.suspend_set_.rd_mask_.max_set (); + ACE_HANDLE suspend_wr_max = this->select_reactor_.suspend_set_.wr_mask_.max_set (); + ACE_HANDLE suspend_ex_max = this->select_reactor_.suspend_set_.ex_mask_.max_set (); + + // Compute the maximum of six values. + this->max_handlep1_ = wait_rd_max; + if (this->max_handlep1_ < wait_wr_max) + this->max_handlep1_ = wait_wr_max; + if (this->max_handlep1_ < wait_ex_max) + this->max_handlep1_ = wait_ex_max; + + if (this->max_handlep1_ < suspend_rd_max) + this->max_handlep1_ = suspend_rd_max; + if (this->max_handlep1_ < suspend_wr_max) + this->max_handlep1_ = suspend_wr_max; + if (this->max_handlep1_ < suspend_ex_max) + this->max_handlep1_ = suspend_ex_max; + + this->max_handlep1_++; + } + #endif /* ACE_WIN32 */ + } + + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + // Close down the <Event_Handler> unless we've been instructed not + // to. + if (ACE_BIT_ENABLED (mask, ACE_Event_Handler::DONT_CALL) == 0) + event_handler->handle_close (handle, mask); + + // Call remove_reference() if the removal is complete and reference + // counting is needed. + if (complete_removal && + requires_reference_counting) + { + event_handler->remove_reference (); + } + return 0; } @@ -466,13 +523,13 @@ ACE_Select_Reactor_Handler_Repository::dump (void) const this->max_handlep1_, this->max_size_)); ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("["))); - ACE_Event_Handler *eh = 0; + ACE_Event_Handler *event_handler = 0; for (ACE_Select_Reactor_Handler_Repository_Iterator iter (this); - iter.next (eh) != 0; + iter.next (event_handler) != 0; iter.advance ()) - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT (" (eh = %x, eh->handle_ = %d)"), - eh, eh->get_handle ())); + ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT (" (event_handler = %x, event_handler->handle_ = %d)"), + event_handler, event_handler->get_handle ())); ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT (" ]"))); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); @@ -549,6 +606,18 @@ ACE_Select_Reactor_Notify::purge_pending_notifications (ACE_Event_Handler *eh, ACE_LIB_TEXT ("%p\n"), ACE_LIB_TEXT ("enqueue_head")), -1); + + ACE_Event_Handler *event_handler = eh; + + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->remove_reference (); + } + ++number_purged; } else @@ -696,7 +765,7 @@ ACE_Select_Reactor_Notify::close (void) } int -ACE_Select_Reactor_Notify::notify (ACE_Event_Handler *eh, +ACE_Select_Reactor_Notify::notify (ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask, ACE_Time_Value *timeout) { @@ -707,7 +776,22 @@ ACE_Select_Reactor_Notify::notify (ACE_Event_Handler *eh, if (this->select_reactor_ == 0) return 0; - ACE_Notification_Buffer buffer (eh, mask); + ACE_Event_Handler_var safe_handler; + + if (event_handler) + { + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + safe_handler = event_handler; + } + } + + ACE_Notification_Buffer buffer (event_handler, mask); #if defined (ACE_HAS_REACTOR_NOTIFICATION_QUEUE) // Artificial scope to limit the duration of the mutex. @@ -765,6 +849,9 @@ ACE_Select_Reactor_Notify::notify (ACE_Event_Handler *eh, if (n == -1) return -1; + // No failures. + safe_handler.release (); + return 0; } @@ -866,7 +953,9 @@ int ACE_Select_Reactor_Notify::dispatch_notify (ACE_Notification_Buffer &buffer) { int result = 0; + #if defined (ACE_HAS_REACTOR_NOTIFICATION_QUEUE) + // Dispatch all messages that are in the <notify_queue_>. { // We acquire the lock in a block to make sure we're not @@ -890,35 +979,8 @@ ACE_Select_Reactor_Notify::dispatch_notify (ACE_Notification_Buffer &buffer) -1); } - // If eh == 0 then another thread is unblocking the - // <ACE_Select_Reactor> to update the <ACE_Select_Reactor>'s - // internal structures. Otherwise, we need to dispatch the - // appropriate handle_* method on the <ACE_Event_Handler> - // pointer we've been passed. - if (buffer.eh_ != 0) - { +#endif /* ACE_HAS_REACTOR_NOTIFICATION_QUEUE */ - switch (buffer.mask_) - { - case ACE_Event_Handler::READ_MASK: - case ACE_Event_Handler::ACCEPT_MASK: - result = buffer.eh_->handle_input (ACE_INVALID_HANDLE); - break; - case ACE_Event_Handler::WRITE_MASK: - result = buffer.eh_->handle_output (ACE_INVALID_HANDLE); - break; - case ACE_Event_Handler::EXCEPT_MASK: - result = buffer.eh_->handle_exception (ACE_INVALID_HANDLE); - break; - default: - // Should we bail out if we get an invalid mask? - ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("invalid mask = %d\n"), buffer.mask_)); - } - if (result == -1) - buffer.eh_->handle_close (ACE_INVALID_HANDLE, - ACE_Event_Handler::EXCEPT_MASK); - } -#else // If eh == 0 then another thread is unblocking the // <ACE_Select_Reactor> to update the <ACE_Select_Reactor>'s // internal structures. Otherwise, we need to dispatch the @@ -926,23 +988,30 @@ ACE_Select_Reactor_Notify::dispatch_notify (ACE_Notification_Buffer &buffer) // pointer we've been passed. if (buffer.eh_ != 0) { + ACE_Event_Handler *event_handler = + buffer.eh_; + + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + switch (buffer.mask_) { case ACE_Event_Handler::READ_MASK: case ACE_Event_Handler::ACCEPT_MASK: - result = buffer.eh_->handle_input (ACE_INVALID_HANDLE); + result = event_handler->handle_input (ACE_INVALID_HANDLE); break; case ACE_Event_Handler::WRITE_MASK: - result = buffer.eh_->handle_output (ACE_INVALID_HANDLE); + result = event_handler->handle_output (ACE_INVALID_HANDLE); break; case ACE_Event_Handler::EXCEPT_MASK: - result = buffer.eh_->handle_exception (ACE_INVALID_HANDLE); + result = event_handler->handle_exception (ACE_INVALID_HANDLE); break; case ACE_Event_Handler::QOS_MASK: - result = buffer.eh_->handle_qos (ACE_INVALID_HANDLE); + result = event_handler->handle_qos (ACE_INVALID_HANDLE); break; case ACE_Event_Handler::GROUP_QOS_MASK: - result = buffer.eh_->handle_group_qos (ACE_INVALID_HANDLE); + result = event_handler->handle_group_qos (ACE_INVALID_HANDLE); break; default: // Should we bail out if we get an invalid mask? @@ -950,12 +1019,16 @@ ACE_Select_Reactor_Notify::dispatch_notify (ACE_Notification_Buffer &buffer) ACE_LIB_TEXT ("invalid mask = %d\n"), buffer.mask_)); } + if (result == -1) - buffer.eh_->handle_close (ACE_INVALID_HANDLE, - ACE_Event_Handler::EXCEPT_MASK); - } + event_handler->handle_close (ACE_INVALID_HANDLE, + ACE_Event_Handler::EXCEPT_MASK); -#endif /* ACE_HAS_REACTOR_NOTIFICATION_QUEUE */ + if (requires_reference_counting) + { + event_handler->remove_reference (); + } + } return 1; } diff --git a/ace/Select_Reactor_T.cpp b/ace/Select_Reactor_T.cpp index 78c3a3ada1f..18fdc9e37c3 100644 --- a/ace/Select_Reactor_T.cpp +++ b/ace/Select_Reactor_T.cpp @@ -343,6 +343,15 @@ ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::register_handler return this->register_handler_i (handles, handler, mask); } +template <class ACE_SELECT_REACTOR_TOKEN> ACE_Event_Handler * +ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::find_handler + (ACE_HANDLE handle) +{ + ACE_TRACE ("ACE_Select_Reactor_T::handler"); + ACE_MT (ACE_GUARD_RETURN (ACE_SELECT_REACTOR_TOKEN, ace_mon, this->token_, 0)); + return this->find_handler_i (handle); +} + template <class ACE_SELECT_REACTOR_TOKEN> int ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::handler (ACE_HANDLE handle, @@ -835,12 +844,28 @@ ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::notify_handle if (event_handler == 0) return; + int reference_counting_required = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + // Call add_reference() if needed. + if (reference_counting_required) + { + event_handler->add_reference (); + } + int status = (event_handler->*ptmf) (handle); if (status < 0) this->remove_handler_i (handle, mask); else if (status > 0) ready_mask.set_bit (handle); + + // Call remove_reference() if needed. + if (reference_counting_required) + { + event_handler->remove_reference (); + } } // Perform GET, CLR, SET, and ADD operations on the select() @@ -863,9 +888,42 @@ ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::mask_ops { ACE_TRACE ("ACE_Select_Reactor_T::mask_ops"); ACE_MT (ACE_GUARD_RETURN (ACE_SELECT_REACTOR_TOKEN, ace_mon, this->token_, -1)); - return this->bit_ops (handle, mask, - this->wait_set_, - ops); + + // If the handle is not suspended, then set the ops on the + // <wait_set_>, otherwise set the <suspend_set_>. + + if (this->is_suspended_i (handle)) + return this->bit_ops (handle, mask, + this->suspend_set_, + ops); + else + return this->bit_ops (handle, mask, + this->wait_set_, + ops); +} + +template <class ACE_SELECT_REACTOR_TOKEN> ACE_Event_Handler * +ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::find_handler_i + (ACE_HANDLE handle) +{ + ACE_TRACE ("ACE_Select_Reactor_T::handler_i"); + + ACE_Event_Handler *event_handler = + this->handler_rep_.find (handle); + + if (event_handler) + { + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + } + } + + return event_handler; } // Must be called with locks held. @@ -874,12 +932,13 @@ template <class ACE_SELECT_REACTOR_TOKEN> int ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::handler_i (ACE_HANDLE handle, ACE_Reactor_Mask mask, - ACE_Event_Handler **handler) + ACE_Event_Handler **eh) { ACE_TRACE ("ACE_Select_Reactor_T::handler_i"); - ACE_Event_Handler *h = this->handler_rep_.find (handle); + ACE_Event_Handler *event_handler = + this->handler_rep_.find (handle); - if (h == 0) + if (event_handler == 0) return -1; else { @@ -895,8 +954,20 @@ ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::handler_i return -1; } - if (handler != 0) - *handler = h; + if (eh != 0) + { + *eh = event_handler; + + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + } + } + return 0; } diff --git a/ace/Select_Reactor_T.h b/ace/Select_Reactor_T.h index ca51ff20d0d..292730d8677 100644 --- a/ace/Select_Reactor_T.h +++ b/ace/Select_Reactor_T.h @@ -559,6 +559,13 @@ public: virtual int owner (ACE_thread_t *); // = Miscellaneous Handler operations. + + /** + * Return the Event_Handler associated with <handle>. Return 0 if + * <handle> is not registered. + */ + virtual ACE_Event_Handler *find_handler (ACE_HANDLE handle); + /** * Check to see if <handle> is associated with a valid Event_Handler * bound to <mask>. Return the <eh> associated with this <handler> @@ -635,6 +642,9 @@ protected: virtual int resume_i (ACE_HANDLE handle); /// Implement the public <handler> method. + virtual ACE_Event_Handler *find_handler_i (ACE_HANDLE handle); + + /// Implement the public <handler> method. virtual int handler_i (ACE_HANDLE handle, ACE_Reactor_Mask, ACE_Event_Handler ** = 0); diff --git a/ace/TP_Reactor.cpp b/ace/TP_Reactor.cpp index 16822dc36e7..0d6da2830fa 100644 --- a/ace/TP_Reactor.cpp +++ b/ace/TP_Reactor.cpp @@ -1,6 +1,5 @@ // $Id$ - #include "ace/TP_Reactor.h" #include "ace/Reactor.h" #include "ace/Thread.h" @@ -11,7 +10,6 @@ ACE_RCSID(ace, TP_Reactor, "$Id$") - ACE_ALLOC_HOOK_DEFINE (ACE_TP_Reactor) int @@ -39,7 +37,6 @@ ACE_TP_Token_Guard::grab_token (ACE_Time_Value *max_wait_time) ACE_MT (result = this->token_.acquire_read (&ACE_TP_Reactor::no_op_sleep_hook)); } - // Now that this thread owns the token let us make // Check for timeouts and errors. if (result == -1) { @@ -55,7 +52,6 @@ ACE_TP_Token_Guard::grab_token (ACE_Time_Value *max_wait_time) return result; } - int ACE_TP_Token_Guard::acquire_token (ACE_Time_Value *max_wait_time) { @@ -79,7 +75,6 @@ ACE_TP_Token_Guard::acquire_token (ACE_Time_Value *max_wait_time) ACE_MT (result = this->token_.acquire ()); } - // Now that this thread owns the token let us make // Check for timeouts and errors. if (result == -1) { @@ -148,14 +143,14 @@ ACE_TP_Reactor::handle_events (ACE_Time_Value *max_wait_time) // called. ACE_Countdown_Time countdown (max_wait_time); + // // The order of these events is very subtle, modify with care. - + // // Instantiate the token guard which will try grabbing the token for // this thread. ACE_TP_Token_Guard guard (this->token_); - int result = guard.grab_token (max_wait_time); // If the guard is NOT the owner just return the retval @@ -169,145 +164,10 @@ ACE_TP_Reactor::handle_events (ACE_Time_Value *max_wait_time) // Update the countdown to reflect time waiting for the token. countdown.update (); - return this->dispatch_i (max_wait_time, guard); } - -int -ACE_TP_Reactor::remove_handler (ACE_Event_Handler *eh, - ACE_Reactor_Mask mask) -{ - int result = 0; - // Artificial scoping for grabbing and releasing the token - { - ACE_TP_Token_Guard guard (this->token_); - - // Acquire the token - result = guard.acquire_token (); - - if (!guard.is_owner ()) - return result; - - // Call the remove_handler_i () with a DONT_CALL mask. We dont - // want to call the handle_close with the token held. - result = this->remove_handler_i (eh->get_handle (), - mask | ACE_Event_Handler::DONT_CALL); - - if (result == -1) - return -1; - } - - // Close down the <Event_Handler> unless we've been instructed not - // to. - if (result == 0 && (ACE_BIT_ENABLED (mask, ACE_Event_Handler::DONT_CALL) == 0)) - eh->handle_close (ACE_INVALID_HANDLE, mask); - - return 0; -} - -int -ACE_TP_Reactor::remove_handler (ACE_HANDLE handle, - ACE_Reactor_Mask mask) -{ - - ACE_Event_Handler *eh = 0; - int result = 0; - // Artificial scoping for grabbing and releasing the token - { - ACE_TP_Token_Guard guard (this->token_); - - // Acquire the token - result = guard.acquire_token (); - - if (!guard.is_owner ()) - return result; - - size_t slot = 0; - eh = this->handler_rep_.find (handle, &slot); - - if (eh == 0) - return -1; - - // Call the remove_handler_i () with a DONT_CALL mask. We dont - // want to call the handle_close with the token held. - result = this->remove_handler_i (handle, - mask | ACE_Event_Handler::DONT_CALL); - - if (result == -1) - return -1; - } - - // Close down the <Event_Handler> unless we've been instructed not - // to. - // @@ Note: The check for result ==0 may be redundant, but shouldnt - // be a problem. - if (result ==0 && (ACE_BIT_ENABLED (mask, ACE_Event_Handler::DONT_CALL) == 0)) - eh->handle_close (handle, mask); - - return 0; -} - - -int -ACE_TP_Reactor::remove_handler (const ACE_Handle_Set &handles, - ACE_Reactor_Mask m) -{ - // Array of <Event_Handlers> corresponding to <handles> - ACE_Event_Handler **aeh = 0; - - // Allocate memory for the size of the handle set - ACE_NEW_RETURN (aeh, - ACE_Event_Handler *[handles.num_set ()], - -1); - - size_t index = 0; - - // Artificial scoping for grabbing and releasing the token - { - ACE_TP_Token_Guard guard (this->token_); - - // Acquire the token - int result = guard.acquire_token (); - - if (!guard.is_owner ()) - return result; - - ACE_HANDLE h; - - ACE_Handle_Set_Iterator handle_iter (handles); - - while ((h = handle_iter ()) != ACE_INVALID_HANDLE) - { - size_t slot = 0; - ACE_Event_Handler *eh = - this->handler_rep_.find (h, &slot); - - if (this->remove_handler_i (h, - m | ACE_Event_Handler::DONT_CALL) == -1) - { - delete [] aeh; - return -1; - } - - aeh [index] = eh; - index ++; - } - } - - // Close down the <Event_Handler> unless we've been instructed not - // to. - if (ACE_BIT_ENABLED (m, ACE_Event_Handler::DONT_CALL) == 0) - { - for (size_t i = 0; i < index; i++) - aeh[i]->handle_close (ACE_INVALID_HANDLE, m); - } - - delete [] aeh; - return 0; -} - int ACE_TP_Reactor::register_handler (int, ACE_Event_Handler *, @@ -378,22 +238,6 @@ ACE_TP_Reactor::register_handler (const ACE_Handle_Set &handles, } int -ACE_TP_Reactor::remove_handler (int /*signum*/, - ACE_Sig_Action * /*new_disp*/, - ACE_Sig_Action * /*old_disp*/, - int /*sigkey*/) -{ - ACE_NOTSUP_RETURN (-1); -} - -int -ACE_TP_Reactor::remove_handler (const ACE_Sig_Set & /*sigset*/) -{ - ACE_NOTSUP_RETURN (-1); -} - - -int ACE_TP_Reactor::dispatch_i (ACE_Time_Value *max_wait_time, ACE_TP_Token_Guard &guard) { @@ -413,6 +257,7 @@ ACE_TP_Reactor::dispatch_i (ACE_Time_Value *max_wait_time, // a later point of time, we decide to handle signals we have to // release the lock before we make any upcalls.. What is here // now is not the right thing... + // // @@ We need to do better.. return this->handle_signals (event_count, guard); @@ -421,8 +266,8 @@ ACE_TP_Reactor::dispatch_i (ACE_Time_Value *max_wait_time, // If there are no signals and if we had received a proper // event_count then first look at dispatching timeouts. We need to // handle timers early since they may have higher latency - // constraints than I/O handlers. Ideally, the order of - // dispatching should be a strategy... + // constraints than I/O handlers. Ideally, the order of dispatching + // should be a strategy... // NOTE: The event count does not have the number of timers that // needs dispatching. But we are still passing this along. We dont @@ -435,14 +280,13 @@ ACE_TP_Reactor::dispatch_i (ACE_Time_Value *max_wait_time, if (result > 0) return result; - - // Else justgo ahead fall through for further handling + // Else just go ahead fall through for further handling. if (event_count > 0) { // Next dispatch the notification handlers (if there are any to - // dispatch). These are required to handle multiple-threads that - // are trying to update the <Reactor>. + // dispatch). These are required to handle multiple-threads + // that are trying to update the <Reactor>. result = this->handle_notify_events (event_count, guard); @@ -460,12 +304,8 @@ ACE_TP_Reactor::dispatch_i (ACE_Time_Value *max_wait_time, } return 0; - } - - - int ACE_TP_Reactor::handle_signals (int & /*event_count*/, ACE_TP_Token_Guard & /*guard*/) @@ -496,7 +336,7 @@ ACE_TP_Reactor::handle_signals (int & /*event_count*/, // result of signals they should be dispatched since // they may be time critical... active_handle_count = this->any_ready (dispatch_set); - #else +#else // active_handle_count = 0; #endif @@ -525,14 +365,25 @@ ACE_TP_Reactor::handle_timer_events (int & /*event_count*/, if (this->timer_queue_->dispatch_info (cur_time, info)) { + const void *upcall_act = 0; + + // Preinvoke. + this->timer_queue_->preinvoke (info, + cur_time, + upcall_act); + // Release the token before dispatching notifies... guard.release_token (); // call the functor - this->timer_queue_->upcall (info.type_, - info.act_, + this->timer_queue_->upcall (info, cur_time); + // Postinvoke + this->timer_queue_->postinvoke (info, + cur_time, + upcall_act); + // We have dispatched a timer return 1; } @@ -540,8 +391,6 @@ ACE_TP_Reactor::handle_timer_events (int & /*event_count*/, return 0; } - - int ACE_TP_Reactor::handle_notify_events (int & /*event_count*/, ACE_TP_Token_Guard &guard) @@ -568,7 +417,7 @@ ACE_TP_Reactor::handle_notify_events (int & /*event_count*/, while (this->notify_handler_->read_notify_pipe (notify_handle, buffer) > 0) { - // Just figure out whether we can read any buffer that has + // Just figure out whether we can read any buffer that has // dispatchable info. If not we have just been unblocked by // another thread trying to update the reactor. If we get any // buffer that needs dispatching we will dispatch that after @@ -612,109 +461,54 @@ ACE_TP_Reactor::handle_socket_events (int &event_count, return 0; } - // Suspend the handler so that other threads don't start - // dispatching it. + // Suspend the handler so that other threads don't start dispatching + // it. + // // NOTE: This check was performed in older versions of the // TP_Reactor. Looks like it is a waste.. if (dispatch_info.event_handler_ != this->notify_handler_) this->suspend_i (dispatch_info.handle_); - // Release the lock. Others threads can start waiting. - guard.release_token (); + int resume_flag = + dispatch_info.event_handler_->resume_handler (); - int result = 0; + int reference_counting_required = + dispatch_info.event_handler_->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; - // If there was an event handler ready, dispatch it. - // Decrement the event left - --event_count; - - if (this->dispatch_socket_event (dispatch_info) == 0) - ++result; // Dispatched an event - - // This is to get around a problem/ which is well described in - // 1361. This is just a work around that would help applications - // from resuming handles at the most inopportune moment. - int flag = - ACE_Event_Handler::ACE_EVENT_HANDLER_NOT_RESUMED; - - // Acquire the token since we want to access the handler - // repository. The call to find () does not hold a lock and hence - // this is required. - guard.acquire_token (); - - // Get the handler for the handle that we have dispatched to. - ACE_Event_Handler *eh = - this->handler_rep_.find (dispatch_info.handle_); - - // This check is required for the following reasons - // 1. If dispatch operation returned a -1, then there is a - // possibility that the event handler could be deleted. In such - // cases the pointer to the event_handler that <dispatch_info> - // holds is set to 0. - // - // 2. If the application did its own memory management, a return - // value of 0 cannot be believed since the event handler could - // be deleted by the application based on some conditions. This - // is *bad*. But we dont have much of a choice with the existing - // reactor setup. To get around this, we can make a check for - // the handler registered with the repository for the handle - // that we have and compare with the handler that we - // posses. Yeah, I know it is like touching your nose by taking - // your hand around your head. But that is the way it is. This - // is a fix for [BUGID 1231] - - if (dispatch_info.event_handler_ != 0 && - eh == dispatch_info.event_handler_) + // Call add_reference() if needed. + if (reference_counting_required) { - flag = - dispatch_info.event_handler_->resume_handler (); + dispatch_info.event_handler_->add_reference (); } - // Use resume_i () since we hold the token already. - if (dispatch_info.handle_ != ACE_INVALID_HANDLE && - dispatch_info.event_handler_ != this->notify_handler_ && - flag == ACE_Event_Handler::ACE_REACTOR_RESUMES_HANDLER) - this->resume_i (dispatch_info.handle_); - - // Let me release the token here. This is not required since the - // destruction of the object on the stack will take care of this. + // Release the lock. Others threads can start waiting. guard.release_token (); - return result; -} - -int -ACE_TP_Reactor::mask_ops (ACE_HANDLE handle, - ACE_Reactor_Mask mask, - int ops) -{ - ACE_TRACE ("ACE_TP_Reactor::mask_ops"); - ACE_MT (ACE_GUARD_RETURN (ACE_Select_Reactor_Token, - ace_mon, this->token_, -1)); - int result = 0; - // If it looks like the handle isn't suspended, then - // set the ops on the wait_set_, otherwise set the suspend_set_. + // If there was an event handler ready, dispatch it. + // Decrement the event left + --event_count; - if (this->suspend_set_.rd_mask_.is_set (handle) == 0 - && this->suspend_set_.wr_mask_.is_set (handle) == 0 - && this->suspend_set_.ex_mask_.is_set (handle) == 0) + // Dispatched an event + if (this->dispatch_socket_event (dispatch_info) == 0) + ++result; - result = this->bit_ops (handle, mask, - this->wait_set_, - ops); - else + // Resume handler if required. + if (dispatch_info.event_handler_ != this->notify_handler_ && + resume_flag == ACE_Event_Handler::ACE_REACTOR_RESUMES_HANDLER) + this->resume_handler (dispatch_info.handle_); - result = this->bit_ops (handle, mask, - this->suspend_set_, - ops); + // Call remove_reference() if needed. + if (reference_counting_required) + { + dispatch_info.event_handler_->remove_reference (); + } return result; } - - int ACE_TP_Reactor::get_event_for_dispatching (ACE_Time_Value *max_wait_time) { @@ -756,7 +550,8 @@ ACE_TP_Reactor::get_event_for_dispatching (ACE_Time_Value *max_wait_time) int ACE_TP_Reactor::get_socket_event_info (ACE_EH_Dispatch_Info &event) { - event.reset (); // Nothing to dispatch yet + // Nothing to dispatch yet + event.reset (); // Check for dispatch in write, except, read. Only catch one, but if // one is caught, be sure to clear the handle from each mask in case @@ -863,10 +658,6 @@ ACE_TP_Reactor::dispatch_socket_event (ACE_EH_Dispatch_Info &dispatch_info) int retval = this->remove_handler (handle, mask); - // As the handler is no longer valid, invalidate the handle - dispatch_info.event_handler_ = 0; - dispatch_info.handle_ = ACE_INVALID_HANDLE; - return retval; } @@ -886,14 +677,6 @@ ACE_TP_Reactor::handle_events (ACE_Time_Value &max_wait_time) return this->handle_events (&max_wait_time); } -int -ACE_TP_Reactor::mask_ops (ACE_Event_Handler *eh, - ACE_Reactor_Mask mask, - int ops) -{ - return this->mask_ops (eh->get_handle (), mask, ops); -} - void ACE_TP_Reactor::notify_handle (ACE_HANDLE, ACE_Reactor_Mask, diff --git a/ace/TP_Reactor.h b/ace/TP_Reactor.h index 41a80215dd9..1deac0552bc 100644 --- a/ace/TP_Reactor.h +++ b/ace/TP_Reactor.h @@ -133,34 +133,33 @@ private: /** * @class ACE_TP_Reactor * - * @brief Specialization of Select Reactor to support thread-pool based - * event dispatching. + * @brief Specialization of Select Reactor to support thread-pool + * based event dispatching. * - * One of the short comings of the Select_Reactor in ACE is that - * it did not support a thread pool based event dispatching - * model, similar to the one in WFMO_Reactor. In - * Select_Reactor, only thread can be blocked in <handle_events> - * at any given time. - * A new Reactor has been added to ACE that removes this - * short-coming. TP_Reactor is a specialization of Select - * Reactor to support thread-pool based event dispatching. This - * Reactor takes advantage of the fact that events reported by - * <select> are persistent if not acted upon immediately. It - * works by remembering the event handler that just got - * activated, releasing the internal lock (so that some other - * thread can start waiting in the event loop) and then - * dispatching the event handler outside the context of the - * Reactor lock. - * This Reactor is best suited for situations when the callbacks - * to event handlers can take arbitrarily long and/or a number - * of threads are available to run the event loops. - * Note that callback code in Event Handlers - * (e.g. Event_Handler::handle_input) does not have to be - * modified or made thread-safe for this Reactor. This is - * because an activated Event Handler is suspended in the - * Reactor before the upcall is made and resumed after the - * upcall completes. Therefore, one Event Handler cannot be - * called by multiple threads simultaneously. + * One of the short comings of the Select_Reactor in ACE is that it + * did not support a thread pool based event dispatching model, + * similar to the one in WFMO_Reactor. In Select_Reactor, only thread + * can be blocked in <handle_events> at any given time. + * + * A new Reactor has been added to ACE that removes this short-coming. + * TP_Reactor is a specialization of Select Reactor to support + * thread-pool based event dispatching. This Reactor takes advantage + * of the fact that events reported by <select> are persistent if not + * acted upon immediately. It works by remembering the event handler + * that just got activated, releasing the internal lock (so that some + * other thread can start waiting in the event loop) and then + * dispatching the event handler outside the context of the Reactor + * lock. + * + * This Reactor is best suited for situations when the callbacks to + * event handlers can take arbitrarily long and/or a number of threads + * are available to run the event loops. Note that callback code in + * Event Handlers (e.g. Event_Handler::handle_input) does not have to + * be modified or made thread-safe for this Reactor. This is because + * an activated Event Handler is suspended in the Reactor before the + * upcall is made and resumed after the upcall completes. Therefore, + * one Event Handler cannot be called by multiple threads + * simultaneously. */ class ACE_Export ACE_TP_Reactor : public ACE_Select_Reactor { @@ -212,41 +211,9 @@ public: virtual int handle_events (ACE_Time_Value &max_wait_time); - - /// The following two overloaded methods are necessary as we dont - /// want the TP_Reactor to call handle_close () with the token - /// held. - /** - * Removes the <mask> binding of <eh> from the Select_Reactor. If - * there are no more bindings for this <eh> then it is removed from - * the Select_Reactor. Note that the Select_Reactor will call - * <ACE_Event_Handler::get_handle> to extract the underlying I/O - * handle. - */ - virtual int remove_handler (ACE_Event_Handler *eh, - ACE_Reactor_Mask mask); - - /** - * Removes the <mask> bind of <Event_Handler> whose handle is - * <handle> from the Select_Reactor. If there are no more bindings - * for this <eh> then it is removed from the Select_Reactor. - */ - virtual int remove_handler (ACE_HANDLE handle, - ACE_Reactor_Mask); - - /** - * Removes all the <mask> bindings for handles in the <handle_set> - * bind of <Event_Handler>. If there are no more bindings for any - * of these handlers then they are removed from the Select_Reactor. - */ - virtual int remove_handler (const ACE_Handle_Set &handle_set, - ACE_Reactor_Mask); - -/* @todo The following methods are not supported. Support for + /* @todo The following methods are not supported. Support for * signals is not available in the TP_Reactor. These methods will be - * supported once signal handling is supported. We have to include - * these two methods in the TP_Reactor to keep some compilers - * silent. + * supported once signal handling is supported. */ virtual int register_handler (int signum, ACE_Event_Handler *new_sh, @@ -257,20 +224,6 @@ public: virtual int register_handler (const ACE_Sig_Set &sigset, ACE_Event_Handler *new_sh, ACE_Sig_Action *new_disp = 0); - /** - * Remove the ACE_Event_Handler currently associated with <signum>. - * <sigkey> is ignored in this implementation since there is only - * one instance of a signal handler. Install the new disposition - * (if given) and return the previous disposition (if desired by the - * caller). Returns 0 on success and -1 if <signum> is invalid. - */ - virtual int remove_handler (int signum, - ACE_Sig_Action *new_disp, - ACE_Sig_Action *old_disp = 0, - int sigkey = -1); - - /// Calls <remove_handler> for every signal in <sigset>. - virtual int remove_handler (const ACE_Sig_Set &sigset); /** * The following template methods have been declared here to avoid @@ -317,18 +270,6 @@ public: /// resume handles. So return a +ve value. virtual int resumable_handler (void); - /// GET/SET/ADD/CLR the dispatch mask "bit" bound with the <eh> and - /// <mask>. - virtual int mask_ops (ACE_Event_Handler *eh, - ACE_Reactor_Mask mask, - int ops); - - /// GET/SET/ADD/CLR the dispatch mask "bit" bound with the <handle> - /// and <mask>. - virtual int mask_ops (ACE_HANDLE handle, - ACE_Reactor_Mask mask, - int ops); - /// Called from handle events static void no_op_sleep_hook (void *); @@ -345,8 +286,8 @@ public: ACE_ALLOC_HOOK_DECLARE; protected: - // = Internal methods that do the actual work. + // = Internal methods that do the actual work. /// Dispatch just 1 signal, timer, notification handlers int dispatch_i (ACE_Time_Value *max_wait_time, @@ -384,7 +325,7 @@ protected: private: /// Get the handle of the notify pipe from the ready set if there is - /// an event in the notify pipe. + /// an event in the notify pipe. ACE_HANDLE get_notify_handle (void); /// Get socket event dispatch information. diff --git a/ace/TP_Reactor.i b/ace/TP_Reactor.i index bfb3f02e2dd..a3a9de3d1de 100644 --- a/ace/TP_Reactor.i +++ b/ace/TP_Reactor.i @@ -50,8 +50,8 @@ ACE_EH_Dispatch_Info::dispatch (void) const ACE_INLINE ACE_TP_Token_Guard::ACE_TP_Token_Guard (ACE_Select_Reactor_Token &token) - :token_ (token), - owner_ (0) + : token_ (token), + owner_ (0) { } @@ -87,6 +87,7 @@ ACE_TP_Token_Guard::is_owner (void) /************************************************************************/ // Methods for ACE_TP_Reactor /************************************************************************/ + ACE_INLINE void ACE_TP_Reactor::no_op_sleep_hook (void *) { diff --git a/ace/Timer_Hash_T.cpp b/ace/Timer_Hash_T.cpp index a83a5e3acb6..515eb9b13d0 100644 --- a/ace/Timer_Hash_T.cpp +++ b/ace/Timer_Hash_T.cpp @@ -16,19 +16,23 @@ ACE_RCSID(ace, Timer_Hash_T, "$Id$") +template <class TYPE> struct Hash_Token { Hash_Token (const void *act, size_t pos, - long orig_id) + long orig_id, + const TYPE &type) : act_ (act), pos_ (pos), - orig_id_ (orig_id) + orig_id_ (orig_id), + type_ (type) {} const void *act_; size_t pos_; long orig_id_; + TYPE type_; }; // Default constructor @@ -49,63 +53,91 @@ ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::ACE_Timer_Hash_Upcall (ACE_Timer // Nothing } -// Calls up to timer_hash's upcall functor - template <class TYPE, class FUNCTOR, class ACE_LOCK> int -ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::timeout (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler, - const void *arg, - const ACE_Time_Value &cur_time) +ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::registration (TIMER_QUEUE &, + ACE_Event_Handler *, + const void *) { - ACE_UNUSED_ARG (timer_queue); + // Registration will be handled by the upcall functor of the timer + // hash. + return 0; +} - Hash_Token *h = ACE_reinterpret_cast (Hash_Token *, - ACE_const_cast (void *, - arg)); - int result = - this->timer_hash_->upcall_functor ().timeout (*this->timer_hash_, - handler, - h->act_, - cur_time); - delete h; - return result; +template <class TYPE, class FUNCTOR, class ACE_LOCK> int +ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::preinvoke (TIMER_QUEUE &, + ACE_Event_Handler *, + const void *, + int, + const ACE_Time_Value &, + const void *&) +{ + // This method should never be invoked since we don't invoke + // expire() on the buckets. + ACE_ASSERT (0); + return 0; } +template <class TYPE, class FUNCTOR, class ACE_LOCK> int +ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::postinvoke (TIMER_QUEUE &, + ACE_Event_Handler *, + const void *, + int, + const ACE_Time_Value &, + const void *) +{ + // This method should never be invoked since we don't invoke + // expire() on the buckets. + ACE_ASSERT (0); + return 0; +} // Calls up to timer_hash's upcall functor - template <class TYPE, class FUNCTOR, class ACE_LOCK> int -ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::cancellation (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler) +ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::timeout (TIMER_QUEUE &, + ACE_Event_Handler *, + const void *, + int, + const ACE_Time_Value &) { - ACE_UNUSED_ARG (timer_queue); - return this->timer_hash_->upcall_functor ().cancellation (*this->timer_hash_, - handler); + // This method should never be invoked since we don't invoke + // expire() on the buckets. + ACE_ASSERT (0); + return 0; } - -// Calls up to timer_hash's upcall functor +template <class TYPE, class FUNCTOR, class ACE_LOCK> int +ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::cancellation (TIMER_QUEUE &, + ACE_Event_Handler *, + int) +{ + // Cancellation will be handled by the upcall functor of the timer + // hash. + return 0; +} template <class TYPE, class FUNCTOR, class ACE_LOCK> int -ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::deletion (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler, +ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK>::deletion (TIMER_QUEUE &, + ACE_Event_Handler *event_handler, const void *arg) { - ACE_UNUSED_ARG (timer_queue); + // Call up to the upcall functor of the timer hash since the timer + // hash does not invoke deletion() on its upcall functor directly. + Hash_Token<TYPE> *h = + ACE_reinterpret_cast (Hash_Token<TYPE> *, + ACE_const_cast (void *, + arg)); - Hash_Token *h = ACE_reinterpret_cast (Hash_Token *, - ACE_const_cast (void *, - arg)); int result = - this->timer_hash_->upcall_functor ().deletion (*this->timer_hash_, - handler, - h->act_); + this->timer_hash_->upcall_functor (). + deletion (*this->timer_hash_, + event_handler, + h->act_); + delete h; + return result; } - - template <class TYPE, class FUNCTOR, class ACE_LOCK, class BUCKET> ACE_Timer_Hash_Iterator_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::ACE_Timer_Hash_Iterator_T (ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET> &hash) : timer_hash_ (hash) @@ -325,51 +357,72 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::reschedule (ACE_Timer_Node_T< { ACE_TRACE ("ACE_Timer_Hash_T::reschedule"); - size_t position = - expired->get_timer_value ().sec () % this->table_size_; + Hash_Token<TYPE> *h = + ACE_reinterpret_cast (Hash_Token<TYPE> *, + ACE_const_cast (void *, + expired->get_act ())); - Hash_Token *h = ACE_reinterpret_cast (Hash_Token *, - ACE_const_cast (void *, - expired->get_act ())); + h->pos_ = + expired->get_timer_value ().sec () % this->table_size_; - h->orig_id_ = this->table_[position]->schedule (expired->get_type (), - h, - expired->get_timer_value (), - expired->get_interval ()); + h->orig_id_ = + this->table_[h->pos_]->schedule (expired->get_type (), + h, + expired->get_timer_value (), + 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 if (this->table_[this->earliest_position_]->is_empty () - || this->table_[position]->earliest_time () + || this->table_[h->pos_]->earliest_time () < this->table_[this->earliest_position_]->earliest_time ()) - this->earliest_position_ = position; + this->earliest_position_ = h->pos_; } // Insert a new handler that expires at time future_time; if interval // is > 0, the handler will be reinvoked periodically. template <class TYPE, class FUNCTOR, class ACE_LOCK, class BUCKET> long -ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::schedule (const TYPE &type, - const void *act, - const ACE_Time_Value &future_time, - const ACE_Time_Value &interval) +ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::schedule_i (const TYPE &type, + const void *act, + const ACE_Time_Value &future_time, + const ACE_Time_Value &interval) { - ACE_TRACE ("ACE_Timer_Hash_T::schedule"); - ACE_MT (ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->mutex_, -1)); + ACE_TRACE ("ACE_Timer_Hash_T::schedule_i"); size_t position = future_time.sec () % this->table_size_; - Hash_Token *h; + Hash_Token<TYPE> *h; ACE_NEW_RETURN (h, - Hash_Token (act, - position, - 0), + Hash_Token<TYPE> (act, + position, + 0, + type), -1); - h->orig_id_ = this->table_[position]->schedule (type, - h, - future_time, - interval); + h->orig_id_ = + this->table_[position]->schedule (type, + h, + future_time, + 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 () @@ -413,11 +466,13 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::reset_interval (long timer_id #if defined (ACE_WIN64) unsigned long timer_offset = ACE_static_cast (unsigned long, timer_id); - Hash_Token *h = ACE_reinterpret_cast (Hash_Token *, - (this->pointer_base_ + timer_offset)); + Hash_Token<TYPE> *h = + ACE_reinterpret_cast (Hash_Token<TYPE> *, + (this->pointer_base_ + timer_offset)); #else - Hash_Token *h = ACE_reinterpret_cast (Hash_Token *, - timer_id); + Hash_Token<TYPE> *h = + ACE_reinterpret_cast (Hash_Token<TYPE> *, + timer_id); #endif /* ACE_WIN64 */ return this->table_[h->pos_]->reset_interval (h->orig_id_, @@ -442,26 +497,35 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::cancel (long timer_id, #if defined (ACE_WIN64) unsigned long timer_offset = ACE_static_cast (unsigned long, timer_id); - Hash_Token *h = ACE_reinterpret_cast (Hash_Token *, - (this->pointer_base_ + timer_offset)); + Hash_Token<TYPE> *h = + ACE_reinterpret_cast (Hash_Token<TYPE> *, + (this->pointer_base_ + timer_offset)); #else - Hash_Token *h = ACE_reinterpret_cast (Hash_Token *, - timer_id); + Hash_Token<TYPE> *h = + ACE_reinterpret_cast (Hash_Token<TYPE> *, + timer_id); #endif /* ACE_WIN64 */ int result = this->table_[h->pos_]->cancel (h->orig_id_, - act, + 0, dont_call); - if (h->pos_ == this->earliest_position_) - this->find_new_earliest (); + if (result == 1) + { + this->upcall_functor ().cancellation (*this, + h->type_, + dont_call); - if (act != 0) - *act = h->act_; + if (h->pos_ == this->earliest_position_) + this->find_new_earliest (); - delete h; + if (act != 0) + *act = h->act_; - --this->size_; + delete h; + + --this->size_; + } return result; } @@ -478,10 +542,10 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::cancel (const TYPE &type, size_t i; // loop variable. - Hash_Token **timer_ids; + Hash_Token<TYPE> **timer_ids; ACE_NEW_RETURN (timer_ids, - Hash_Token *[this->size_], + Hash_Token<TYPE> *[this->size_], -1); size_t pos = 0; @@ -499,7 +563,7 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::cancel (const TYPE &type, iter.next ()) if (iter.item ()->get_type () == type) timer_ids[pos++] = - ACE_reinterpret_cast (Hash_Token *, + ACE_reinterpret_cast (Hash_Token<TYPE> *, ACE_const_cast (void *, iter.item ()->get_act ())); } @@ -509,18 +573,24 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::cancel (const TYPE &type, for (i = 0; i < pos; i++) { - this->table_[timer_ids[i]->pos_]->cancel (timer_ids[i]->orig_id_, - 0, - 1); + int result = + this->table_[timer_ids[i]->pos_]->cancel (timer_ids[i]->orig_id_, + 0, + dont_call); + ACE_ASSERT (result == 1); + ACE_UNUSED_ARG (result); + + this->upcall_functor ().cancellation (*this, + timer_ids[i]->type_, + dont_call); + delete timer_ids[i]; + --this->size_; } delete [] timer_ids; - if (dont_call == 0) - this->upcall_functor ().cancellation (*this, - type); this->find_new_earliest (); return ACE_static_cast (int, pos); @@ -570,6 +640,27 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::get_first (void) return this->table_[this->earliest_position_]->get_first (); } +template <class TYPE, class FUNCTOR, class ACE_LOCK, class BUCKET> int +ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::dispatch_info_i (const ACE_Time_Value &cur_time, + ACE_Timer_Node_Dispatch_Info_T<TYPE> &info) +{ + int result = + ACE_Timer_Queue_T<TYPE,FUNCTOR,ACE_LOCK>::dispatch_info_i (cur_time, + info); + + if (result == 1) + { + Hash_Token<TYPE> *h = + ACE_reinterpret_cast (Hash_Token<TYPE> *, + ACE_const_cast (void *, + info.act_)); + + info.act_ = h->act_; + } + + return result; +} + // Dummy version of expire to get rid of warnings in Sun CC 4.2 template <class TYPE, class FUNCTOR, class ACE_LOCK, class BUCKET> int @@ -596,21 +687,35 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::expire (const ACE_Time_Value i < this->table_size_; i++) { - while (!this->table_[i]->is_empty () + while (!this->table_[i]->is_empty () && this->table_[i]->earliest_time () <= cur_time) { - expired = this->table_[i]->get_first (); - TYPE type = expired->get_type (); + expired = this->table_[i]->remove_first (); const void *act = expired->get_act (); int reclaim = 1; + Hash_Token<TYPE> *h = + ACE_reinterpret_cast (Hash_Token<TYPE> *, + ACE_const_cast (void *, + act)); + + 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) { // Make sure that we skip past values that have already // "expired". do - expired->set_timer_value (expired->get_timer_value () + expired->set_timer_value (expired->get_timer_value () + expired->get_interval ()); while (expired->get_timer_value () <= cur_time); @@ -620,29 +725,34 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::expire (const ACE_Time_Value reclaim = 0; } - // Now remove the timer from the original table... if - // it's a simple, non-recurring timer, it's got to be - // removed anyway. If it was rescheduled, it's been - // scheduled into the correct table (regardless of whether - // it's the same one or not) already. - this->table_[i]->cancel (expired->get_timer_id ()); - - Hash_Token *h = ACE_reinterpret_cast (Hash_Token *, - ACE_const_cast (void *, - act)); - // Call the functor. - this->upcall (type, - h->act_, - cur_time); + ACE_Timer_Node_Dispatch_Info_T<TYPE> info; + + // Get the dispatch info + expired->get_dispatch_info (info); + + info.act_ = h->act_; + + const void *upcall_act = 0; + + this->preinvoke (info, cur_time, upcall_act); + + this->upcall (info, cur_time); + + this->postinvoke (info, cur_time, upcall_act); + if (reclaim) { --this->size_; delete h; } + number_of_timers_expired++; - } + } } + if (number_of_timers_expired > 0) + this->find_new_earliest (); + return number_of_timers_expired; } diff --git a/ace/Timer_Hash_T.h b/ace/Timer_Hash_T.h index 3e0d0548427..55fcd165b42 100644 --- a/ace/Timer_Hash_T.h +++ b/ace/Timer_Hash_T.h @@ -50,15 +50,38 @@ public: /// Constructor that specifies a Timer_Hash to call up to ACE_Timer_Hash_Upcall (ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK> *timer_hash); - /// This method is called when the timer expires + /// This method is called when a timer is registered. + int registration (TIMER_QUEUE &timer_queue, + ACE_Event_Handler *handler, + const void *arg); + + /// This method is called before the timer expires. + int preinvoke (TIMER_QUEUE &timer_queue, + ACE_Event_Handler *handler, + const void *arg, + int recurring_timer, + const ACE_Time_Value &cur_time, + const void *&upcall_act); + + /// This method is called when the timer expires. int timeout (TIMER_QUEUE &timer_queue, ACE_Event_Handler *handler, const void *arg, + int recurring_timer, const ACE_Time_Value &cur_time); + /// This method is called after the timer expires. + int postinvoke (TIMER_QUEUE &timer_queue, + ACE_Event_Handler *handler, + const void *arg, + int recurring_timer, + const ACE_Time_Value &cur_time, + const void *upcall_act); + /// This method is called when the timer is cancelled int cancellation (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler); + ACE_Event_Handler *handler, + int dont_call); /// This method is called when the timer queue is destroyed and /// the timer is still contained in it @@ -169,22 +192,6 @@ public: virtual const ACE_Time_Value &earliest_time (void) const; /** - * Schedule <type> that will expire at <future_time>, - * which is specified in absolute time. If it expires then <act> is - * passed in as the value to the <functor>. If <interval> is != to - * <ACE_Time_Value::zero> then it is used to reschedule the <type> - * automatically, using relative time to the current <gettimeofday>. - * This method returns a <timer_id> that is a pointer to a token - * which stores information about the event. This <timer_id> can be - * used to cancel the timer before it expires. Returns -1 on - * failure. - */ - virtual long schedule (const TYPE &type, - const void *act, - const ACE_Time_Value &future_time, - const ACE_Time_Value &interval = ACE_Time_Value::zero); - - /** * Resets the interval of the timer represented by <timer_id> to * <interval>, which is specified in relative time to the current * <gettimeofday>. If <interval> is equal to @@ -242,6 +249,27 @@ public: virtual ACE_Timer_Node_T<TYPE> *get_first (void); private: + + /** + * Schedule <type> that will expire at <future_time>, + * which is specified in absolute time. If it expires then <act> is + * passed in as the value to the <functor>. If <interval> is != to + * <ACE_Time_Value::zero> then it is used to reschedule the <type> + * automatically, using relative time to the current <gettimeofday>. + * This method returns a <timer_id> that is a pointer to a token + * which stores information about the event. This <timer_id> can be + * used to cancel the timer before it expires. Returns -1 on + * failure. + */ + virtual long schedule_i (const TYPE &type, + const void *act, + const ACE_Time_Value &future_time, + const ACE_Time_Value &interval); + + /// Non-locking version of dispatch_info () + virtual int dispatch_info_i (const ACE_Time_Value ¤t_time, + ACE_Timer_Node_Dispatch_Info_T<TYPE> &info); + /// Reschedule an "interval" <ACE_Timer_Node>. virtual void reschedule (ACE_Timer_Node_T<TYPE> *); diff --git a/ace/Timer_Heap_T.cpp b/ace/Timer_Heap_T.cpp index a9aae8639fc..fdac8c9a463 100644 --- a/ace/Timer_Heap_T.cpp +++ b/ace/Timer_Heap_T.cpp @@ -174,8 +174,11 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::~ACE_Timer_Heap_T (void) delete iterator_; + size_t current_size = + this->cur_size_; + // Clean up all the nodes still in the queue - for (size_t i = 0; i < this->cur_size_; i++) + for (size_t i = 0; i < current_size; i++) { this->upcall_functor ().deletion (*this, this->heap_[i]->get_type (), @@ -374,7 +377,7 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::remove (size_t slot) // parent it needs be moved down the heap. size_t parent = ACE_HEAP_PARENT (slot); - if (moved_node->get_timer_value () + if (moved_node->get_timer_value () >= this->heap_[parent]->get_timer_value ()) this->reheap_down (moved_node, slot, @@ -401,13 +404,13 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::reheap_down (ACE_Timer_Node_T<TYPE> * { // Choose the smaller of the two children. if (child + 1 < this->cur_size_ - && this->heap_[child + 1]->get_timer_value () + && this->heap_[child + 1]->get_timer_value () < this->heap_[child]->get_timer_value ()) child++; // Perform a <copy> if the child has a larger timeout value than // the <moved_node>. - if (this->heap_[child]->get_timer_value () + if (this->heap_[child]->get_timer_value () < moved_node->get_timer_value ()) { this->copy (slot, @@ -434,7 +437,7 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::reheap_up (ACE_Timer_Node_T<TYPE> *mo { // If the parent node is greater than the <moved_node> we need // to copy it down. - if (moved_node->get_timer_value () + if (moved_node->get_timer_value () < this->heap_[parent]->get_timer_value ()) { this->copy (slot, this->heap_[parent]); @@ -490,7 +493,7 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::grow_heap (void) ssize_t *new_timer_ids = 0; - ACE_NEW (new_timer_ids, + ACE_NEW (new_timer_ids, ssize_t[new_size]); ACE_OS::memcpy (new_timer_ids, @@ -594,7 +597,6 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::alloc_node (void) template <class TYPE, class FUNCTOR, class ACE_LOCK> void ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::free_node (ACE_Timer_Node_T<TYPE> *node) { - // Return this timer id to the freelist. this->push_freelist (node->get_timer_id ()); @@ -612,15 +614,13 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::free_node (ACE_Timer_Node_T<TYPE> *no // > 0, the handler will be reinvoked periodically. template <class TYPE, class FUNCTOR, class ACE_LOCK> long -ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::schedule (const TYPE &type, - const void *act, - const ACE_Time_Value &future_time, - const ACE_Time_Value &interval) +ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::schedule_i (const TYPE &type, + const void *act, + const ACE_Time_Value &future_time, + const ACE_Time_Value &interval) { ACE_TRACE ("ACE_Timer_Heap_T::schedule"); - ACE_MT (ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->mutex_, -1)); - if ((this->cur_size_ + this->cur_limbo_) < this->max_size_) { // Obtain the next unique sequence number. @@ -660,14 +660,14 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (long timer_id, // Locate the ACE_Timer_Node that corresponds to the timer_id. // Check to see if the timer_id is out of range - if (timer_id < 0 + if (timer_id < 0 || (size_t) timer_id > this->max_size_) return 0; ssize_t timer_node_slot = this->timer_ids_[timer_id]; // Check to see if timer_id is still valid. - if (timer_node_slot < 0) + if (timer_node_slot < 0) return 0; if (timer_id != this->heap_[timer_node_slot]->get_timer_id ()) @@ -680,10 +680,10 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (long timer_id, ACE_Timer_Node_T<TYPE> *temp = this->remove (timer_node_slot); - if (dont_call == 0) - // Call the close hook. - this->upcall_functor ().cancellation (*this, - temp->get_type ()); + // Call the close hook. + this->upcall_functor ().cancellation (*this, + temp->get_type (), + dont_call); if (act != 0) *act = temp->get_act (); @@ -695,8 +695,8 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (long timer_id, // Locate and update the inteval on the timer_id -template <class TYPE, class FUNCTOR, class ACE_LOCK> int -ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::reset_interval (long timer_id, +template <class TYPE, class FUNCTOR, class ACE_LOCK> int +ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::reset_interval (long timer_id, const ACE_Time_Value &interval) { ACE_TRACE ("ACE_Timer_Heap_T::reset_interval"); @@ -705,14 +705,14 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::reset_interval (long timer_id, // Locate the ACE_Timer_Node that corresponds to the timer_id. // Check to see if the timer_id is out of range - if (timer_id < 0 + if (timer_id < 0 || (size_t) timer_id > this->max_size_) return -1; ssize_t timer_node_slot = this->timer_ids_[timer_id]; // Check to see if timer_id is still valid. - if (timer_node_slot < 0) + if (timer_node_slot < 0) return -1; if (timer_id != this->heap_[timer_node_slot]->get_timer_id ()) @@ -735,30 +735,29 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (const TYPE &type, int dont_call) { ACE_TRACE ("ACE_Timer_Heap_T::cancel"); + ACE_MT (ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->mutex_, -1)); int number_of_cancellations = 0; // Try to locate the ACE_Timer_Node that matches the timer_id. - { - ACE_MT (ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->mutex_, -1)); - - for (size_t i = 0; i < this->cur_size_; ) - { - if (this->heap_[i]->get_type () == type) - { - ACE_Timer_Node_T<TYPE> *temp = this->remove (i); - - number_of_cancellations++; - - this->free_node (temp); - } - else - i++; - } - } - - if (dont_call == 0) - this->upcall_functor ().cancellation (*this, type); + + for (size_t i = 0; i < this->cur_size_; ) + { + if (this->heap_[i]->get_type () == type) + { + ACE_Timer_Node_T<TYPE> *temp = this->remove (i); + + number_of_cancellations++; + + this->free_node (temp); + + this->upcall_functor ().cancellation (*this, + type, + dont_call); + } + else + i++; + } return number_of_cancellations; } diff --git a/ace/Timer_Heap_T.h b/ace/Timer_Heap_T.h index 73ba57dd3e2..6633bb848c7 100644 --- a/ace/Timer_Heap_T.h +++ b/ace/Timer_Heap_T.h @@ -130,27 +130,6 @@ public: virtual const ACE_Time_Value &earliest_time (void) const; /** - * Schedule a timer that may optionally auto-reset. - * Schedule <type> that will expire at <future_time>, - * which is specified in absolute time. If it expires then <act> is - * passed in as the value to the <functor>. If <interval> is != to - * <ACE_Time_Value::zero> then it is used to reschedule the <type> - * automatically, using relative time to the current <gettimeofday>. - * This method returns a <timer_id> that uniquely identifies the the - * <type> entry in an internal list. This <timer_id> can be used to - * cancel the timer before it expires. The cancellation ensures - * that <timer_ids> are unique up to values of greater than 2 - * billion timers. As long as timers don't stay around longer than - * this there should be no problems with accidentally deleting the - * wrong timer. Returns -1 on failure (which is guaranteed never to - * be a valid <timer_id>). - */ - virtual long schedule (const TYPE &type, - const void *act, - const ACE_Time_Value &future_time, - const ACE_Time_Value &interval = ACE_Time_Value::zero); - - /** * Resets the interval of the timer represented by <timer_id> to * <interval>, which is specified in relative time to the current * <gettimeofday>. If <interval> is equal to @@ -201,6 +180,28 @@ public: virtual ACE_Timer_Node_T<TYPE> *get_first (void); protected: + + /** + * Schedule a timer that may optionally auto-reset. + * Schedule <type> that will expire at <future_time>, + * which is specified in absolute time. If it expires then <act> is + * passed in as the value to the <functor>. If <interval> is != to + * <ACE_Time_Value::zero> then it is used to reschedule the <type> + * automatically, using relative time to the current <gettimeofday>. + * This method returns a <timer_id> that uniquely identifies the the + * <type> entry in an internal list. This <timer_id> can be used to + * cancel the timer before it expires. The cancellation ensures + * that <timer_ids> are unique up to values of greater than 2 + * billion timers. As long as timers don't stay around longer than + * this there should be no problems with accidentally deleting the + * wrong timer. Returns -1 on failure (which is guaranteed never to + * be a valid <timer_id>). + */ + virtual long schedule_i (const TYPE &type, + const void *act, + const ACE_Time_Value &future_time, + const ACE_Time_Value &interval); + /// Reschedule an "interval" <ACE_Timer_Node>. virtual void reschedule (ACE_Timer_Node_T<TYPE> *); diff --git a/ace/Timer_List_T.cpp b/ace/Timer_List_T.cpp index ecf2d71544d..f1a65fa48a8 100644 --- a/ace/Timer_List_T.cpp +++ b/ace/Timer_List_T.cpp @@ -126,14 +126,24 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::~ACE_Timer_List_T (void) delete iterator_; - if (! this->is_empty()) { - for (ACE_Timer_Node_T<TYPE>* n = this->get_first(); n != this->head_;) { - ACE_Timer_Node_T<TYPE>* next = n->get_next(); - this->upcall_functor ().deletion (*this, n->get_type(), n->get_act()); - this->free_node(n); - n = next; + if (!this->is_empty()) + { + for (ACE_Timer_Node_T<TYPE>* n = this->get_first(); + n != this->head_; + ) + { + this->upcall_functor ().deletion (*this, + n->get_type(), + n->get_act()); + + ACE_Timer_Node_T<TYPE> *next = + n->get_next (); + + this->free_node (n); + + n = next; + } } - } // delete the dummy node delete this->head_; @@ -174,13 +184,12 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::reschedule (ACE_Timer_Node_T<TYPE>* n // is > 0, the handler will be reinvoked periodically. template <class TYPE, class FUNCTOR, class ACE_LOCK> long -ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::schedule (const TYPE &type, - const void *act, - const ACE_Time_Value &future_time, - const ACE_Time_Value &interval) +ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::schedule_i (const TYPE &type, + const void *act, + const ACE_Time_Value &future_time, + const ACE_Time_Value &interval) { ACE_TRACE ("ACE_Timer_List_T::schedule"); - ACE_MT (ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->mutex_, -1)); ACE_Timer_Node_T<TYPE>* n = this->alloc_node(); @@ -203,7 +212,7 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::schedule (const TYPE &type, /// The shared scheduling functionality between schedule() and reschedule() template <class TYPE, class FUNCTOR, class ACE_LOCK> void ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::schedule_i (ACE_Timer_Node_T<TYPE>* n, - const ACE_Time_Value& expire) + const ACE_Time_Value& expire) { if (this->is_empty()) { n->set_prev(this->head_); @@ -230,7 +239,7 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::schedule_i (ACE_Timer_Node_T<TYPE>* n template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_Timer_Node_T<TYPE>* -ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::find_node(long timer_id) const +ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::find_node (long timer_id) const { ACE_Timer_Node_T<TYPE>* n = this->get_first_i(); if (n == 0) @@ -269,12 +278,14 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (long timer_id, ACE_TRACE ("ACE_Timer_List_T::cancel"); ACE_MT (ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->mutex_, -1)); ACE_Timer_Node_T<TYPE>* n = this->find_node(timer_id); - if (n != 0) { - if (act != 0) - *act = n->get_act(); - this->cancel_i(n, skip_close); - return 1; - } + if (n != 0) + { + if (act != 0) + *act = n->get_act (); + this->cancel_i (n, skip_close); + + return 1; + } return 0; } @@ -287,30 +298,28 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (const TYPE &type, int skip_cl int num_canceled = 0; // Note : Technically this can overflow. - if (! this->is_empty()) { + if (this->is_empty()) + return 0; - for (ACE_Timer_Node_T<TYPE>* n = this->get_first(); n != this->head_;) + for (ACE_Timer_Node_T<TYPE>* n = this->get_first(); + n != this->head_; + ) { if (n->get_type() == type) // Note: Typically Type is an ACE_Event_Handler* - { - ++num_canceled; - - ACE_Timer_Node_T<TYPE>* tmp = n; - n = n->get_next(); - int always_skip_close = 1; // todo : Is this correct? - this->cancel_i(tmp, always_skip_close); - } + { + ++num_canceled; + + ACE_Timer_Node_T<TYPE>* tmp = n; + n = n->get_next(); + + this->cancel_i (tmp, skip_close); + } else - { - n = n->get_next(); - } + { + n = n->get_next(); + } } - } - - if (! skip_close) { // && num_canceled > 0) { - this->upcall_functor().cancellation (*this, type); - } return num_canceled; } @@ -325,13 +334,15 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::unlink (ACE_Timer_Node_T<TYPE>* n) /// Shared subset of the two cancel() methods. template <class TYPE, class FUNCTOR, class ACE_LOCK> void -ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::cancel_i (ACE_Timer_Node_T<TYPE>* n, int skip_close) +ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::cancel_i (ACE_Timer_Node_T<TYPE>* n, + int skip_close) { - this->unlink(n); + this->unlink (n); this->free_node (n); - if (! skip_close) { - this->upcall_functor().cancellation (*this, n->get_type()); - } + + this->upcall_functor ().cancellation (*this, + n->get_type(), + skip_close); } // Reads the first node on the list and returns it. diff --git a/ace/Timer_List_T.h b/ace/Timer_List_T.h index 0f13647e591..42ce2a2eab0 100644 --- a/ace/Timer_List_T.h +++ b/ace/Timer_List_T.h @@ -33,7 +33,7 @@ class ACE_Timer_List_T; * node of a timer queue. */ template <class TYPE, class FUNCTOR, class ACE_LOCK> -class ACE_Timer_List_Iterator_T +class ACE_Timer_List_Iterator_T : public ACE_Timer_Queue_Iterator_T <TYPE, FUNCTOR, ACE_LOCK> { public: @@ -116,26 +116,6 @@ public: virtual const ACE_Time_Value& earliest_time (void) const; /** - * Schedule <type> that will expire at <future_time>, - * which is specified in absolute time. If it expires then <act> is - * passed in as the value to the <functor>. If <interval> is != to - * <ACE_Time_Value::zero> then it is used to reschedule the <type> - * automatically, using relative time to the current <gettimeofday>. - * This method returns a <timer_id> that uniquely identifies the the - * <type> entry in an internal list. This <timer_id> can be used to - * cancel the timer before it expires. The cancellation ensures - * that <timer_ids> are unique up to values of greater than 2 - * billion timers. As long as timers don't stay around longer than - * this there should be no problems with accidentally deleting the - * wrong timer. Returns -1 on failure (which is guaranteed never to - * be a valid <timer_id>). - */ - virtual long schedule (const TYPE& type, - const void* act, - const ACE_Time_Value& future_time, - const ACE_Time_Value& interval = ACE_Time_Value::zero); - - /** * Resets the interval of the timer represented by <timer_id> to * <interval>, which is specified in relative time to the current * <gettimeofday>. If <interval> is equal to @@ -184,10 +164,34 @@ public: private: + /** + * Schedule <type> that will expire at <future_time>, which is + * specified in absolute time. If it expires then <act> is passed + * in as the value to the <functor>. If <interval> is != to + * <ACE_Time_Value::zero> then it is used to reschedule the <type> + * automatically, using relative time to the current <gettimeofday>. + * This method returns a <timer_id> that uniquely identifies the the + * <type> entry in an internal list. This <timer_id> can be used to + * cancel the timer before it expires. The cancellation ensures + * that <timer_ids> are unique up to values of greater than 2 + * billion timers. As long as timers don't stay around longer than + * this there should be no problems with accidentally deleting the + * wrong timer. Returns -1 on failure (which is guaranteed never to + * be a valid <timer_id>). + */ + virtual long schedule_i (const TYPE& type, + const void* act, + const ACE_Time_Value& future_time, + const ACE_Time_Value& interval); + void schedule_i(ACE_Timer_Node_T<TYPE>* n, const ACE_Time_Value& exp); + ACE_Timer_Node_T<TYPE>* find_node(long timer_id) const; + void cancel_i (ACE_Timer_Node_T<TYPE>* n, int skip_close); + void unlink (ACE_Timer_Node_T<TYPE>* n); + ACE_Timer_Node_T<TYPE>* get_first_i(void) const; private: diff --git a/ace/Timer_Queue.h b/ace/Timer_Queue.h index 54a0a8f1137..999dc5ac7d5 100644 --- a/ace/Timer_Queue.h +++ b/ace/Timer_Queue.h @@ -6,7 +6,7 @@ * * $Id$ * - * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> and + * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> and * Irfan Pyarali <irfan@cs.wustl.edu>. */ //============================================================================= diff --git a/ace/Timer_Queue_T.cpp b/ace/Timer_Queue_T.cpp index 9d77576261c..44ce2d61121 100644 --- a/ace/Timer_Queue_T.cpp +++ b/ace/Timer_Queue_T.cpp @@ -12,6 +12,7 @@ #include "ace/Signal.h" #include "ace/Timer_Queue_T.h" #include "ace/Log_Msg.h" +#include "ace/Reactor_Timer_Interface.h" #if !defined (__ACE_INLINE__) #include "ace/Timer_Queue_T.i" @@ -45,8 +46,6 @@ ACE_Timer_Node_T<TYPE>::~ACE_Timer_Node_T (void) ACE_TRACE ("ACE_Timer_Node_T::~ACE_Timer_Node_T"); } - - template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_Timer_Queue_Iterator_T<TYPE, FUNCTOR, ACE_LOCK>::ACE_Timer_Queue_Iterator_T (void) { @@ -201,6 +200,33 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::mutex (void) return this->mutex_; } +template <class TYPE, class FUNCTOR, class ACE_LOCK> long +ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::schedule (const TYPE &type, + const void *act, + const ACE_Time_Value &future_time, + const ACE_Time_Value &interval) +{ + ACE_MT (ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->mutex_, -1)); + + // Schedule the timer. + int result = + this->schedule_i (type, + act, + future_time, + interval); + + // Return on failure. + if (result == -1) + return result; + + // Inform upcall functor of successful registration. + this->upcall_functor ().registration (*this, + type, + act); + + // Return result; + return result; +} // Run the <handle_timeout> method for all Timers whose values are <= // <cur_time>. @@ -224,8 +250,13 @@ 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) { - // call the functor - this->upcall (info.type_, info.act_, cur_time); + const void *upcall_act = 0; + + this->preinvoke (info, cur_time, upcall_act); + + this->upcall (info, cur_time); + + this->postinvoke (info, cur_time, upcall_act); number_of_timers_expired++; @@ -235,7 +266,6 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::expire (const ACE_Time_Value &cur_ti return number_of_timers_expired; } - template <class TYPE, class FUNCTOR, class ACE_LOCK> int ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::dispatch_info_i (const ACE_Time_Value &cur_time, ACE_Timer_Node_Dispatch_Info_T<TYPE> &info) @@ -260,7 +290,8 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::dispatch_info_i (const ACE_Time_Valu // Make sure that we skip past values that have already // "expired". do - expired->set_timer_value (expired->get_timer_value () + expired->get_interval ()); + expired->set_timer_value (expired->get_timer_value () + + expired->get_interval ()); while (expired->get_timer_value () <= cur_time); // Since this is an interval timer, we need to reschedule @@ -279,7 +310,6 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::dispatch_info_i (const ACE_Time_Valu return 0; } - template <class TYPE, class FUNCTOR, class ACE_LOCK> void ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::return_node (ACE_Timer_Node_T<TYPE> *node) { @@ -299,51 +329,122 @@ ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::~ACE_Event_Handler_Handle_Tim } template <class ACE_LOCK> int +ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::registration (TIMER_QUEUE &, + ACE_Event_Handler *event_handler, + const void *) +{ + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + } + + return 0; +} + +template <class ACE_LOCK> int +ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::preinvoke (TIMER_QUEUE & /* timer_queue */, + ACE_Event_Handler *event_handler, + const void * /* timer_act */, + int /* recurring_timer */, + const ACE_Time_Value & /* cur_time */, + const void *&upcall_act) +{ + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + + upcall_act = &this->requires_reference_counting_; + } + + return 0; +} + +template <class ACE_LOCK> int +ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::postinvoke (TIMER_QUEUE & /* timer_queue */, + ACE_Event_Handler *event_handler, + const void * /* timer_act */, + int /* recurring_timer */, + const ACE_Time_Value & /* cur_time */, + const void *upcall_act) +{ + if (upcall_act == &this->requires_reference_counting_) + { + event_handler->remove_reference (); + } + + return 0; +} + +template <class ACE_LOCK> int ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::timeout (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler, + ACE_Event_Handler *event_handler, const void *act, + int recurring_timer, const ACE_Time_Value &cur_time) { - // Upcall to the <handler>s handle_timeout() method. - if (handler->handle_timeout (cur_time, act) == -1) + int requires_reference_counting = 0; + + if (!recurring_timer) { -#if 0 - // Commented out until we figure out how to break the coupling that results... - if (handler->reactor ()) - // Call the reactor's cancel_timer() method to minimize locking. - handler->reactor ()->cancel_timer (handler, 0); // 0 means "call handle_close()". + requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + } + + // Upcall to the <handler>s handle_timeout method. + if (event_handler->handle_timeout (cur_time, act) == -1) + { + if (event_handler->reactor ()) + event_handler->reactor_timer_interface ()->cancel_timer (event_handler, 0); else -#endif - timer_queue.cancel (handler, 0); + timer_queue.cancel (event_handler, 0); // 0 means "call handle_close()". + } + + if (!recurring_timer && + requires_reference_counting) + { + event_handler->remove_reference (); } return 0; } template <class ACE_LOCK> int -ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::cancellation (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler) +ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::cancellation (TIMER_QUEUE &, + ACE_Event_Handler *event_handler, + int dont_call) { - ACE_UNUSED_ARG (timer_queue); + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; // Upcall to the <handler>s handle_close method - handler->handle_close (ACE_INVALID_HANDLE, - ACE_Event_Handler::TIMER_MASK); + if (dont_call == 0) + event_handler->handle_close (ACE_INVALID_HANDLE, + ACE_Event_Handler::TIMER_MASK); + + if (requires_reference_counting) + event_handler->remove_reference (); + return 0; } template <class ACE_LOCK> int ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::deletion (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler, - const void *arg) + ACE_Event_Handler *event_handler, + const void *) { - ACE_UNUSED_ARG (timer_queue); - ACE_UNUSED_ARG (handler); - ACE_UNUSED_ARG (arg); - - // Does nothing - - return 0; + return this->cancellation (timer_queue, + event_handler, + 0); } -#endif /* ACE_TIMER_QUEUE_T_C*/ +#endif /* ACE_TIMER_QUEUE_T_C */ diff --git a/ace/Timer_Queue_T.h b/ace/Timer_Queue_T.h index 1cae4f56e8d..d0a10ccf3ec 100644 --- a/ace/Timer_Queue_T.h +++ b/ace/Timer_Queue_T.h @@ -22,7 +22,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "ace/Test_and_Set.h" +#include "ace/Event_Handler.h" /** * @class ACE_Timer_Node_Dispatch_Info_T @@ -39,6 +39,9 @@ public: /// Asynchronous completion token associated with the timer. const void *act_; + + /// Flag to check if the timer is recurring. + int recurring_timer_; }; /** @@ -226,9 +229,9 @@ public: virtual const ACE_Time_Value &earliest_time (void) const = 0; /** - * Schedule <type> that will expire at <future_time>, - * which is specified in absolute time. If it expires then <act> is - * passed in as the value to the <functor>. If <interval> is != to + * Schedule <type> that will expire at <future_time>, which is + * specified in absolute time. If it expires then <act> is passed + * in as the value to the <functor>. If <interval> is != to * <ACE_Time_Value::zero> then it is used to reschedule the <type> * automatically, using relative time to the current <gettimeofday>. * This method returns a <timer_id> that uniquely identifies the the @@ -243,7 +246,7 @@ public: virtual long schedule (const TYPE &type, const void *act, const ACE_Time_Value &future_time, - const ACE_Time_Value &interval = ACE_Time_Value::zero) = 0; + const ACE_Time_Value &interval = ACE_Time_Value::zero); /** * Resets the interval of the timer represented by <timer_id> to @@ -291,8 +294,8 @@ public: * there is a node whose value <= <cur_time> else returns a 0. * */ - int dispatch_info (const ACE_Time_Value ¤t_time, - ACE_Timer_Node_Dispatch_Info_T<TYPE> &info); + virtual int dispatch_info (const ACE_Time_Value ¤t_time, + ACE_Timer_Node_Dispatch_Info_T<TYPE> &info); /** * Run the <functor> for all timers whose values are <= @@ -346,7 +349,7 @@ public: /// Determine the next event to timeout. Returns <max> if there are /// no pending timers or if all pending timers are longer than max. - /// This method acquires a lock internally since it modifies internal state. + /// This method acquires a lock internally since it modifies internal state. virtual ACE_Time_Value *calculate_timeout (ACE_Time_Value *max); /** @@ -354,7 +357,7 @@ public: * no pending timers or if all pending timers are longer than max. * <the_timeout> should be a pointer to storage for the timeout value, * and this value is also returned. This method does not acquire a - * lock internally since it doesn't modify internal state. If you + * lock internally since it doesn't modify internal state. If you * need to call this method when the queue is being modified * concurrently, however, you should make sure to acquire the <mutex()> * externally before making the call. @@ -390,14 +393,28 @@ public: /// after it is returned by a method like <remove_first>. virtual void return_node (ACE_Timer_Node_T<TYPE> *); + /// This method will call the preinvoke() on <functor>. + void preinvoke (ACE_Timer_Node_Dispatch_Info_T<TYPE> &info, + const ACE_Time_Value &cur_time, + const void *&upcall_act); + + /// This method will call the timeout() on <functor>. + void upcall (ACE_Timer_Node_Dispatch_Info_T<TYPE> &info, + const ACE_Time_Value &cur_time); - /// This method will call the <functor> with the <type>, <act> and - /// <cur_time> - /* virtual */ void upcall (TYPE &type, - const void *act, - const ACE_Time_Value &cur_time); + /// This method will call the postinvoke() on <functor>. + void postinvoke (ACE_Timer_Node_Dispatch_Info_T<TYPE> &info, + const ACE_Time_Value &cur_time, + const void *upcall_act); protected: + + /// Schedule a timer. + virtual long schedule_i (const TYPE &type, + const void *act, + const ACE_Time_Value &future_time, + const ACE_Time_Value &interval) = 0; + /// Reschedule an "interval" <ACE_Timer_Node>. virtual void reschedule (ACE_Timer_Node_T<TYPE> *) = 0; @@ -408,8 +425,8 @@ protected: virtual void free_node (ACE_Timer_Node_T<TYPE> *); /// Non-locking version of dispatch_info () - int dispatch_info_i (const ACE_Time_Value ¤t_time, - ACE_Timer_Node_Dispatch_Info_T<TYPE> &info); + virtual int dispatch_info_i (const ACE_Time_Value ¤t_time, + ACE_Timer_Node_Dispatch_Info_T<TYPE> &info); /// Synchronization variable for <ACE_Timer_Queue>. /// NOTE: the right name would be lock_, but HP/C++ will choke on that! @@ -467,22 +484,51 @@ public: /// Destructor. ~ACE_Event_Handler_Handle_Timeout_Upcall (void); - /// This method is called when the timer expires + /// This method is called when a timer is registered. + int registration (TIMER_QUEUE &timer_queue, + ACE_Event_Handler *handler, + const void *arg); + + /// This method is called before the timer expires. + int preinvoke (TIMER_QUEUE &timer_queue, + ACE_Event_Handler *handler, + const void *arg, + int recurring_timer, + const ACE_Time_Value &cur_time, + const void *&upcall_act); + + /// This method is called when the timer expires. int timeout (TIMER_QUEUE &timer_queue, ACE_Event_Handler *handler, const void *arg, + int recurring_timer, const ACE_Time_Value &cur_time); + /// This method is called after the timer expires. + int postinvoke (TIMER_QUEUE &timer_queue, + ACE_Event_Handler *handler, + const void *arg, + int recurring_timer, + const ACE_Time_Value &cur_time, + const void *upcall_act); + /// This method is called when the timer is cancelled int cancellation (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler); + ACE_Event_Handler *handler, + int dont_call); /// This method is called when the timer queue is destroyed and /// the timer is still contained in it int deletion (TIMER_QUEUE &timer_queue, ACE_Event_Handler *handler, const void *arg); + private: + + /// Flag indicating that reference counting is required for this + /// event handler upcall. + int requires_reference_counting_; + // = Don't allow these operations for now. ACE_UNIMPLEMENTED_FUNC (ACE_Event_Handler_Handle_Timeout_Upcall (const ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK> &)) ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK> &)) diff --git a/ace/Timer_Queue_T.i b/ace/Timer_Queue_T.i index 8af63669a6f..5a72678f105 100644 --- a/ace/Timer_Queue_T.i +++ b/ace/Timer_Queue_T.i @@ -126,6 +126,8 @@ ACE_Timer_Node_T<TYPE>::get_dispatch_info (ACE_Timer_Node_Dispatch_Info_T<TYPE> // Yes, do a copy info.type_ = this->type_; info.act_ = this->act_; + info.recurring_timer_ = + this->interval_ > ACE_Time_Value::zero; } template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_INLINE void @@ -160,13 +162,41 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::dispatch_info (const ACE_Time_Value } template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_INLINE void -ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::upcall (TYPE &type, - const void *act, - const ACE_Time_Value &cur_time) +ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::upcall (ACE_Timer_Node_Dispatch_Info_T<TYPE> &info, + const ACE_Time_Value &cur_time) { - this->upcall_functor ().timeout (*this, type, act, cur_time); + this->upcall_functor ().timeout (*this, + info.type_, + info.act_, + info.recurring_timer_, + cur_time); } +template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_INLINE void +ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::preinvoke (ACE_Timer_Node_Dispatch_Info_T<TYPE> &info, + const ACE_Time_Value &cur_time, + const void *&upcall_act) +{ + this->upcall_functor ().preinvoke (*this, + info.type_, + info.act_, + info.recurring_timer_, + cur_time, + upcall_act); +} + +template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_INLINE void +ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::postinvoke (ACE_Timer_Node_Dispatch_Info_T<TYPE> &info, + const ACE_Time_Value &cur_time, + const void *upcall_act) +{ + this->upcall_functor ().postinvoke (*this, + info.type_, + info.act_, + info.recurring_timer_, + cur_time, + upcall_act); +} template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_INLINE ACE_Time_Value ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::gettimeofday (void) diff --git a/ace/Timer_Wheel_T.cpp b/ace/Timer_Wheel_T.cpp index 2272210f92f..cd4e91cc103 100644 --- a/ace/Timer_Wheel_T.cpp +++ b/ace/Timer_Wheel_T.cpp @@ -92,24 +92,24 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::ACE_Timer_Wheel_T template <class TYPE, class FUNCTOR, class ACE_LOCK> int ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::power2bits (int n, - int min_bits, + int min_bits, int max_bits) { int max = (1 << max_bits) - 1; - if (n > max) + if (n > max) return max_bits; // count the bits in n. int i = 0; int tmp = n; - do + do { tmp >>= 1; ++i; - } + } while (tmp != 0); - if (i <= min_bits) + if (i <= min_bits) return min_bits; // Which is nearest? @@ -177,7 +177,9 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::~ACE_Timer_Wheel_T (void) for (ACE_Timer_Node_T<TYPE>* n = root->get_next (); n != root;) { ACE_Timer_Node_T<TYPE>* next = n->get_next (); - this->upcall_functor ().deletion (*this, n->get_type (), n->get_act ()); + this->upcall_functor ().deletion (*this, + n->get_type (), + n->get_act ()); this->free_node (n); n = next; } @@ -380,15 +382,12 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::generate_timer_id (u_int spoke) * -1 on failure. */ template <class TYPE, class FUNCTOR, class ACE_LOCK> long -ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::schedule ( - const TYPE& type, - const void* act, - const ACE_Time_Value& future_time, - const ACE_Time_Value& interval - ) +ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::schedule_i (const TYPE& type, + const void* act, + const ACE_Time_Value& future_time, + const ACE_Time_Value& interval) { ACE_TRACE ("ACE_Timer_Wheel_T::schedule"); - ACE_MT (ACE_GUARD_RETURN (ACE_LOCK, ace_mon, this->mutex_, -1)); ACE_Timer_Node_T<TYPE>* n = this->alloc_node (); @@ -533,8 +532,8 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (const TYPE& type, int skip_c ACE_Timer_Node_T<TYPE>* tmp = n; n = n->get_next (); - int always_skip_close = 1; // todo : Is this correct? - this->cancel_i (tmp, always_skip_close); + + this->cancel_i (tmp, skip_close); } else { @@ -547,9 +546,6 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::cancel (const TYPE& type, int skip_c this->recalc_earliest (last); } - if (!skip_close) // && num_canceled > 0) - this->upcall_functor().cancellation (*this, type); - return num_canceled; } @@ -600,14 +596,16 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::cancel_i (ACE_Timer_Node_T<TYPE>* n, //ACE_ERROR((LM_ERROR, "Canceling %x\n", (long) n)); this->unlink (n); this->free_node (n); - if (!skip_close) - this->upcall_functor ().cancellation (*this, n->get_type ()); + + this->upcall_functor ().cancellation (*this, + n->get_type (), + skip_close); } /// There are a few places where we have to figure out which timer /// will expire next. This method makes the assumption that spokes /// are always sorted, and that timers are always in the correct spoke -/// determined from their expiration time. +/// determined from their expiration time. /// The last time is always passed in, even though you can often calculate /// it as get_first()->get_timer_value(). template <class TYPE, class FUNCTOR, class ACE_LOCK> void @@ -619,7 +617,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::recalc_earliest return; ACE_Time_Value et = ACE_Time_Value::zero; - + u_int spoke = this->earliest_spoke_; // We will have to go around the wheel at most one time. @@ -655,14 +653,14 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::dump (void) const { ACE_TRACE ("ACE_Timer_Wheel_T::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - + ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\nspoke_count_ = %d"), this->spoke_count_)); ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\nresolution_ = %d"), 1 << this->res_bits_)); ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\nwheel_ = \n"))); - + for (u_int i = 0; i < this->spoke_count_; ++i) { ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("%d\n"), i)); @@ -674,7 +672,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::dump (void) const n->dump (); } } - + ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } @@ -720,7 +718,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::remove_first_expired (const ACE_Time * * @return The earliest timer node. */ -template <class TYPE, class FUNCTOR, class ACE_LOCK> +template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_Timer_Node_T<TYPE>* ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::get_first (void) { @@ -728,7 +726,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::get_first (void) return this->get_first_i (); } -template <class TYPE, class FUNCTOR, class ACE_LOCK> +template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_Timer_Node_T<TYPE>* ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::get_first_i (void) const { @@ -743,7 +741,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::get_first_i (void) const /** * @return The iterator */ -template <class TYPE, class FUNCTOR, class ACE_LOCK> +template <class TYPE, class FUNCTOR, class ACE_LOCK> ACE_Timer_Queue_Iterator_T<TYPE, FUNCTOR, ACE_LOCK>& ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::iter (void) { @@ -763,7 +761,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::expire () /** * This is a specialized version of expire that is more suited for the -* internal data representation. +* internal data representation. * * @param cur_time The time to expire timers up to. * @@ -780,15 +778,32 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::expire (const ACE_Time_Value& cur_ti while (n != 0) { - ++ expcount; + ++expcount; //ACE_ERROR((LM_ERROR, "Expiring %x\n", (long) n)); - this->upcall (n->get_type (), n->get_act (), cur_time); + ACE_Timer_Node_Dispatch_Info_T<TYPE> info; + + // Get the dispatch info + n->get_dispatch_info (info); + + const void *upcall_act = 0; + + this->preinvoke (info, cur_time, upcall_act); + + this->upcall (info, cur_time); + + this->postinvoke (info, cur_time, upcall_act); if (n->get_interval () > ACE_Time_Value::zero) { - n->set_timer_value (cur_time + n->get_interval ()); + // Make sure that we skip past values that have already + // "expired". + do + n->set_timer_value (n->get_timer_value () + + n->get_interval ()); + while (n->get_timer_value () <= cur_time); + this->reschedule (n); } else @@ -806,7 +821,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::expire (const ACE_Time_Value& cur_ti /////////////////////////////////////////////////////////////////////////// // ACE_Timer_Wheel_Iterator_T - + /** * Just initializes the iterator with a ACE_Timer_Wheel_T and then calls * first() to initialize the rest of itself. @@ -814,7 +829,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::expire (const ACE_Time_Value& cur_ti * @param wheel A reference for a timer queue to iterate over */ template <class TYPE, class FUNCTOR, class ACE_LOCK> -ACE_Timer_Wheel_Iterator_T<TYPE,FUNCTOR,ACE_LOCK>::ACE_Timer_Wheel_Iterator_T +ACE_Timer_Wheel_Iterator_T<TYPE,FUNCTOR,ACE_LOCK>::ACE_Timer_Wheel_Iterator_T (Wheel& wheel) : timer_wheel_ (wheel) { diff --git a/ace/Timer_Wheel_T.h b/ace/Timer_Wheel_T.h index 9505d918741..62f7ab916f1 100644 --- a/ace/Timer_Wheel_T.h +++ b/ace/Timer_Wheel_T.h @@ -119,13 +119,6 @@ public: /// Must be called on a non-empty queue. virtual const ACE_Time_Value& earliest_time (void) const; - /// Schedules a timer. - virtual long schedule (const TYPE& type, - const void* act, - const ACE_Time_Value& future_time, - const ACE_Time_Value& interval - = ACE_Time_Value::zero); - /// Changes the interval of a timer (and can make it periodic or non /// periodic by setting it to ACE_Time_Value::zero or not). virtual int reset_interval (long timer_id, @@ -165,7 +158,15 @@ public: /// Reads the earliest node from the queue and returns it. virtual ACE_Timer_Node_T<TYPE>* get_first (void); - + +protected: + + /// Schedules a timer. + virtual long schedule_i (const TYPE& type, + const void* act, + const ACE_Time_Value& future_time, + const ACE_Time_Value& interval); + private: // The following are documented in the .cpp file. ACE_Timer_Node_T<TYPE>* get_first_i (void) const; diff --git a/ace/WFMO_Reactor.cpp b/ace/WFMO_Reactor.cpp index 3f55ad7a693..be24cc51913 100644 --- a/ace/WFMO_Reactor.cpp +++ b/ace/WFMO_Reactor.cpp @@ -652,6 +652,15 @@ ACE_WFMO_Reactor_Handler_Repository::bind_i (int io_entry, this->handles_to_be_added_++; + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + } + // Wake up all threads in WaitForMultipleObjects so that they can // reconsult the handle set this->wfmo_reactor_.wakeup_all_threads (); @@ -672,7 +681,8 @@ ACE_WFMO_Reactor_Handler_Repository::make_changes_in_current_infos (void) // have been schedule for deletion if (this->handles_to_be_deleted_ > 0 || this->handles_to_be_suspended_ > 0) { - for (size_t i = 0; i < this->max_handlep1_; i++) + size_t i = 0; + while (i < this->max_handlep1_) { // This stuff is necessary here, since we should not make // the upcall until all the internal data structures have @@ -747,11 +757,29 @@ ACE_WFMO_Reactor_Handler_Repository::make_changes_in_current_infos (void) this->current_handles_[last_valid_slot] = ACE_INVALID_HANDLE; this->max_handlep1_--; } + else + { + // This current entry is not up for deletion or + // suspension. Proceed to the next entry in the current + // handles. + ++i; + } // Now that all internal structures have been updated, make // the upcall. if (event_handler != 0) - event_handler->handle_close (handle, masks); + { + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + event_handler->handle_close (handle, masks); + + if (requires_reference_counting) + { + event_handler->remove_reference (); + } + } } } @@ -764,7 +792,8 @@ ACE_WFMO_Reactor_Handler_Repository::make_changes_in_suspension_infos (void) // Go through the <suspended_handle> array if (this->handles_to_be_deleted_ > 0 || this->handles_to_be_resumed_ > 0) { - for (size_t i = 0; i < this->suspended_handles_; i++) + size_t i = 0; + while (i < this->suspended_handles_) { // This stuff is necessary here, since we should not make // the upcall until all the internal data structures have @@ -836,11 +865,29 @@ ACE_WFMO_Reactor_Handler_Repository::make_changes_in_suspension_infos (void) this->current_suspended_info_[last_valid_slot].reset (); this->suspended_handles_--; } + else + { + // This current entry is not up for deletion or + // resumption. Proceed to the next entry in the + // suspended handles. + ++i; + } // Now that all internal structures have been updated, make // the upcall. if (event_handler != 0) - event_handler->handle_close (handle, masks); + { + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + event_handler->handle_close (handle, masks); + + if (requires_reference_counting) + { + event_handler->remove_reference (); + } + } } } @@ -920,7 +967,18 @@ ACE_WFMO_Reactor_Handler_Repository::make_changes_in_to_be_added_infos (void) // Now that all internal structures have been updated, make the // upcall. if (event_handler != 0) - event_handler->handle_close (handle, masks); + { + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + event_handler->handle_close (handle, masks); + + if (requires_reference_counting) + { + event_handler->remove_reference (); + } + } } // Since all to be added handles have been taken care of, reset the @@ -1282,12 +1340,15 @@ ACE_WFMO_Reactor::register_handler_i (ACE_HANDLE event_handle, // If this is a Winsock 1 system, the underlying event assignment will // not work, so don't try. Winsock 1 must use ACE_Select_Reactor for // reacting to socket activity. + #if !defined (ACE_HAS_WINSOCK2) || (ACE_HAS_WINSOCK2 == 0) + ACE_UNUSED_ARG (event_handle); ACE_UNUSED_ARG (io_handle); ACE_UNUSED_ARG (event_handler); ACE_UNUSED_ARG (new_masks); ACE_NOTSUP_RETURN (-1); + #else // Make sure that the <handle> is valid @@ -1361,7 +1422,9 @@ ACE_WFMO_Reactor::register_handler_i (ACE_HANDLE event_handle, } else return -1; -#endif /* ACE_HAS_PHARLAP */ + +#endif /* ACE_HAS_WINSOCK2 || ACE_HAS_WINSOCK2 == 0 */ + } int @@ -1467,15 +1530,22 @@ ACE_WFMO_Reactor_Handler_Repository::modify_network_events_i (ACE_HANDLE io_hand return found; } -int +ACE_Event_Handler * +ACE_WFMO_Reactor_Handler_Repository::find_handler (ACE_HANDLE handle) +{ + long existing_masks_ignored = 0; + return this->handler (handle, + existing_masks_ignored); +} + +ACE_Event_Handler * ACE_WFMO_Reactor_Handler_Repository::handler (ACE_HANDLE handle, - ACE_Reactor_Mask user_masks, - ACE_Event_Handler **user_event_handler) + long &existing_masks) { int found = 0; size_t i = 0; ACE_Event_Handler *event_handler = 0; - long existing_masks = 0; + existing_masks = 0; // Look for the handle first @@ -1521,7 +1591,36 @@ ACE_WFMO_Reactor_Handler_Repository::handler (ACE_HANDLE handle, existing_masks = this->to_be_added_info_[i].network_events_; } - // If the handle is not found, return failure. + if (event_handler) + { + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + } + } + + return event_handler; +} + +int +ACE_WFMO_Reactor_Handler_Repository::handler (ACE_HANDLE handle, + ACE_Reactor_Mask user_masks, + ACE_Event_Handler **user_event_handler) +{ + long existing_masks = 0; + int found = 0; + + ACE_Event_Handler_var safe_event_handler = + this->handler (handle, + existing_masks); + + if (safe_event_handler.handler ()) + found = 1; + if (!found) return -1; @@ -1529,8 +1628,8 @@ ACE_WFMO_Reactor_Handler_Repository::handler (ACE_HANDLE handle, // are on. if (found && ACE_BIT_ENABLED (user_masks, ACE_Event_Handler::READ_MASK)) - if (!ACE_BIT_ENABLED (existing_masks, FD_READ) - && !ACE_BIT_ENABLED (existing_masks, FD_CLOSE)) + if (!ACE_BIT_ENABLED (existing_masks, FD_READ) && + !ACE_BIT_ENABLED (existing_masks, FD_CLOSE)) found = 0; if (found && @@ -1565,7 +1664,7 @@ ACE_WFMO_Reactor_Handler_Repository::handler (ACE_HANDLE handle, if (found && user_event_handler) - *user_event_handler = event_handler; + *user_event_handler = safe_event_handler.release (); if (found) return 0; @@ -1899,14 +1998,29 @@ ACE_WFMO_Reactor::simple_dispatch_handler (DWORD slot, // siginfo_t is an ACE - specific fabrication. Constructor exists. siginfo_t sig (event_handle); - ACE_Event_Handler *eh = + ACE_Event_Handler *event_handler = this->handler_rep_.current_info ()[slot].event_handler_; + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + } + // Upcall - if (eh->handle_signal (0, &sig) == -1) + if (event_handler->handle_signal (0, &sig) == -1) this->handler_rep_.unbind (event_handle, ACE_Event_Handler::NULL_MASK); + // Call remove_reference() if needed. + if (requires_reference_counting) + { + event_handler->remove_reference (); + } + return 0; } @@ -1941,10 +2055,30 @@ ACE_WFMO_Reactor::complex_dispatch_handler (DWORD slot, events.lNetworkEvents &= current_info.network_events_; while (events.lNetworkEvents != 0) { + ACE_Event_Handler *event_handler = + current_info.event_handler_; + + int reference_counting_required = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + // Call add_reference() if needed. + if (reference_counting_required) + { + event_handler->add_reference (); + } + // Upcall problems |= this->upcall (current_info.event_handler_, current_info.io_handle_, events); + + // Call remove_reference() if needed. + if (reference_counting_required) + { + event_handler->remove_reference (); + } + if (this->handler_rep_.scheduled_for_deletion (slot)) break; } @@ -2276,25 +2410,32 @@ ACE_WFMO_Reactor_Notify::handle_signal (int signum, if (buffer->eh_ != 0) { + ACE_Event_Handler *event_handler = + buffer->eh_; + + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + int result = 0; switch (buffer->mask_) { case ACE_Event_Handler::READ_MASK: case ACE_Event_Handler::ACCEPT_MASK: - result = buffer->eh_->handle_input (ACE_INVALID_HANDLE); + result = event_handler->handle_input (ACE_INVALID_HANDLE); break; case ACE_Event_Handler::WRITE_MASK: - result = buffer->eh_->handle_output (ACE_INVALID_HANDLE); + result = event_handler->handle_output (ACE_INVALID_HANDLE); break; case ACE_Event_Handler::EXCEPT_MASK: - result = buffer->eh_->handle_exception (ACE_INVALID_HANDLE); + result = event_handler->handle_exception (ACE_INVALID_HANDLE); break; case ACE_Event_Handler::QOS_MASK: - result = buffer->eh_->handle_qos (ACE_INVALID_HANDLE); + result = event_handler->handle_qos (ACE_INVALID_HANDLE); break; case ACE_Event_Handler::GROUP_QOS_MASK: - result = buffer->eh_->handle_group_qos (ACE_INVALID_HANDLE); + result = event_handler->handle_group_qos (ACE_INVALID_HANDLE); break; default: ACE_ERROR ((LM_ERROR, @@ -2302,9 +2443,15 @@ ACE_WFMO_Reactor_Notify::handle_signal (int signum, buffer->mask_)); break; } + if (result == -1) - buffer->eh_->handle_close (ACE_INVALID_HANDLE, - ACE_Event_Handler::EXCEPT_MASK); + event_handler->handle_close (ACE_INVALID_HANDLE, + ACE_Event_Handler::EXCEPT_MASK); + + if (requires_reference_counting) + { + event_handler->remove_reference (); + } } // Make sure to delete the memory regardless of success or @@ -2333,11 +2480,11 @@ ACE_WFMO_Reactor_Notify::handle_signal (int signum, // thread of control. int -ACE_WFMO_Reactor_Notify::notify (ACE_Event_Handler *eh, +ACE_WFMO_Reactor_Notify::notify (ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask, ACE_Time_Value *timeout) { - if (eh != 0) + if (event_handler != 0) { ACE_Message_Block *mb = 0; ACE_NEW_RETURN (mb, @@ -2346,7 +2493,7 @@ ACE_WFMO_Reactor_Notify::notify (ACE_Event_Handler *eh, ACE_Notification_Buffer *buffer = (ACE_Notification_Buffer *) mb->base (); - buffer->eh_ = eh; + buffer->eh_ = event_handler; buffer->mask_ = mask; // Convert from relative time to absolute time by adding the @@ -2361,6 +2508,15 @@ ACE_WFMO_Reactor_Notify::notify (ACE_Event_Handler *eh, mb->release (); return -1; } + + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->add_reference (); + } } return this->wakeup_one_thread_.signal (); @@ -2433,22 +2589,33 @@ ACE_WFMO_Reactor_Notify::purge_pending_notifications (ACE_Event_Handler *eh, ACE_BIT_DISABLED (buffer->mask_, ~mask)) // the existing notification mask // is left with nothing when // applying the mask - { - mb->release (); - ++number_purged; - } + { + ACE_Event_Handler *event_handler = eh; + + int requires_reference_counting = + event_handler->reference_counting_policy ().value () == + ACE_Event_Handler::Reference_Counting_Policy::ENABLED; + + if (requires_reference_counting) + { + event_handler->remove_reference (); + } + + mb->release (); + ++number_purged; + } else - { - // To preserve it, move it to the local_queue. But first, if - // this is not a Reactor notify (it is for a - // particularhandler), and it matches the specified handler - // (or purging all), then apply the mask - if ((0 != buffer->eh_) && - (0 == eh || eh == buffer->eh_)) - ACE_CLR_BITS(buffer->mask_, mask); - if (-1 == local_queue.enqueue_head (mb)) - return -1; - } + { + // To preserve it, move it to the local_queue. But first, if + // this is not a Reactor notify (it is for a + // particularhandler), and it matches the specified handler + // (or purging all), then apply the mask + if ((0 != buffer->eh_) && + (0 == eh || eh == buffer->eh_)) + ACE_CLR_BITS(buffer->mask_, mask); + if (-1 == local_queue.enqueue_head (mb)) + return -1; + } } if (this->message_queue_.message_count ()) diff --git a/ace/WFMO_Reactor.h b/ace/WFMO_Reactor.h index e8c81546c09..374858e28cf 100644 --- a/ace/WFMO_Reactor.h +++ b/ace/WFMO_Reactor.h @@ -403,6 +403,12 @@ public: ACE_Reactor_Mask to_be_removed_masks); /** + * Return the Event_Handler associated with <handle>. Return 0 if + * <handle> is not registered. + */ + ACE_Event_Handler *find_handler (ACE_HANDLE handle); + + /** * Check to see if <handle> is associated with a valid Event_Handler * bound to <mask>. Return the <event_handler> associated with this * <handler> if <event_handler> != 0. @@ -411,6 +417,13 @@ public: ACE_Reactor_Mask mask, ACE_Event_Handler **event_handler = 0); + /** + * Check to see if <handle> is associated with a valid + * Event_Handler. Return Event_Handler and associated masks. + */ + ACE_Event_Handler *handler (ACE_HANDLE handle, + long &existing_masks); + /// Dump the state of an object. void dump (void) const; @@ -1057,6 +1070,12 @@ public: // = Assorted helper methods. /** + * Return the Event_Handler associated with <handle>. Return 0 if + * <handle> is not registered. + */ + ACE_Event_Handler *find_handler (ACE_HANDLE handle); + + /** * Check to see if <handle> is associated with a valid Event_Handler * bound to <mask>. Return the <event_handler> associated with this * <handler> if <event_handler> != 0. diff --git a/ace/WFMO_Reactor.i b/ace/WFMO_Reactor.i index 98c6c5d81ba..472a2d20fdc 100644 --- a/ace/WFMO_Reactor.i +++ b/ace/WFMO_Reactor.i @@ -1082,11 +1082,21 @@ ACE_WFMO_Reactor::ready_ops (ACE_HANDLE handle, ACE_NOTSUP_RETURN (-1); } +ACE_INLINE ACE_Event_Handler * +ACE_WFMO_Reactor::find_handler (ACE_HANDLE handle) +{ + ACE_GUARD_RETURN (ACE_Process_Mutex, ace_mon, this->lock_, 0); + + return this->handler_rep_.find_handler (handle); +} + ACE_INLINE int ACE_WFMO_Reactor::handler (ACE_HANDLE handle, ACE_Reactor_Mask mask, ACE_Event_Handler **event_handler) { + ACE_GUARD_RETURN (ACE_Process_Mutex, ace_mon, this->lock_, -1); + return this->handler_rep_.handler (handle, mask, event_handler); |