diff options
-rw-r--r-- | ChangeLog | 38 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 38 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 38 | ||||
-rw-r--r-- | THANKS | 2 | ||||
-rw-r--r-- | ace/Atomic_Op.i | 12 | ||||
-rw-r--r-- | ace/Filecache.cpp | 2 | ||||
-rw-r--r-- | ace/Makefile | 16449 | ||||
-rw-r--r-- | ace/OS.h | 2 | ||||
-rw-r--r-- | ace/Synch.cpp | 170 | ||||
-rw-r--r-- | ace/Synch.h | 126 | ||||
-rw-r--r-- | ace/Synch.i | 18 | ||||
-rw-r--r-- | ace/Synch_T.h | 6 | ||||
-rw-r--r-- | ace/Timer_Queue_Adapters.cpp | 20 | ||||
-rw-r--r-- | ace/Timer_Queue_Adapters.h | 12 | ||||
-rw-r--r-- | docs/exceptions.html | 4 | ||||
-rw-r--r-- | tests/Makefile | 1 | ||||
-rw-r--r-- | tests/Makefile.bor | 1 | ||||
-rw-r--r-- | tests/Recursive_Condition_Test.cpp | 94 | ||||
-rw-r--r-- | tests/run_test.lst | 1 |
19 files changed, 953 insertions, 16081 deletions
diff --git a/ChangeLog b/ChangeLog index 6c2caa975d2..7efd7824baf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,35 @@ +Wed Jun 19 06:50:54 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + + * tests/run_test.lst: + * tests/Makefile.bor: + * tests/Makefile: Added the new Recursive_Condition_Test. + + * ACE/Timer_Queue_Adapters.{h,cpp}: Enhanced + ACE_Thread_Timer_Queue_Adapter so it uses the new + ACE_Condition<ACE_Recursive_Thread_Mutex>. Thanks to + Stephen Howard <stephen.e.howard@lmco.com> for + suggesting this. + + * ace/Synch_T.h: Added a new RECURSIVE_CONDITION trait in + ACE_NULL_SYNCH and ACE_MT_SYNCH. + + * ace/Synch_T.h: Added a #define for ACE_SYNCH_RECURSIVE_CONDITION + so that we can parameterize it based on threads vs. non-threads. + + * docs/exceptions.html: Updated document to use ACE_RE_THROW + instead of the deprecated ACE_RETHROW macro. Thanks to + Andy Ling <Andy.Ling@Quantel.Com> for reporting this. + + * ace/Timer_Queue_Adapters.h: Changed the order in which + the condition variable and mutex are defined to ensure the + mutex is initialized before we pass it to condition_'s + constructor. + + * ace/Synch.cpp: + * ace/Atomic_Op.i: Replaced ACE_TEMPLATE_SPECIALIZATION with + ACE_TEMPLATE_METHOD_SPECIALIZATION so this will compile correctly + on certain (broken) compilers, such as SunC++ 6.1. + Wed Jun 19 14:25:52 2002 Balachandran Natarajan <bala@cs.wustl.edu> * ace/TP_Reactor.cpp (handle_socket_events): Couple of small @@ -31,6 +63,12 @@ Wed Jun 19 11:57:02 2002 Carlos O'Ryan <coryan@atdesk.com> Tue Jun 18 14:29:26 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + * ace/Synch.{h,i}: Added a new template specialization of ACE_Condition<> + that supports recursive mutexes used in conjunction with ACE + condition variables. Thanks to Michael Lindner + <mikel@attmail.com> and Mike Vitalo <mvitalo@sprynet.com> for + contributing this. + * ace/SOCK_Dgram_Mcast.cpp: Reverted the file to the previous version since somehow things got messed up... diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 6c2caa975d2..7efd7824baf 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,35 @@ +Wed Jun 19 06:50:54 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + + * tests/run_test.lst: + * tests/Makefile.bor: + * tests/Makefile: Added the new Recursive_Condition_Test. + + * ACE/Timer_Queue_Adapters.{h,cpp}: Enhanced + ACE_Thread_Timer_Queue_Adapter so it uses the new + ACE_Condition<ACE_Recursive_Thread_Mutex>. Thanks to + Stephen Howard <stephen.e.howard@lmco.com> for + suggesting this. + + * ace/Synch_T.h: Added a new RECURSIVE_CONDITION trait in + ACE_NULL_SYNCH and ACE_MT_SYNCH. + + * ace/Synch_T.h: Added a #define for ACE_SYNCH_RECURSIVE_CONDITION + so that we can parameterize it based on threads vs. non-threads. + + * docs/exceptions.html: Updated document to use ACE_RE_THROW + instead of the deprecated ACE_RETHROW macro. Thanks to + Andy Ling <Andy.Ling@Quantel.Com> for reporting this. + + * ace/Timer_Queue_Adapters.h: Changed the order in which + the condition variable and mutex are defined to ensure the + mutex is initialized before we pass it to condition_'s + constructor. + + * ace/Synch.cpp: + * ace/Atomic_Op.i: Replaced ACE_TEMPLATE_SPECIALIZATION with + ACE_TEMPLATE_METHOD_SPECIALIZATION so this will compile correctly + on certain (broken) compilers, such as SunC++ 6.1. + Wed Jun 19 14:25:52 2002 Balachandran Natarajan <bala@cs.wustl.edu> * ace/TP_Reactor.cpp (handle_socket_events): Couple of small @@ -31,6 +63,12 @@ Wed Jun 19 11:57:02 2002 Carlos O'Ryan <coryan@atdesk.com> Tue Jun 18 14:29:26 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + * ace/Synch.{h,i}: Added a new template specialization of ACE_Condition<> + that supports recursive mutexes used in conjunction with ACE + condition variables. Thanks to Michael Lindner + <mikel@attmail.com> and Mike Vitalo <mvitalo@sprynet.com> for + contributing this. + * ace/SOCK_Dgram_Mcast.cpp: Reverted the file to the previous version since somehow things got messed up... diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 6c2caa975d2..7efd7824baf 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,35 @@ +Wed Jun 19 06:50:54 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + + * tests/run_test.lst: + * tests/Makefile.bor: + * tests/Makefile: Added the new Recursive_Condition_Test. + + * ACE/Timer_Queue_Adapters.{h,cpp}: Enhanced + ACE_Thread_Timer_Queue_Adapter so it uses the new + ACE_Condition<ACE_Recursive_Thread_Mutex>. Thanks to + Stephen Howard <stephen.e.howard@lmco.com> for + suggesting this. + + * ace/Synch_T.h: Added a new RECURSIVE_CONDITION trait in + ACE_NULL_SYNCH and ACE_MT_SYNCH. + + * ace/Synch_T.h: Added a #define for ACE_SYNCH_RECURSIVE_CONDITION + so that we can parameterize it based on threads vs. non-threads. + + * docs/exceptions.html: Updated document to use ACE_RE_THROW + instead of the deprecated ACE_RETHROW macro. Thanks to + Andy Ling <Andy.Ling@Quantel.Com> for reporting this. + + * ace/Timer_Queue_Adapters.h: Changed the order in which + the condition variable and mutex are defined to ensure the + mutex is initialized before we pass it to condition_'s + constructor. + + * ace/Synch.cpp: + * ace/Atomic_Op.i: Replaced ACE_TEMPLATE_SPECIALIZATION with + ACE_TEMPLATE_METHOD_SPECIALIZATION so this will compile correctly + on certain (broken) compilers, such as SunC++ 6.1. + Wed Jun 19 14:25:52 2002 Balachandran Natarajan <bala@cs.wustl.edu> * ace/TP_Reactor.cpp (handle_socket_events): Couple of small @@ -31,6 +63,12 @@ Wed Jun 19 11:57:02 2002 Carlos O'Ryan <coryan@atdesk.com> Tue Jun 18 14:29:26 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + * ace/Synch.{h,i}: Added a new template specialization of ACE_Condition<> + that supports recursive mutexes used in conjunction with ACE + condition variables. Thanks to Michael Lindner + <mikel@attmail.com> and Mike Vitalo <mvitalo@sprynet.com> for + contributing this. + * ace/SOCK_Dgram_Mcast.cpp: Reverted the file to the previous version since somehow things got messed up... @@ -1533,6 +1533,8 @@ Nick Cross <nick.cross@prismtechnologies.com> Christopher W. Midgley <cmidgley@livevault.com> Wanjia <jiawan@huawei.com> Shanliang Cheng <shanliang@huawei.com> +Andy Ling <Andy.Ling@Quantel.Com> +Stephen Howard <stephen.e.howard@lmco.com> I would particularly like to thank Paul Stephenson, who worked with me at Ericsson in the early 1990's. Paul devised the recursive Makefile diff --git a/ace/Atomic_Op.i b/ace/Atomic_Op.i index 131ece281c4..3bcaefc0d2a 100644 --- a/ace/Atomic_Op.i +++ b/ace/Atomic_Op.i @@ -168,21 +168,21 @@ ACE_Atomic_Op<ACE_LOCK, TYPE>::operator= (const ACE_Atomic_Op_Ex<ACE_LOCK, TYPE> // FUZZ: disable check_for_inline -ACE_TEMPLATE_SPECIALIZATION +ACE_TEMPLATE_METHOD_SPECIALIZATION inline long ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long>::operator++ (void) { return ::InterlockedIncrement (&this->value_); } -ACE_TEMPLATE_SPECIALIZATION +ACE_TEMPLATE_METHOD_SPECIALIZATION inline long ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long>::operator-- (void) { return ::InterlockedDecrement (&this->value_); } -ACE_TEMPLATE_SPECIALIZATION +ACE_TEMPLATE_METHOD_SPECIALIZATION inline void ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long>::operator= (const long &i) { @@ -190,7 +190,7 @@ ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long>::operator= (const long &i) i); } -ACE_TEMPLATE_SPECIALIZATION +ACE_TEMPLATE_METHOD_SPECIALIZATION inline void ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long>::operator= (const ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long> &rhs) { @@ -200,14 +200,14 @@ ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long>::operator= (const ACE_Atomic_Op_Ex<ACE_ #if defined (ACE_HAS_INTERLOCKED_EXCHANGEADD) -ACE_TEMPLATE_SPECIALIZATION +ACE_TEMPLATE_METHOD_SPECIALIZATION inline long ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long>::operator+= (const long &i) { return ::InterlockedExchangeAdd (&this->value_, i); } -ACE_TEMPLATE_SPECIALIZATION +ACE_TEMPLATE_METHOD_SPECIALIZATION inline long ACE_Atomic_Op_Ex<ACE_Thread_Mutex, long>::operator-= (const long &i) { diff --git a/ace/Filecache.cpp b/ace/Filecache.cpp index 1953252fd6a..475ee699bdd 100644 --- a/ace/Filecache.cpp +++ b/ace/Filecache.cpp @@ -140,7 +140,7 @@ ACE_Filecache_Handle::size (void) const #define ACE_Filecache_Hash_Entry \ ACE_Hash_Map_Entry<const ACE_TCHAR *, ACE_Filecache_Object *> -ACE_TEMPLATE_SPECIALIZATION +ACE_TEMPLATE_METHOD_SPECIALIZATION ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (const ACE_TCHAR *const &ext_id, ACE_Filecache_Object *const &int_id, ACE_Filecache_Hash_Entry *next, diff --git a/ace/Makefile b/ace/Makefile index 3d3e1277357..aa9e0a7f487 100644 --- a/ace/Makefile +++ b/ace/Makefile @@ -619,16094 +619,461 @@ endif # GHS # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. -.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 - -.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_Log_Msg_Attributes.h \ - streams.h \ - OS_Log_Msg_Attributes.inl \ - OS.h OS_TLI.h \ - OS_TLI.inl \ - Time_Value.h \ - Time_Value.inl \ - Min_Max.h \ - Trace.h OS.i - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 +.obj/Time_Value.o .obj/Time_Value.so .shobj/Time_Value.o .shobj/Time_Value.so: Time_Value.cpp \ + $(ACE_ROOT)/ace/Time_Value.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/Time_Value.inl \ + $(ACE_ROOT)/ace/Basic_Types.h \ + $(ACE_ROOT)/ace/Basic_Types.i + +.obj/OS_Memory.o .obj/OS_Memory.so .shobj/OS_Memory.o .shobj/OS_Memory.so: OS_Memory.cpp \ + $(ACE_ROOT)/ace/OS_Memory.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl \ + $(ACE_ROOT)/ace/OS_Memory.inl + +.obj/OS_String.o .obj/OS_String.so .shobj/OS_String.o .shobj/OS_String.so: OS_String.cpp \ + $(ACE_ROOT)/ace/OS_String.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Basic_Types.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/Basic_Types.i \ + $(ACE_ROOT)/ace/OS_String.inl \ + $(ACE_ROOT)/ace/OS_Memory.h \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl \ + $(ACE_ROOT)/ace/OS_Memory.inl + +.obj/OS_TLI.o .obj/OS_TLI.so .shobj/OS_TLI.o .shobj/OS_TLI.so: OS_TLI.cpp $(ACE_ROOT)/ace/OS_TLI.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl \ + $(ACE_ROOT)/ace/OS_TLI.inl + +.obj/OS_Errno.o .obj/OS_Errno.so .shobj/OS_Errno.o .shobj/OS_Errno.so: OS_Errno.cpp \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/OS_Errno.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 - -.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 + $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/streams.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl .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 - -.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 \ - 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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Active_Map_Manager_T.i \ - Active_Map_Manager_T.cpp + $(ACE_ROOT)/ace/Copy_Disabled.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl .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 - -.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 + $(ACE_ROOT)/ace/Arg_Shifter.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/OS_String.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/Basic_Types.h \ + $(ACE_ROOT)/ace/Basic_Types.i \ + $(ACE_ROOT)/ace/OS_String.inl \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl .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 \ - Argv_Type_Converter.inl \ - OS_String.h \ - OS_Export.h \ - Basic_Types.h \ - Basic_Types.i \ - OS_String.inl \ - OS_Errno.h \ - OS_Errno.inl - -.obj/Capabilities.o .obj/Capabilities.so .shobj/Capabilities.o .shobj/Capabilities.so: Capabilities.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Capabilities.h \ - Hash_Map_Manager.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 \ - 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 \ - Array_Base.inl \ - Array_Base.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 \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - 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 - -.obj/Configuration.o .obj/Configuration.so .shobj/Configuration.o .shobj/Configuration.so: Configuration.cpp \ - Configuration.h \ - pre.h \ - SString.h \ - String_Base.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 \ - 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 \ - Hash_Map_With_Allocator_T.h \ - Hash_Map_Manager.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - 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 \ - Hash_Map_With_Allocator_T.i \ - Hash_Map_With_Allocator_T.cpp \ - 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 \ - String_Base.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 \ - 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 \ - Hash_Map_With_Allocator_T.h \ - Hash_Map_Manager.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - 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 \ - Hash_Map_With_Allocator_T.i \ - Hash_Map_With_Allocator_T.cpp - -.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 \ - Basic_Types.h \ - Basic_Types.i \ - OS_Log_Msg_Attributes.h \ - streams.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 - -.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 - -.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 - -.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 \ - 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/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 - -.obj/Get_Opt.o .obj/Get_Opt.so .shobj/Get_Opt.o .shobj/Get_Opt.so: Get_Opt.cpp Get_Opt.h \ - pre.h \ - SString.h \ - String_Base.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 \ - 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 \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - 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 \ - 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 \ - Service_Types.i \ - Signal.h \ - Signal.i \ - 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 \ - 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 \ - 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 + $(ACE_ROOT)/ace/Argv_Type_Converter.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Argv_Type_Converter.inl \ + $(ACE_ROOT)/ace/OS_String.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/Basic_Types.h \ + $(ACE_ROOT)/ace/Basic_Types.i \ + $(ACE_ROOT)/ace/OS_String.inl \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl + +.obj/Dirent.o .obj/Dirent.so .shobj/Dirent.o .shobj/Dirent.so: Dirent.cpp $(ACE_ROOT)/ace/Dirent.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/OS_Dirent.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl \ + $(ACE_ROOT)/ace/OS_Dirent.inl \ + $(ACE_ROOT)/ace/Dirent.i \ + $(ACE_ROOT)/ace/Log_Msg.h \ + $(ACE_ROOT)/ace/Global_Macros.h \ + $(ACE_ROOT)/ace/Default_Constants.h \ + $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/Basic_Types.h \ + $(ACE_ROOT)/ace/Basic_Types.i \ + $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ + $(ACE_ROOT)/ace/streams.h \ + $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl .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 - -.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 - -.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 + $(ACE_ROOT)/ace/Connection_Recycling_Strategy.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/Recyclable.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Recyclable.inl + +.obj/Hashable.o .obj/Hashable.so .shobj/Hashable.o .shobj/Hashable.so: Hashable.cpp \ + $(ACE_ROOT)/ace/Hashable.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Hashable.inl + +.obj/Recyclable.o .obj/Recyclable.so .shobj/Recyclable.o .shobj/Recyclable.so: Recyclable.cpp \ + $(ACE_ROOT)/ace/Recyclable.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/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 - -.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 - -.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 - -.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 \ - 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.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - Log_Msg.h \ - Log_Priority.h \ - OS_Log_Msg_Attributes.h \ - OS_Log_Msg_Attributes.inl \ - Malloc_Base.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 \ - Timeprobe.h + $(ACE_ROOT)/ace/Refcountable.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Refcountable.inl .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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Local_Tokens.h \ - Local_Tokens.i \ - Token_Manager.i \ - Thread_Manager.h \ - 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_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 + $(ACE_ROOT)/ace/Method_Request.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Global_Macros.h \ + $(ACE_ROOT)/ace/OS_Export.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 - -.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 \ - String_Base.h \ - String_Base_Const.h \ - String_Base.i \ - String_Base.cpp \ - Auto_Ptr.h \ - Auto_Ptr.i \ - Auto_Ptr.cpp \ - 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 - -.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_Errno.h \ - OS_Errno.inl \ - OS_Log_Msg_Attributes.h \ - streams.h \ - OS_Log_Msg_Attributes.inl \ - OS.h \ - OS_Dirent.h \ - 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 \ - Trace.h OS.i - -.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.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 \ - 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 \ - Service_Types.i \ - Signal.h \ - Signal.i \ - 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 \ - 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 \ - 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 \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp - -.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 - -.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 \ - 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 + $(ACE_ROOT)/ace/String_Base_Const.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl .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 + $(ACE_ROOT)/ace/Log_Msg_Callback.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/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 + $(ACE_ROOT)/ace/Log_Msg_Backend.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl .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 - -.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 - -.obj/Logging_Strategy.o .obj/Logging_Strategy.so .shobj/Logging_Strategy.o .shobj/Logging_Strategy.so: Logging_Strategy.cpp \ - Get_Opt.h \ - pre.h \ - SString.h \ - String_Base.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 \ - 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 \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - 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 \ - 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 \ - Logging_Strategy.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i - -.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 \ - Basic_Types.h \ - Basic_Types.i \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Log_Msg_Attributes.h \ - streams.h \ - OS_Log_Msg_Attributes.inl \ - OS.h \ - OS_Dirent.h \ - 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 \ - OS.i - -.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 \ - 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 \ - Malloc_Base.h - -.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 \ - String_Base.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 \ - 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 \ - 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 \ - 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 \ - Process.h \ - Handle_Set.h \ - Handle_Set.i \ - SString.h \ - String_Base.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 \ - 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 - -.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 \ - Synch_T.h \ - Synch.h \ - Synch.i \ - Synch_T.i \ - Synch_T.cpp \ - Log_Msg.h \ - Log_Priority.h - -.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 \ - 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_Options.i - -.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 - -.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 - -.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 - -.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 - -.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 \ - 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 \ - Thread_Exit.h \ - Thread_Control.h \ - Thread_Control.inl - -.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 \ - 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_Exit.h \ - Thread_Control.h \ - Thread_Control.inl \ - 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 - -.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 \ - 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 - -.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 - -.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 \ - 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 \ - 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 \ - 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 + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl + +.obj/FlReactor.o .obj/FlReactor.so .shobj/FlReactor.o .shobj/FlReactor.so: FlReactor.cpp \ + $(ACE_ROOT)/ace/FlReactor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - SString.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 \ - 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 \ - Thread_Manager.h \ - 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 + $(ACE_ROOT)/ace/Msg_WFMO_Reactor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Msg_WFMO_Reactor.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 + $(ACE_ROOT)/ace/POSIX_CB_Proactor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/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 - -.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 - -.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 \ - 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 \ - High_Res_Timer.h \ - High_Res_Timer.i \ - 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 \ - Service_Types.h \ - Service_Types.i \ - SString.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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - 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 \ - 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 \ - 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 \ - 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 - -.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 - -.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 - -.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 - -.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 + $(ACE_ROOT)/ace/WIN32_Proactor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl + +.obj/TkReactor.o .obj/TkReactor.so .shobj/TkReactor.o .shobj/TkReactor.so: TkReactor.cpp \ + $(ACE_ROOT)/ace/TkReactor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/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 \ - 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 \ - High_Res_Timer.h \ - High_Res_Timer.i \ - 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 - -.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 - -.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 \ - 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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - SString.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 \ - POSIX_Asynch_IO.i \ - Proactor.h \ - Thread_Manager.h \ - 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 \ - High_Res_Timer.h \ - High_Res_Timer.i \ - 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 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 + $(ACE_ROOT)/ace/WFMO_Reactor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl + +.obj/XtReactor.o .obj/XtReactor.so .shobj/XtReactor.o .shobj/XtReactor.so: XtReactor.cpp \ + $(ACE_ROOT)/ace/XtReactor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl + +.obj/QtReactor.o .obj/QtReactor.so .shobj/QtReactor.o .shobj/QtReactor.so: QtReactor.cpp \ + $(ACE_ROOT)/ace/QtReactor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl .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 - -.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 \ - Basic_Types.h \ - Basic_Types.i \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Log_Msg_Attributes.h \ - streams.h \ - OS_Log_Msg_Attributes.inl \ - OS.h \ - OS_Dirent.h \ - 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 \ - Trace.h OS.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-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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 \ - String_Base.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 \ - ACE.i \ - String_Base_Const.h \ - String_Base.i \ - Malloc_Base.h \ - 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 \ - Unbounded_Set.h \ - Node.h \ - Node.cpp \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - Memory_Pool.i \ - SString.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 - -.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 - -.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 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 \ - SOCK_Dgram_Mcast_T.h \ - SOCK_Dgram.h \ - SOCK.h Addr.h \ - Addr.i \ - IPC_SAP.h \ - Flag_Manip.h \ - Flag_Manip.i \ - IPC_SAP.i \ - SOCK.i \ - INET_Addr.h \ - Sock_Connect.h \ - Sock_Connect.i \ - INET_Addr.i \ - SOCK_Dgram.i \ - Containers_T.h \ - Containers.h \ - Containers.i \ - Node.h \ - Node.cpp \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Malloc_Base.h \ - 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 \ - 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 \ - SOCK_Dgram_Mcast_T.i \ - SOCK_Dgram_Mcast_T.cpp - -.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 - -.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 - -.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 + $(ACE_ROOT)/ace/WIN32_Asynch_IO.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl + +.obj/ATM_Addr.o .obj/ATM_Addr.so .shobj/ATM_Addr.o .shobj/ATM_Addr.so: ATM_Addr.cpp \ + $(ACE_ROOT)/ace/ATM_Addr.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/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 + $(ACE_ROOT)/ace/ATM_Acceptor.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/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 - -.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 + $(ACE_ROOT)/ace/ATM_Connector.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl + +.obj/ATM_Params.o .obj/ATM_Params.so .shobj/ATM_Params.o .shobj/ATM_Params.so: ATM_Params.cpp \ + $(ACE_ROOT)/ace/ATM_Params.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl + +.obj/ATM_QoS.o .obj/ATM_QoS.so .shobj/ATM_QoS.o .shobj/ATM_QoS.so: ATM_QoS.cpp \ + $(ACE_ROOT)/ace/ATM_QoS.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl + +.obj/ATM_Stream.o .obj/ATM_Stream.so .shobj/ATM_Stream.o .shobj/ATM_Stream.so: ATM_Stream.cpp \ + $(ACE_ROOT)/ace/ATM_Stream.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/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 - -.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 \ - String_Base.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 \ - 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 \ - 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 \ - String_Base.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 \ - 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 - -.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 \ - String_Base.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 \ - 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 \ - DEV.i \ - DEV_IO.i \ - 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 \ - String_Base.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 \ - 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 \ - DEV.i \ - DEV_IO.i - -.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 - -.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 - -.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 \ - String_Base.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 \ - 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 - -.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 \ - String_Base.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 \ - 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 \ - 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 \ - String_Base.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 \ - 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 \ - FILE.i \ - FILE_IO.i \ - 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 \ - String_Base.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 \ - 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 \ - FILE.i \ - FILE_IO.i - -.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 - -.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 \ - 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 \ - IOStream_T.h \ - INET_Addr.h \ - Sock_Connect.h \ - Sock_Connect.i \ - Addr.h Addr.i \ - INET_Addr.i \ - Handle_Set.h \ - Handle_Set.i \ - IOStream_T.i \ - IOStream_T.cpp - -.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 - -.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 \ - Array_Base.inl \ - Array_Base.cpp \ - Malloc_Base.h \ - 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 \ - String_Base.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 \ - 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 - -.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 \ - String_Base.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 \ - 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 \ - 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 \ - String_Base.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 \ - 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 \ - SPIPE.i \ - SPIPE_Stream.i - -.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 \ - String_Base.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 \ - 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 \ - SPIPE.i \ - SPIPE_Stream.i \ - SPIPE_Connector.i - -.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 \ - String_Base.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 \ - 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 \ - 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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 \ - String_Base.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 \ - 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 \ - 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 \ - Basic_Types.h \ - Basic_Types.i \ - OS_Errno.h \ - OS_Errno.inl \ - OS_Log_Msg_Attributes.h \ - streams.h \ - OS_Log_Msg_Attributes.inl \ - ACE.h OS.h \ - OS_Dirent.h \ - 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 \ - 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 \ - 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 \ - 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 \ - 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.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 \ - 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 - -.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 \ - 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 \ - 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.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 \ - 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 - -.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 \ - 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 \ - 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.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 \ - 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 - -.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 - -.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 - -.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 - -.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 - -.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 + $(ACE_ROOT)/ace/XTI_ATM_Mcast.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl .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_Errno.h \ - OS_Errno.inl \ - OS_Log_Msg_Attributes.h \ - streams.h \ - OS_Log_Msg_Attributes.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 - -.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 - -.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 \ - String_Base.h \ - ACE.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 \ - 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 \ - 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 - -.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 \ - Array_Base.inl \ - Array_Base.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 \ - Time_Value.h \ - Time_Value.inl \ - Default_Constants.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - 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 \ - High_Res_Timer.h \ - High_Res_Timer.i - -.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 \ - 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 \ - String_Base.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 \ - 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 \ - 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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.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 \ - 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 \ - Signal.h \ - Signal.i \ - 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 \ - 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 \ - 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 \ - Service_Repository.h \ - Service_Repository.i - -.obj/Parse_Node.o .obj/Parse_Node.so .shobj/Parse_Node.o .shobj/Parse_Node.so: Parse_Node.cpp \ - Service_Config.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.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 \ - 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 \ - Signal.h \ - Signal.i \ - 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 \ - 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 \ - 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 \ - Service_Repository.h \ - Service_Repository.i \ - Task.h \ - Thread_Manager.h \ - 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 \ - Parse_Node.h \ - 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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Parse_Node.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_Manager.i \ - Service_Repository.h \ - Service_Repository.i \ - Thread_Manager.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 \ - Thread_Manager.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 \ - SString.h \ - String_Base.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 \ - 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 \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Get_Opt.i \ - Service_Repository.h \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Service_Repository.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 \ - 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_Manager.i \ - WFMO_Reactor.h - -.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 - -.obj/Service_Repository.o .obj/Service_Repository.so .shobj/Service_Repository.o .shobj/Service_Repository.so: Service_Repository.cpp \ - Service_Repository.h \ - pre.h \ - Service_Types.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 \ - Service_Repository.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp - -.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 \ - 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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Parse_Node.h \ - Parse_Node.i \ - Thread_Manager.h \ - 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 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 - -.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 + $(ACE_ROOT)/ace/Basic_Stats.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Basic_Types.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/Basic_Types.i \ + $(ACE_ROOT)/ace/Basic_Stats.inl \ + $(ACE_ROOT)/ace/Log_Msg.h \ + $(ACE_ROOT)/ace/Global_Macros.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/Default_Constants.h \ + $(ACE_ROOT)/ace/Log_Priority.h \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl \ + $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ + $(ACE_ROOT)/ace/streams.h \ + $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl .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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Parse_Node.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 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 \ - Svc_Conf.h \ - Obstack.h \ - Obstack_T.h \ - Obchunk.h \ - 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 \ - 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 \ - Obchunk.i \ - Obstack_T.i \ - Obstack_T.cpp \ - Service_Config.h \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - SString.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 \ - Parse_Node.h \ - Parse_Node.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 \ - Thread_Manager.h \ - 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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Parse_Node.h \ - Parse_Node.i - -.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 \ - Message_Block.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.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 \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - 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-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 \ - Message_Block.h \ - OS.h \ - OS_Dirent.h \ - OS_Export.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 \ - Global_Macros.h \ - Min_Max.h \ - streams.h \ - Trace.h OS.i \ - Message_Block.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - CDR_Base.inl \ - SString.h \ - String_Base.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 \ - 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 \ - CDR_Stream.i + $(ACE_ROOT)/ace/XML_Svc_Conf.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl .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 - -.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 \ - 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.i \ - Message_Block_T.h \ - Message_Block_T.i \ - Message_Block_T.cpp \ - 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 - -.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 - -.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 \ - 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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - 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 - -.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 - -.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 - -.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 - -.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 - -.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 - -.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 \ - 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 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_Types.i \ - Signal.h \ - Signal.i \ - Unbounded_Queue.h \ - Node.h \ - Node.cpp \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Unbounded_Set.h \ - Unbounded_Set.inl \ - Unbounded_Set.cpp \ - SString.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 \ - 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 - -.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 - -.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 - -.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 - -.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 + $(ACE_ROOT)/ace/Codeset_IBM1047.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl .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 - -.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 - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Local_Tokens.h \ - Local_Tokens.i \ - 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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Local_Tokens.h \ - Local_Tokens.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp - -.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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - SString.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 \ - Local_Tokens.h \ - Local_Tokens.i \ - Token_Manager.i \ - Object_Manager.h \ - Object_Manager.i \ - Managed_Object.h \ - Managed_Object.i \ - Managed_Object.cpp + $(ACE_ROOT)/ace/Local_Tokens.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Local_Tokens.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 - -.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 \ - 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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - 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 \ - 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 \ - Hash_Map_Manager.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 \ - 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 \ - 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 \ - 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 \ - Signal.h \ - Signal.i \ - 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 \ - 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 \ - 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 \ - Synch_Options.h \ - Synch_Options.i \ - 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 \ - 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 \ - String_Base.h \ - ACE.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 \ - 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 \ - 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 - -.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 \ - String_Base.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 \ - 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 \ - 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 \ - 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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - 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 \ - Synch_Options.h \ - Synch_Options.i \ - 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 \ - SString.h \ - String_Base.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 \ - 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 \ - Containers.h \ - Containers.i \ - Containers_T.h \ - Array_Base.h \ - Array_Base.inl \ - Array_Base.cpp \ - Unbounded_Queue.h \ - Unbounded_Queue.inl \ - Unbounded_Queue.cpp \ - Containers_T.i \ - Containers_T.cpp \ - Get_Opt.i \ - Naming_Context.h \ - 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 \ - Service_Types.h \ - Service_Types.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 \ - 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.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 - -.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 - -.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 \ - String_Base.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 \ - 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 \ - 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 \ - 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 \ - Service_Types.h \ - Service_Object.h \ - Shared_Object.h \ - Shared_Object.i \ - Svc_Conf_Tokens.h \ - DLL.h \ - Service_Object.i \ - Service_Types.i \ - 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 \ - Synch_Options.h \ - Synch_Options.i \ - Name_Request_Reply.h \ - Name_Space.h + $(ACE_ROOT)/ace/Token_Request_Reply.h \ + $(ACE_ROOT)/ace/pre.h \ + $(ACE_ROOT)/ace/Local_Tokens.h \ + $(ACE_ROOT)/ace/config-sunos5.6.h \ + $(ACE_ROOT)/ace/config-sunos5.5.h \ + $(ACE_ROOT)/ace/post.h \ + $(ACE_ROOT)/ace/ace_wchar.h \ + $(ACE_ROOT)/ace/ace_wchar.inl \ + $(ACE_ROOT)/ace/Local_Tokens.i \ + $(ACE_ROOT)/ace/Time_Value.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/ACE_export.h \ + $(ACE_ROOT)/ace/Time_Value.inl \ + $(ACE_ROOT)/ace/Token_Request_Reply.i # IF YOU PUT ANYTHING HERE IT WILL GO AWAY @@ -2228,7 +2228,7 @@ public: /// Current owner of the lock. ACE_thread_t owner_id_; }; -#endif /* ACE_WIN32 */ +#endif /* ACE_HAS_RECURSIVE_MUTEXES */ # else /* !ACE_HAS_THREADS, i.e., the OS/platform doesn't support threading. */ diff --git a/ace/Synch.cpp b/ace/Synch.cpp index 9a8b16e0970..799587e5810 100644 --- a/ace/Synch.cpp +++ b/ace/Synch.cpp @@ -9,7 +9,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "ace/Synch_T.h" #include "ace/Synch.h" #include "ace/Log_Msg.h" @@ -870,6 +869,163 @@ ACE_RW_Thread_Mutex::dump (void) const ACE_RW_Mutex::dump (); } +int +ACE_recursive_mutex_state::reset (ACE_recursive_thread_mutex_t &m) +{ +#if defined (ACE_HAS_THREADS) +#if defined (ACE_HAS_RECURSIVE_MUTEXES) + // On Windows NT && 2000 the recursive mutex is a CriticalSection. + m.RecursionCount = 0; + m.OwningThread = 0; + return 0; +#else + m.nesting_level_ = 0; + m.owner_id_ = ACE_OS::NULL_thread; + return 0; +#endif /* ACE_HAS_RECURSIVE_THREAD_MUTEXES */ +#else + ACE_UNUSED_ARG (m); + return 0; +#endif /* ACE_HAS_THREADS */ +} + +int +ACE_recursive_mutex_state::save (ACE_recursive_thread_mutex_t &m) +{ +#if defined (ACE_HAS_THREADS) +#if defined (ACE_HAS_RECURSIVE_MUTEXES) + // On Windows NT && 2000 the recurisive mutex is a CriticalSection. + this->recursion_count_ = m.RecursionCount; + this->lock_count_ = m.LockCount; + this->owning_thread_ = m.OwningThread; + this->lock_semaphore_ = m.LockSemaphore; + return 0; +#else + this->nesting_level_ = m.nesting_level_; + this->owner_id_ = m.owner_id_; + return 0; +#endif /* ACE_HAS_RECURSIVE_THREAD_MUTEXES */ +#else + ACE_UNUSED_ARG (m); + return 0; +#endif /* ACE_HAS_THREADS */ +} + +int +ACE_recursive_mutex_state::restore (ACE_recursive_thread_mutex_t &m) +{ +#if defined (ACE_HAS_THREADS) +#if defined (ACE_HAS_RECURSIVE_MUTEXES) + // On Windows NT && 2000 the recurisive mutex is a CriticalSection. + m.RecursionCount = this->recursion_count_; + m.LockCount = this->lock_count_; + m.OwningThread = this->owning_thread_; + m.LockSemaphore = this->lock_semaphore_; + return 0; +#else + m.nesting_level_ = this->nesting_level_; + m.owner_id_ = this->owner_id_; + return 0; +#endif /* ACE_HAS_RECURSIVE_THREAD_MUTEXES */ +#else + ACE_UNUSED_ARG (m); + return 0; +#endif /* ACE_HAS_THREADS */ +} + +ACE_recursive_mutex_state::ACE_recursive_mutex_state (ACE_Recursive_Thread_Mutex &m) + : mutex_ (m) +{ + if (ACE_OS::mutex_lock (&mutex_.get_nesting_mutex ()) == 0) + { + this->save (mutex_.mutex ()); + this->reset (mutex_.mutex ()); + } +} + + +ACE_recursive_mutex_state::~ACE_recursive_mutex_state (void) +{ + this->restore (mutex_.mutex ()); + ACE_OS::mutex_unlock (&mutex_.get_nesting_mutex ()); +} + +ACE_TEMPLATE_METHOD_SPECIALIZATION int +ACE_Condition<ACE_Recursive_Thread_Mutex>::remove (void) +{ + return ACE_OS::cond_destroy (&this->cond_); +} + +ACE_TEMPLATE_METHOD_SPECIALIZATION +ACE_Condition<ACE_Recursive_Thread_Mutex>::~ACE_Condition (void) +{ + this->remove (); +} + +ACE_TEMPLATE_METHOD_SPECIALIZATION +ACE_Condition<ACE_Recursive_Thread_Mutex>::ACE_Condition (ACE_Recursive_Thread_Mutex &m) + : mutex_ (m) +{ + ACE_OS::cond_init (&this->cond_); +} + +ACE_TEMPLATE_METHOD_SPECIALIZATION int +ACE_Condition<ACE_Recursive_Thread_Mutex>::wait (const ACE_Time_Value *abstime) +{ + return this->wait (this->mutex_, abstime); +} + +ACE_TEMPLATE_METHOD_SPECIALIZATION int +ACE_Condition<ACE_Recursive_Thread_Mutex>::wait (ACE_Recursive_Thread_Mutex &mutex, + const ACE_Time_Value *abstime) +{ + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, guard, mutex, -1); + ACE_recursive_mutex_state mutex_state_holder (mutex); + + do + { + // When we wait on our condition, we'll give up the <mutex> so + // that other threads can make progress and eventually signal + // us. + + const int result = abstime == 0 + ? ACE_OS::cond_wait (&this->cond_, + &mutex.get_nesting_mutex ()) + : ACE_OS::cond_timedwait (&this->cond_, + &mutex.get_nesting_mutex (), + (ACE_Time_Value *) abstime); + if (result == -1) + return result; + } + while (mutex.get_nesting_level () > 0); + + return 0; +} + +ACE_TEMPLATE_METHOD_SPECIALIZATION int +ACE_Condition<ACE_Recursive_Thread_Mutex>::signal (void) +{ + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, guard, this->mutex_, -1); + ACE_recursive_mutex_state mutex_state_holder (this->mutex_); + + return ACE_OS::cond_signal (&this->cond_); +} + +ACE_TEMPLATE_METHOD_SPECIALIZATION int +ACE_Condition<ACE_Recursive_Thread_Mutex>::broadcast (void) +{ + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, guard, this->mutex_, -1); + ACE_recursive_mutex_state mutex_state_holder (this->mutex_); + + return ACE_OS::cond_broadcast (&this->cond_); +} + +ACE_TEMPLATE_METHOD_SPECIALIZATION ACE_Recursive_Thread_Mutex & +ACE_Condition<ACE_Recursive_Thread_Mutex>::mutex (void) +{ + return this->mutex_; +} + #if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION) // These are only instantiated with ACE_HAS_THREADS. template class ACE_Guard<ACE_Thread_Mutex>; @@ -878,6 +1034,7 @@ template class ACE_Read_Guard<ACE_RW_Thread_Mutex>; template class ACE_Read_Guard<ACE_Thread_Mutex>; template class ACE_Write_Guard<ACE_RW_Thread_Mutex>; template class ACE_Write_Guard<ACE_Thread_Mutex>; +template class ACE_Condition<ACE_Recursive_Thread_Mutex>; #elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA) // These are only instantiated with ACE_HAS_THREADS. #pragma instantiate ACE_Guard<ACE_Thread_Mutex> @@ -886,17 +1043,8 @@ template class ACE_Write_Guard<ACE_Thread_Mutex>; #pragma instantiate ACE_Read_Guard<ACE_Thread_Mutex> #pragma instantiate ACE_Write_Guard<ACE_RW_Thread_Mutex> #pragma instantiate ACE_Write_Guard<ACE_Thread_Mutex> +#pragma instantiate ACE_Condition<ACE_Recursive_Thread_Mutex> #endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */ #endif /* ACE_HAS_THREADS */ - -// -// These are instantiated both with and without ACE_HAS_THREADS. -// -#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION) - -#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA) - -#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */ - #endif /* ACE_SYNCH_C */ diff --git a/ace/Synch.h b/ace/Synch.h index c30a2243970..681c2a9443b 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -1297,7 +1297,7 @@ public: /// Signal *all* waiting threads. int broadcast (void); - /// Returns a reference to the underlying mutex_; + /// Returns a reference to the underlying mutex; ACE_Thread_Mutex &mutex (void); /// Dump the state of an object. @@ -1423,6 +1423,12 @@ public: */ int get_nesting_level (void); + /// Returns a reference to the recursive mutex; + ACE_recursive_thread_mutex_t &mutex (void); + + /// Returns a reference to the recursive mutex's internal mutex; + ACE_thread_mutex_t &get_nesting_mutex (void); + /// Dump the state of an object. void dump (void) const; @@ -1757,6 +1763,124 @@ public: void dump (void) const {} }; +/** + * @class ACE_recursive_mutex_state + * + * @brief Stores the state of the recursive mutex before setting it to + * "non-owner" state in the constructor. The destructor then restores + * the state of the mutex. + */ +class ACE_recursive_mutex_state +{ +public: + /// Save the <mutex> and then <reset()> it. + ACE_recursive_mutex_state (ACE_Recursive_Thread_Mutex &mutex); + + /// Restore the <mutex> to its original state saved by the + /// constructor. + ~ACE_recursive_mutex_state (void); + +private: + /// Reset the <mutex> to be "unlocked". + int reset (ACE_recursive_thread_mutex_t &mutex); + + /// Save the state of <mutex>. + int save (ACE_recursive_thread_mutex_t &mutex); + + /// Restore the state of <mutex> to a previously saved value. + int restore (ACE_recursive_thread_mutex_t &mutex); + + ACE_Recursive_Thread_Mutex &mutex_; +#if defined (ACE_HAS_RECURSIVE_MUTEXES) + // On windows the mutex is a CRITICAL_SECTION, so just save + // everything! + size_t lock_count_; + size_t recursion_count_; + HANDLE owning_thread_; + HANDLE lock_semaphore_; +#else + // Store the important state of a recursive mutex. + int nesting_level_; + ACE_thread_t owner_id_; +#endif /* ACE_HAS_RECURSIVE_MUTEXES */ +}; + +template <class ACE_LOCK> +class ACE_Condition; + +ACE_TEMPLATE_SPECIALIZATION +/** + * @class ACE_Condition<ACE_Recursive_Thread_Mutex> + * + * @brief ACE_Condition template specialization written using + * @a ACE_Recursive_Thread_Mutex. This allows threads to block until + * shared data changes state using recursive mutexes. + */ +class ACE_Export ACE_Condition<ACE_Recursive_Thread_Mutex> +{ +public: + /// Initialize the condition variable with a recursive mutex. + ACE_Condition (ACE_Recursive_Thread_Mutex &m); + + /// Implicitly destroy the condition variable. + ~ACE_Condition (void); + + /** + * Explicitly destroy the condition variable. Note that only one + * thread should call this method since it doesn't protect against + * race conditions. + */ + int remove (void); + + /** + * Block on condition, or until absolute time-of-day has passed. If + * abstime == 0 use "blocking" <wait> semantics. Else, if <abstime> + * != 0 and the call times out before the condition is signaled + * <wait> returns -1 and sets errno to ETIME. + */ + int wait (const ACE_Time_Value *abstime = 0); + + /** + * Block on condition or until absolute time-of-day has passed. If + * abstime == 0 use "blocking" wait() semantics on the recursive @a mutex + * passed as a parameter (this is useful if you need to store the + * <Condition> in shared memory). Else, if <abstime> != 0 and the + * call times out before the condition is signaled <wait> returns -1 + * and sets errno to ETIME. + */ + int wait (ACE_Recursive_Thread_Mutex &mutex, + const ACE_Time_Value *abstime = 0); + + /// Signal one waiting thread. + int signal (void); + + /// Signal *all* waiting threads. + int broadcast (void); + + /// Returns a reference to the underlying mutex; + ACE_Recursive_Thread_Mutex &mutex (void); + +private: + /// A normal (i.e., non-recursive) condition variable. + ACE_cond_t cond_; + + /// Reference to the recursive mutex. + ACE_Recursive_Thread_Mutex &mutex_; + + // = Prevent assignment and initialization. + ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Condition<ACE_Recursive_Thread_Mutex> &)) + ACE_UNIMPLEMENTED_FUNC (ACE_Condition (const ACE_Condition<ACE_Recursive_Thread_Mutex> &)) +}; + +class ACE_Export ACE_Condition_Recursive_Thread_Mutex + : public ACE_Condition<ACE_Recursive_Thread_Mutex> +{ +public: + /// Initialize the condition variable with a recursive mutex. + ACE_Condition_Recursive_Thread_Mutex (ACE_Recursive_Thread_Mutex &m): + ACE_Condition<ACE_Recursive_Thread_Mutex> (m) {} +}; + #if defined (ACE_LEGACY_MODE) # include "ace/File_Lock.h" # include "ace/Process_Semaphore.h" diff --git a/ace/Synch.i b/ace/Synch.i index cd7690e8e76..9131e696c3a 100644 --- a/ace/Synch.i +++ b/ace/Synch.i @@ -667,6 +667,23 @@ ACE_Condition_Thread_Mutex::mutex (void) return this->mutex_; } +ACE_INLINE ACE_recursive_thread_mutex_t & +ACE_Recursive_Thread_Mutex::mutex (void) +{ + return recursive_mutex_; +} + +ACE_INLINE ACE_thread_mutex_t & +ACE_Recursive_Thread_Mutex::get_nesting_mutex (void) +{ +#if defined (ACE_HAS_RECURSIVE_MUTEXES) + return ACE_static_cast (ACE_thread_mutex_t &, + recursive_mutex_); +#else + return recursive_mutex_.nesting_mutex_; +#endif /* ACE_HAS_RECURSIVE_MUTEXES */ +} + ACE_INLINE void ACE_Recursive_Thread_Mutex::set_thread_id (ACE_thread_t t) { @@ -975,3 +992,4 @@ ACE_Thread_Barrier::~ACE_Thread_Barrier (void) { } #endif /* ACE_HAS_THREADS */ + diff --git a/ace/Synch_T.h b/ace/Synch_T.h index 74b3170f0ac..e59e701e7bd 100644 --- a/ace/Synch_T.h +++ b/ace/Synch_T.h @@ -804,6 +804,7 @@ public: typedef ACE_Null_Mutex RECURSIVE_MUTEX; typedef ACE_Null_Mutex RW_MUTEX; typedef ACE_Null_Condition CONDITION; + typedef ACE_Null_Condition RECURSIVE_CONDITION; typedef ACE_Null_Semaphore SEMAPHORE; typedef ACE_Null_Mutex NULL_SEMAPHORE; }; @@ -811,6 +812,7 @@ public: #if defined (ACE_HAS_THREADS) class ACE_Process_Mutex; +class ACE_Condition_Recursive_Thread_Mutex; /** * @class ACE_MT_SYNCH @@ -830,6 +832,7 @@ public: typedef ACE_Recursive_Thread_Mutex RECURSIVE_MUTEX; typedef ACE_RW_Thread_Mutex RW_MUTEX; typedef ACE_Condition_Thread_Mutex CONDITION; + typedef ACE_Condition_Recursive_Thread_Mutex RECURSIVE_CONDITION; typedef ACE_Thread_Semaphore SEMAPHORE; typedef ACE_Null_Semaphore NULL_SEMAPHORE; }; @@ -841,6 +844,7 @@ public: #define ACE_SYNCH_RECURSIVE_MUTEX ACE_SYNCH::RECURSIVE_MUTEX #define ACE_SYNCH_RW_MUTEX ACE_SYNCH::RW_MUTEX #define ACE_SYNCH_CONDITION ACE_SYNCH::CONDITION +#define ACE_SYNCH_RECURSIVE_CONDITION ACE_SYNCH::RECURSIVE_CONDITION #define ACE_SYNCH_NULL_SEMAPHORE ACE_SYNCH::NULL_SEMAPHORE #define ACE_SYNCH_SEMAPHORE ACE_SYNCH::SEMAPHORE @@ -861,6 +865,7 @@ public: #define ACE_SYNCH_RECURSIVE_MUTEX ACE_Recursive_Thread_Mutex #define ACE_SYNCH_RW_MUTEX ACE_RW_Thread_Mutex #define ACE_SYNCH_CONDITION ACE_Condition_Thread_Mutex +#define ACE_SYNCH_RECURSIVE_CONDITION ACE_Condition_Recursive_Thread_Mutex #define ACE_SYNCH_SEMAPHORE ACE_Thread_Semaphore #define ACE_SYNCH_NULL_SEMAPHORE ACE_Null_Semaphore @@ -871,6 +876,7 @@ public: #define ACE_SYNCH_RECURSIVE_MUTEX ACE_Null_Mutex #define ACE_SYNCH_RW_MUTEX ACE_Null_Mutex #define ACE_SYNCH_CONDITION ACE_Null_Condition +#define ACE_SYNCH_RECURSIVE_CONDITION ACE_Null_Condition #define ACE_SYNCH_SEMAPHORE ACE_Null_Semaphore #define ACE_SYNCH_NULL_SEMAPHORE ACE_Null_Mutex diff --git a/ace/Timer_Queue_Adapters.cpp b/ace/Timer_Queue_Adapters.cpp index 9ff992dfb39..97eea3c6da0 100644 --- a/ace/Timer_Queue_Adapters.cpp +++ b/ace/Timer_Queue_Adapters.cpp @@ -175,7 +175,7 @@ ACE_Thread_Timer_Queue_Adapter<TQ>::~ACE_Thread_Timer_Queue_Adapter (void) } } -template<class TQ> ACE_SYNCH_MUTEX & +template<class TQ> ACE_Recursive_Thread_Mutex & ACE_Thread_Timer_Queue_Adapter<TQ>::mutex (void) { return this->mutex_; @@ -188,7 +188,7 @@ ACE_Thread_Timer_Queue_Adapter<TQ>::schedule const ACE_Time_Value &future_time, const ACE_Time_Value &interval) { - ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->mutex_, -1); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, guard, this->mutex_, -1); long result = this->timer_queue_->schedule (handler, act, future_time, interval); this->condition_.signal (); @@ -199,7 +199,7 @@ template<class TQ> int ACE_Thread_Timer_Queue_Adapter<TQ>::cancel (long timer_id, const void **act) { - ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->mutex_, -1); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, guard, this->mutex_, -1); int result = this->timer_queue_->cancel (timer_id, act); condition_.signal (); @@ -209,7 +209,7 @@ ACE_Thread_Timer_Queue_Adapter<TQ>::cancel (long timer_id, template<class TQ> void ACE_Thread_Timer_Queue_Adapter<TQ>::deactivate (void) { - ACE_GUARD (ACE_SYNCH_MUTEX, ace_mon, this->mutex_); + ACE_GUARD (ACE_Recursive_Thread_Mutex, guard, this->mutex_); this->active_ = 0; this->condition_.signal (); @@ -218,7 +218,7 @@ ACE_Thread_Timer_Queue_Adapter<TQ>::deactivate (void) template<class TQ> int ACE_Thread_Timer_Queue_Adapter<TQ>::svc (void) { - ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->mutex_, -1); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, guard, this->mutex_, -1); this->thr_id_ = ACE_Thread::self (); @@ -229,7 +229,7 @@ ACE_Thread_Timer_Queue_Adapter<TQ>::svc (void) // is a bug in the Solaris header files and has nothing to do with // ACE. # if !defined (ACE_LACKS_PTHREAD_CANCEL) - ACE_PTHREAD_CLEANUP_PUSH (&this->condition_.mutex ()); + ACE_PTHREAD_CLEANUP_PUSH (&this->condition_.mutex ().get_nesting_mutex ()); # endif /* ACE_LACKS_PTHREAD_CANCEL */ while (this->active_) @@ -271,11 +271,9 @@ ACE_Thread_Timer_Queue_Adapter<TQ>::svc (void) ACE_PTHREAD_CLEANUP_POP (0); # endif /* ACE_LACKS_PTHREAD_CANCEL */ - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("terminating dispatching thread\n"))); return 0; } - # if defined (ACE_HAS_DEFERRED_TIMER_COMMANDS) // Enqueues a command object for execution just before waiting on the next @@ -289,8 +287,7 @@ ACE_Thread_Timer_Queue_Adapter<TQ>::enqueue_command (ACE_Command_Base *cmd, COMMAND_ENQUEUE_POSITION pos) { // Serialize access to the command queue. - ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, - this->command_mutex_, -1); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, guard, this->command_mutex_, -1); if (pos == ACE_Thread_Timer_Queue_Adapter<TQ>::TAIL) return command_queue_.enqueue_tail (cmd); @@ -305,8 +302,7 @@ template<class TQ> int ACE_Thread_Timer_Queue_Adapter<TQ>::dispatch_commands (void) { // Serialize access to the command queue. - ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, - this->command_mutex_, -1); + ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, guard, this->command_mutex_, -1); // loop through the enqueued commands ACE_Command_Base *cmd = 0; diff --git a/ace/Timer_Queue_Adapters.h b/ace/Timer_Queue_Adapters.h index 835df6461df..3172cbb5504 100644 --- a/ace/Timer_Queue_Adapters.h +++ b/ace/Timer_Queue_Adapters.h @@ -143,7 +143,7 @@ public: virtual void deactivate (void); /// Access the locking mechanism, useful for iteration. - ACE_SYNCH_MUTEX &mutex (void); + ACE_Recursive_Thread_Mutex &mutex (void); /// @deprecated Access the implementation queue, useful for iteration. /// Use the method that returns a pointer instead @@ -209,16 +209,16 @@ private: /// didn't create it, then we don't delete it). int delete_timer_queue_; + /// The mutual exclusion mechanism that is required to use the + /// <condition_>. + ACE_SYNCH_RECURSIVE_MUTEX mutex_; + /** * The dispatching thread sleeps on this condition while waiting to * dispatch the next timer; it is used to wake it up if there is a * change on the timer queue. */ - ACE_SYNCH_CONDITION condition_; - - /// The mutual exclusion mechanism that is required to use the - /// <condition_>. - ACE_SYNCH_MUTEX mutex_; + ACE_SYNCH_RECURSIVE_CONDITION condition_; /// When deactivate is called this variable turns to false and the /// dispatching thread is signalled, to terminate its main loop. diff --git a/docs/exceptions.html b/docs/exceptions.html index ff95176ace3..cae40a2bb21 100644 --- a/docs/exceptions.html +++ b/docs/exceptions.html @@ -298,7 +298,7 @@ macros. exception support. You can not access the caught exception within the <code>ACE_CATCHALL</code> block.</p> - <li><P>Use <code>ACE_RETHROW</code> to rethrow the same exception + <li><P>Use <code>ACE_RE_THROW</code> to rethrow the same exception within a <code>ACE_CATCH</code> or <code>ACE_CATCHANY</code> block. </p> @@ -385,7 +385,7 @@ macros discussed here. { // error handling. // then rethow the exception. - ACE_RETHROW; + ACE_RE_THROW; } ACE_ENDTRY; ACE_CHECK; diff --git a/tests/Makefile b/tests/Makefile index 52cbc7ffda7..bf97a35f84f 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -85,6 +85,7 @@ BIN = Aio_Platform_Test \ Reactor_Performance_Test \ Reactor_Timer_Test \ Reader_Writer_Test \ + Recursive_Condition_Test \ Recursive_Mutex_Test \ Refcounted_Auto_Ptr_Test \ Reverse_Lock_Test \ diff --git a/tests/Makefile.bor b/tests/Makefile.bor index 1087fb5dfa4..82cd4e55904 100644 --- a/tests/Makefile.bor +++ b/tests/Makefile.bor @@ -85,6 +85,7 @@ NAMES = \ Reactor_Timer_Test \ Reactors_Test \ Reader_Writer_Test \ + Recursive_Condition_Test \ Recursive_Mutex_Test \ Refcounted_Auto_Ptr_Test \ Reverse_Lock_Test \ diff --git a/tests/Recursive_Condition_Test.cpp b/tests/Recursive_Condition_Test.cpp new file mode 100644 index 00000000000..f2c1d4ab488 --- /dev/null +++ b/tests/Recursive_Condition_Test.cpp @@ -0,0 +1,94 @@ +// $Id$ + +// ============================================================================ +// +// = LIBRARY +// tests +// +// = FILENAME +// Recursive_Condition_Test.cpp +// +// = DESCRIPTION +// This test program verifies the functionality of the +// ACE_Condition<ACE_Recursive_Thread_Mutex> template +// specialization when combined with the +// ACE_Thread_Timer_Queue_Adapter on Win32 and Posix pthreads. +// +// = AUTHOR +// Stephen Howard <stephen.e.howard@lmco.com> and +// Douglas C. Schmidt <schmidt@cs.wustl.edu> +// +// ============================================================================ + +#include "test_config.h" +#include "ace/Event_Handler.h" +#include "ace/Timer_Heap.h" +#include "ace/Timer_Queue_Adapters.h" + +ACE_RCSID(tests, Recursive_Condition_Test, "$Id$") + +#if defined (ACE_HAS_THREADS) + +typedef ACE_Thread_Timer_Queue_Adapter<ACE_Timer_Heap> + Thread_Timer_Queue; + +class Test_Handler : public ACE_Event_Handler +{ +public: + virtual int handle_timeout (const ACE_Time_Value &, + const void *arg) + { + ACE_DEBUG ((LM_DEBUG, "[%t] handle_timeout\n")); + + Thread_Timer_Queue *timer_queue = (Thread_Timer_Queue *) arg; + + ACE_Time_Value timeout = ACE_OS::gettimeofday () + ACE_Time_Value (1, 0); + + ACE_DEBUG ((LM_DEBUG, "[%t] scheduling timer\n")); + + int timer_id = + timer_queue->schedule (this, timer_queue, timeout); + ACE_DEBUG ((LM_DEBUG, "[%t] timer id = %d\n", timer_id)); + + return 0; + } +}; + +#endif /* ACE_HAS_THREADS */ + +int +ACE_TMAIN (int, ACE_TCHAR *[]) +{ + ACE_START_TEST (ACE_TEXT ("Recursive_Condition_Test")); + +#if defined (ACE_HAS_THREADS) + Thread_Timer_Queue timer_queue; + Test_Handler handler; + int status = timer_queue.activate (); + + ACE_ASSERT (status == 0); + + ACE_Time_Value timeout = + ACE_OS::gettimeofday() + ACE_Time_Value (1, 0); + + ACE_DEBUG ((LM_DEBUG, "[%t] scheduling timer\n")); + + int timer_id = timer_queue.schedule (&handler, &timer_queue, timeout); + ACE_DEBUG ((LM_DEBUG, "[%t] timer id = %d\n", timer_id)); + + ACE_OS::sleep (10); + +#else + ACE_ERROR ((LM_ERROR, + ACE_TEXT ("ACE doesn't support recursive condition variables on this platform\n"))); +#endif /* ACE_WIN32 */ + ACE_END_TEST; + return 0; +} + +#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION) +template class ACE_Thread_Timer_Queue_Adapter<ACE_Timer_Heap>; +#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA) +#pragma instantiate ACE_Thread_Timer_Queue_Adapter<ACE_Timer_Heap> +#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */ + diff --git a/tests/run_test.lst b/tests/run_test.lst index 79306496d41..1bbd779f65a 100644 --- a/tests/run_test.lst +++ b/tests/run_test.lst @@ -94,6 +94,7 @@ Reactor_Dispatch_Order_Test Reactor_Performance_Test: !chorus Reactor_Timer_Test Reader_Writer_Test +Recursive_Condition_Test: !ST Recursive_Mutex_Test: !ST Refcounted_Auto_Ptr_Test: !VxWorks Reverse_Lock_Test |