summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-26 22:26:11 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-26 22:26:11 +0000
commite5c20f2919adcd91409e845003a5fdbb9bd150d3 (patch)
tree7f0bc528e3cc021df64132a41a5dcf4b09cf3292
parentadbbcb5245b1aad5a91c77af56473d694518e6b0 (diff)
downloadATCD-e5c20f2919adcd91409e845003a5fdbb9bd150d3.tar.gz
ChangeLogTag:Sun May 26 22:18:03 UTC 2002 Don Hinton <dhinton@ieee.org>
-rw-r--r--ChangeLog68
-rw-r--r--ChangeLogs/ChangeLog-02a68
-rw-r--r--ChangeLogs/ChangeLog-03a68
-rw-r--r--ace/DLL.cpp81
-rw-r--r--ace/DLL.h13
-rw-r--r--ace/DLL_Manager.cpp435
-rw-r--r--ace/DLL_Manager.h227
-rw-r--r--ace/Framework_Component.cpp96
-rw-r--r--ace/Framework_Component.h7
-rw-r--r--ace/Framework_Component_T.cpp5
-rw-r--r--ace/Makefile26386
-rw-r--r--ace/Proactor.cpp9
-rw-r--r--ace/Proactor.h3
-rw-r--r--ace/RMCast/Makefile3525
-rw-r--r--ace/Reactor.cpp8
-rw-r--r--ace/Reactor.h4
-rw-r--r--ace/Singleton.cpp31
-rw-r--r--ace/Singleton.h16
-rw-r--r--ace/Singleton.i5
-rw-r--r--protocols/ace/RMCast/Makefile3525
-rw-r--r--tests/DLL_Test.cpp60
-rw-r--r--tests/DLL_Test.h9
-rw-r--r--tests/Framework_Component_DLL.cpp8
-rw-r--r--tests/Framework_Component_DLL.h10
-rw-r--r--tests/Framework_Component_Test.cpp44
-rw-r--r--tests/Logging_Strategy_Test.cpp13
-rw-r--r--tests/Makefile66
-rw-r--r--tests/Makefile.Framework_Component_DLL3
28 files changed, 15224 insertions, 19569 deletions
diff --git a/ChangeLog b/ChangeLog
index 478f36722ea..9ffccabdcab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,71 @@
+Sun May 26 22:18:03 UTC 2002 Don Hinton <dhinton@ieee.org>
+
+ * tests/Logging_Strategy_Test.cpp:
+
+ Changed ACE_AS_STATIC_LIBS to ACE_HAS_STATIC_LIBS, and
+ added a process_directive call to "remove Logger" in order
+ make sure all the error messages get written to the log--
+ this helped debug the ACE_DLL changes below.
+
+ * tests/Framework_Component_Test.cpp:
+
+ Broke the test out into its own function so it could be called
+ with different parameters and test all the combinations of the
+ PER_PROCESS/DLL and EAGER/LAZY dll unloading strategies.
+
+ * tests/Framework_Component_DLL.cpp:
+
+ Removed Simple_Service::dll_name() method and added name()
+ method.
+
+ * tests/DLL_Test.{h,cpp]:
+
+ Added test of set/get_handle() functionality. And reorganized
+ the test into handle_test() and basic_test() methods, as well as
+ adding some ACE_TRACE statements.
+
+ * ace/Singleton.{h,cpp}:
+
+ Made ACE_DLL_Singleton_T not inherit from ACE_Singleton and
+ added all missing methods. Added ACE_TRACE statements.
+
+ * ace/Makefile: Updated dependancies.
+
+ * ace/Proactor.{h,cpp}:
+ * ace/Reactor.{h,cpp}:
+
+ Implemented dll_name() method and added name() method.
+
+ * ace/Framework_Component_T.cpp:
+
+ Added name to ACE_Framework_Component ctor call in
+ ACE_Framework_Component_T ctor. Added call to
+ Concrete::close_singleton() in dtor for ACE_Framework_Component_T
+ dtor.
+
+ * ace/Framework_Component.{h,cpp}:
+
+ Minor reformatting all over. Added check for null pointer
+ in register_component(), removed the delete and added an
+ error message instead. Added compact() method to
+ remove the holes in the component_vector_ after components
+ are removed either one by one or in groups when a dll is
+ unloaded. Also, changed the close_singleton() calls to delete.
+
+ * ace/DLL.{h,cpp}:
+
+ Moved remaining cleanup code from dtor to close. Added new
+ open_i() to do the open work so that by both open() and
+ set_handle(). Cleaned up close(), and implemented the
+ set/get_handle() methods--now the new ACE_DLL has the same
+ interface and semantics of the original.
+
+ * ace/DLL_Manager.{h,cpp}: Really added them this time. ;-)
+
+ Along with a lot of fixes and enhancements, but since the
+ old version never made it in, it's sorta hard to document
+ everything. :-(
+
Thu May 23 17:39:02 UTC 2002 Don Hinton <dhinton@ieee.org>
* tests/Framework_Component_Test.cpp:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 478f36722ea..9ffccabdcab 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,71 @@
+Sun May 26 22:18:03 UTC 2002 Don Hinton <dhinton@ieee.org>
+
+ * tests/Logging_Strategy_Test.cpp:
+
+ Changed ACE_AS_STATIC_LIBS to ACE_HAS_STATIC_LIBS, and
+ added a process_directive call to "remove Logger" in order
+ make sure all the error messages get written to the log--
+ this helped debug the ACE_DLL changes below.
+
+ * tests/Framework_Component_Test.cpp:
+
+ Broke the test out into its own function so it could be called
+ with different parameters and test all the combinations of the
+ PER_PROCESS/DLL and EAGER/LAZY dll unloading strategies.
+
+ * tests/Framework_Component_DLL.cpp:
+
+ Removed Simple_Service::dll_name() method and added name()
+ method.
+
+ * tests/DLL_Test.{h,cpp]:
+
+ Added test of set/get_handle() functionality. And reorganized
+ the test into handle_test() and basic_test() methods, as well as
+ adding some ACE_TRACE statements.
+
+ * ace/Singleton.{h,cpp}:
+
+ Made ACE_DLL_Singleton_T not inherit from ACE_Singleton and
+ added all missing methods. Added ACE_TRACE statements.
+
+ * ace/Makefile: Updated dependancies.
+
+ * ace/Proactor.{h,cpp}:
+ * ace/Reactor.{h,cpp}:
+
+ Implemented dll_name() method and added name() method.
+
+ * ace/Framework_Component_T.cpp:
+
+ Added name to ACE_Framework_Component ctor call in
+ ACE_Framework_Component_T ctor. Added call to
+ Concrete::close_singleton() in dtor for ACE_Framework_Component_T
+ dtor.
+
+ * ace/Framework_Component.{h,cpp}:
+
+ Minor reformatting all over. Added check for null pointer
+ in register_component(), removed the delete and added an
+ error message instead. Added compact() method to
+ remove the holes in the component_vector_ after components
+ are removed either one by one or in groups when a dll is
+ unloaded. Also, changed the close_singleton() calls to delete.
+
+ * ace/DLL.{h,cpp}:
+
+ Moved remaining cleanup code from dtor to close. Added new
+ open_i() to do the open work so that by both open() and
+ set_handle(). Cleaned up close(), and implemented the
+ set/get_handle() methods--now the new ACE_DLL has the same
+ interface and semantics of the original.
+
+ * ace/DLL_Manager.{h,cpp}: Really added them this time. ;-)
+
+ Along with a lot of fixes and enhancements, but since the
+ old version never made it in, it's sorta hard to document
+ everything. :-(
+
Thu May 23 17:39:02 UTC 2002 Don Hinton <dhinton@ieee.org>
* tests/Framework_Component_Test.cpp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 478f36722ea..9ffccabdcab 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,71 @@
+Sun May 26 22:18:03 UTC 2002 Don Hinton <dhinton@ieee.org>
+
+ * tests/Logging_Strategy_Test.cpp:
+
+ Changed ACE_AS_STATIC_LIBS to ACE_HAS_STATIC_LIBS, and
+ added a process_directive call to "remove Logger" in order
+ make sure all the error messages get written to the log--
+ this helped debug the ACE_DLL changes below.
+
+ * tests/Framework_Component_Test.cpp:
+
+ Broke the test out into its own function so it could be called
+ with different parameters and test all the combinations of the
+ PER_PROCESS/DLL and EAGER/LAZY dll unloading strategies.
+
+ * tests/Framework_Component_DLL.cpp:
+
+ Removed Simple_Service::dll_name() method and added name()
+ method.
+
+ * tests/DLL_Test.{h,cpp]:
+
+ Added test of set/get_handle() functionality. And reorganized
+ the test into handle_test() and basic_test() methods, as well as
+ adding some ACE_TRACE statements.
+
+ * ace/Singleton.{h,cpp}:
+
+ Made ACE_DLL_Singleton_T not inherit from ACE_Singleton and
+ added all missing methods. Added ACE_TRACE statements.
+
+ * ace/Makefile: Updated dependancies.
+
+ * ace/Proactor.{h,cpp}:
+ * ace/Reactor.{h,cpp}:
+
+ Implemented dll_name() method and added name() method.
+
+ * ace/Framework_Component_T.cpp:
+
+ Added name to ACE_Framework_Component ctor call in
+ ACE_Framework_Component_T ctor. Added call to
+ Concrete::close_singleton() in dtor for ACE_Framework_Component_T
+ dtor.
+
+ * ace/Framework_Component.{h,cpp}:
+
+ Minor reformatting all over. Added check for null pointer
+ in register_component(), removed the delete and added an
+ error message instead. Added compact() method to
+ remove the holes in the component_vector_ after components
+ are removed either one by one or in groups when a dll is
+ unloaded. Also, changed the close_singleton() calls to delete.
+
+ * ace/DLL.{h,cpp}:
+
+ Moved remaining cleanup code from dtor to close. Added new
+ open_i() to do the open work so that by both open() and
+ set_handle(). Cleaned up close(), and implemented the
+ set/get_handle() methods--now the new ACE_DLL has the same
+ interface and semantics of the original.
+
+ * ace/DLL_Manager.{h,cpp}: Really added them this time. ;-)
+
+ Along with a lot of fixes and enhancements, but since the
+ old version never made it in, it's sorta hard to document
+ everything. :-(
+
Thu May 23 17:39:02 UTC 2002 Don Hinton <dhinton@ieee.org>
* tests/Framework_Component_Test.cpp:
diff --git a/ace/DLL.cpp b/ace/DLL.cpp
index ed626b48e9e..08e43d3329d 100644
--- a/ace/DLL.cpp
+++ b/ace/DLL.cpp
@@ -9,6 +9,10 @@
ACE_RCSID(ace, DLL, "$Id$")
+// Uncomment these lines to turn tracing on for this file.
+//#undef ACE_TRACE
+//#define ACE_TRACE(X) ACE_TRACE_IMPL(X)
+
// Default constructor. Also, by default, the object will be closed
// before it is destroyed.
@@ -66,10 +70,8 @@ ACE_DLL::ACE_DLL (const ACE_TCHAR *dll_name,
ACE_DLL::~ACE_DLL (void)
{
ACE_TRACE ("ACE_DLL::~ACE_DLL");
- // CLose the library only if it hasn't been already.
- this->close ();
- ACE::strdelete (this->dll_name_);
+ this->close ();
}
// This method opens the library based on the mode specified using the
@@ -89,6 +91,17 @@ ACE_DLL::open (const ACE_TCHAR *dll_filename,
int close_on_destruction)
{
ACE_TRACE ("ACE_DLL::open");
+
+ return open_i (dll_filename, open_mode, close_on_destruction);
+}
+
+int
+ACE_DLL::open_i (const ACE_TCHAR *dll_filename,
+ int open_mode,
+ int close_on_destruction,
+ ACE_SHLIB_HANDLE handle)
+{
+ ACE_TRACE ("ACE_DLL::open");
this->error_ = 0;
@@ -101,19 +114,18 @@ ACE_DLL::open (const ACE_TCHAR *dll_filename,
if (ACE_OS_String::strcmp (this->dll_name_, dll_filename) == 0)
return 0;
else
- {
- // We already have a dll open, but the caller wants to open another one.
- // So close the first one and open the second.
- ACE_DLL_Manager::instance()->close_dll (this->dll_name_);
- }
+ this->close ();
+ }
+ if (!this->dll_name_)
+ {
+ this->dll_name_ = ACE::strnew (dll_filename);
}
- delete this->dll_name_;
- this->dll_name_ = ACE::strnew (dll_filename);
this->open_mode_ = open_mode;
this->close_on_destruction_ = close_on_destruction;
this->dll_handle_ = ACE_DLL_Manager::instance()->open_dll (this->dll_name_,
- this->open_mode_);
+ this->open_mode_,
+ handle);
if (!this->dll_handle_)
this->error_ = 1;
@@ -147,9 +159,16 @@ ACE_DLL::close (void)
ACE_TRACE ("ACE_DLL::close");
int retval = 0;
- if ((retval = ACE_DLL_Manager::instance ()->close_dll (this->dll_name_)) != 0)
+ if (this->close_on_destruction_ && this->dll_name_ &&
+ (retval = ACE_DLL_Manager::instance ()->close_dll (this->dll_name_)) != 0)
this->error_ = 1;
+ // Even if close_dll() failed, go ahead and cleanup.
+ this->dll_handle_ = 0;
+ delete this->dll_name_;
+ this->dll_name_ = 0;
+ this->close_on_destruction_ = 0;
+
return retval;
}
@@ -165,39 +184,45 @@ ACE_DLL::error (void) const
return 0;
}
-
-
-#if 0
// Return the handle to the user either temporarily or forever, thus
// orphaning it. If 0 means the user wants the handle forever and if 1
// means the user temporarily wants to take the handle.
ACE_SHLIB_HANDLE
-ACE_DLL::get_handle (int /*become_owner*/)
+ACE_DLL::get_handle (int become_owner) const
{
ACE_TRACE ("ACE_DLL::get_handle");
- // I'm only going to support this if I absolutely have to.
- // in order to do that, we'd have to call ACE_OS::dlopen again to
- // up the OS's refcount. :-(
+ ACE_SHLIB_HANDLE handle = ACE_SHLIB_INVALID_HANDLE;
+
+ if (this->dll_handle_)
+ handle = this->dll_handle_->get_handle (become_owner);
- return ACE_SHLIB_INVALID_HANDLE;
+ return handle;
}
// Set the handle for the DLL. By default, the object will be closed
// before it is destroyed.
int
-ACE_DLL::set_handle (ACE_SHLIB_HANDLE /*handle*/,
- int /*close_on_destruction*/)
+ACE_DLL::set_handle (ACE_SHLIB_HANDLE handle,
+ int close_on_destruction)
{
ACE_TRACE ("ACE_DLL::set_handle");
- // Hmmm, how to do this...
- // I don't see a way to get the name of the library associated with
- // the handle, so either we use a dummy name or we try to compair
- // it with other handles to see if you already have it... :-((
+ // Create a unique name for the dll (if some knows how to get the
+ // real name of the dll, please replace this code).
+ auto_ptr <ACE_TCHAR> tempname (ACE::strnew (ACE_LIB_TEXT ("tmp_XXXXXX")));
- return -1;
+ ACE_HANDLE fd;
+ if ((fd = ACE_OS::mkstemp (tempname.get ())) = 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL::set_handle: error calling "
+ "ACE_OS::mkstemp %s\n"),
+ tempname.get ()),
+ -1);
+ ACE_OS::close (fd);
+
+ return this->open_i (tempname.get (), 1, close_on_destruction, handle);
}
-#endif /* 0 */
+
diff --git a/ace/DLL.h b/ace/DLL.h
index b0276f8961e..77db56e6f88 100644
--- a/ace/DLL.h
+++ b/ace/DLL.h
@@ -97,15 +97,22 @@ public:
* Return the handle to the caller. If <become_owner> is non-0 then
* caller assumes ownership of the handle and the <ACE_DLL> object
* won't call <close> when it goes out of scope, even if
- * <close_on_destruction> is set.
+ * <close_on_destruction> is set.
*/
- //ACE_SHLIB_HANDLE get_handle (int become_owner = 0);
+ ACE_SHLIB_HANDLE get_handle (int become_owner = 0) const;
/// Set the handle for the DLL object. By default, the <close> operation on the
/// object will be invoked before it is destroyed.
- //int set_handle (ACE_SHLIB_HANDLE handle, int close_on_destruction = 1);
+ int set_handle (ACE_SHLIB_HANDLE handle, int close_on_destruction = 1);
+
private:
+ int open_i (const ACE_TCHAR *dll_name,
+ int open_mode = ACE_DEFAULT_SHLIB_MODE,
+ int close_on_destruction = 1,
+ ACE_SHLIB_HANDLE handle = 0);
+
+
/// Open mode.
int open_mode_;
diff --git a/ace/DLL_Manager.cpp b/ace/DLL_Manager.cpp
new file mode 100644
index 00000000000..50e96b9a425
--- /dev/null
+++ b/ace/DLL_Manager.cpp
@@ -0,0 +1,435 @@
+// DLL_Manager.cpp
+// $Id$
+
+#include "ace/DLL_Manager.h"
+
+#include "ace/Log_Msg.h"
+#include "ace/ACE.h"
+#include "ace/Framework_Component.h"
+
+#include "ace/OS.h"
+#include "ace/Lib_Find.h"
+
+ACE_RCSID(ace, DLL, "$Id$")
+
+// Uncomment these lines to turn tracing on for this file.
+//#undef ACE_TRACE
+//#define ACE_TRACE(X) ACE_TRACE_IMPL(X)
+
+/******************************************************************/
+
+sig_atomic_t ACE_DLL_Handle::open_called_ = 0;
+
+ACE_DLL_Handle::ACE_DLL_Handle (void)
+ : refcount_ (0),
+ dll_name_ (0),
+ handle_ (ACE_SHLIB_INVALID_HANDLE)
+{
+ ACE_TRACE ("ACE_DLL_Handle::ACE_DLL_Handle");
+}
+
+ACE_DLL_Handle::~ACE_DLL_Handle (void)
+{
+ ACE_TRACE ("ACE_DLL_Handle::~ACE_DLL_Handle");
+ this->close (1);
+ delete this->dll_name_;
+}
+
+const ACE_TCHAR *
+ACE_DLL_Handle::dll_name (void) const
+{
+ ACE_TRACE ("ACE_DLL_Handle::dll_name");
+ return this->dll_name_;
+}
+
+int
+ACE_DLL_Handle::open (const ACE_TCHAR *dll_name,
+ int open_mode,
+ ACE_SHLIB_HANDLE handle)
+{
+ ACE_TRACE ("ACE_DLL_Handle::open");
+ ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, 0));
+
+ //ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("dll_name: %s; open_mode: %d \n"),
+ // dll_name,
+ // open_mode));
+
+ if (this->dll_name_)
+ {
+ // Once dll_name_ has been set, it can't be changed..
+ if (ACE_OS_String::strcmp (this->dll_name_, dll_name) != 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Handle::open: error, "
+ "tried to reopen %s with name %s\n"),
+ this->dll_name_, dll_name),
+ -1);
+ }
+ else
+ this->dll_name_ = ACE::strnew (dll_name);
+
+ if (!this->open_called_)
+ this->open_called_ = 1;
+
+ // If it hasn't been loaded yet, go ahead and do that now.
+ if (this->handle_ == ACE_SHLIB_INVALID_HANDLE)
+ {
+ if (handle)
+ this->handle_ = handle;
+ else
+ {
+ ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("ACE_DLL_Handle::open: calling dlopen on "
+ "\"%s\"\n"), dll_name));
+ // Find out where the library is
+ ACE_TCHAR dll_pathname[MAXPATHLEN + 1];
+
+ // Transform the pathname into the appropriate dynamic link library
+ // by searching the ACE_LD_SEARCH_PATH.
+ ACE_Lib_Find::ldfind (dll_name,
+ dll_pathname,
+ (sizeof dll_pathname / sizeof (ACE_TCHAR)));
+
+ // The ACE_SHLIB_HANDLE object is obtained.
+ this->handle_ = ACE_OS::dlopen (dll_pathname,
+ open_mode);
+
+#if defined (AIX)
+ if (this->handle_ == ACE_SHLIB_INVALID_HANDLE)
+ {
+ // AIX often puts the shared library file (most often named shr.o)
+ // inside an archive library. If this is an archive library
+ // name, then try appending [shr.o] and retry.
+ if (0 != ACE_OS_String::strstr (dll_pathname, ACE_LIB_TEXT (".a")))
+ {
+ ACE_OS_String::strcat (dll_pathname, ACE_LIB_TEXT ("(shr.o)"));
+ open_mode |= RTLD_MEMBER;
+ this->handle_ = ACE_OS::dlopen (dll_pathname, open_mode);
+ }
+ }
+#endif /* AIX */
+
+ if (this->handle_ == ACE_SHLIB_INVALID_HANDLE)
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("%s\n"), this->error ()->c_str ()),
+ -1);
+ }
+ }
+ }
+
+ ++this->refcount_;
+ return 0;
+}
+
+int
+ACE_DLL_Handle::close (int unload)
+{
+ ACE_TRACE ("ACE_DLL_Handle::close");
+ ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, 0));
+
+ int retval = 0;
+
+ // Since we don't actually unload the dll as soon as the refcount
+ // reaches zero, we need to make sure we don't decrement it below
+ // zero.
+ if (this->refcount_ > 0)
+ --this->refcount_;
+ else
+ this->refcount_ = 0;
+
+ if (this->refcount_ == 0 &&
+ this->handle_ != ACE_SHLIB_INVALID_HANDLE &&
+ unload == 1)
+ {
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_LIB_TEXT ("ACE_DLL_Handle::close: unloading %s\n"),
+ this->dll_name_));
+ // First remove any associated Framework Components.
+ ACE_Framework_Repository::instance ()->remove_dll_components (this->dll_name_);
+
+ retval = ACE_OS::dlclose (this->handle_);
+ this->handle_ = ACE_SHLIB_INVALID_HANDLE;
+ }
+
+ if (retval != 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Handle::close error: \"%s\"."),
+ this->error ()->c_str ()),
+ retval);
+ return retval;
+}
+
+const sig_atomic_t
+ACE_DLL_Handle::refcount (void) const
+{
+ return this->refcount_;
+}
+
+void *
+ACE_DLL_Handle::symbol (const ACE_TCHAR *sym_name)
+{
+ ACE_TRACE ("ACE_DLL_Handle::symbol");
+ ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, 0));
+
+ auto_ptr <ACE_TCHAR> auto_name (ACE_Lib_Find::ldname (sym_name));
+
+ void *sym = ACE_OS::dlsym (this->handle_, auto_name.get ());
+
+ auto_ptr <ACE_TString> error = this->error ();
+
+ // Linux says that the symbol could be null and that it isn't an error.
+ // So you should check the error message also, but since null symbols
+ // won't do us much good anyway, let's still report an error.
+ if (!sym)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Handle::symbol error: \"%s\"."),
+ error->c_str ()),
+ 0);
+
+ return sym;
+}
+
+ACE_SHLIB_HANDLE
+ACE_DLL_Handle::get_handle (int become_owner)
+{
+ ACE_TRACE ("ACE_DLL_Handle::get_handle");
+ ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, 0));
+
+ ACE_SHLIB_HANDLE handle = ACE_SHLIB_INVALID_HANDLE;
+
+ if (this->refcount_ == 0 && become_owner != 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Handle::get_handle: "
+ "cannot become owner, refcount == 0.\n")),
+ ACE_SHLIB_INVALID_HANDLE);
+ else if (become_owner != 0)
+ {
+ handle = this->handle_;
+ if (--this->refcount_ == 0)
+ this->handle_ = ACE_SHLIB_INVALID_HANDLE;
+ }
+
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_LIB_TEXT ("ACE_DLL_Handle::get_handle: "
+ "handle %s, refcount %d\n"),
+ this->handle_ == ACE_SHLIB_INVALID_HANDLE ? "invalid" : "valid",
+ this->refcount_));
+
+ return handle;
+}
+
+// This method is used return the last error of a library operation.
+
+auto_ptr <ACE_TString>
+ACE_DLL_Handle::error (void) const
+{
+ ACE_TRACE ("ACE_DLL_Handle::error");
+
+ ACE_TString *str = new ACE_TString (ACE_OS::dlerror ());
+ return auto_ptr <ACE_TString> (str);
+}
+
+/******************************************************************/
+
+ACE_DLL_Manager_Ex::ACE_DLL_Manager_Ex (int size)
+ : handle_vector_ (0),
+ current_size_ (0),
+ total_size_ (0),
+ unload_strategy_ (0)
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::ACE_DLL_Manager_Ex");
+
+ if (this->open (size) != 0)
+ ACE_ERROR ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Manager_Ex ctor failed to allocate "
+ "handle_vector_.\n")));
+}
+
+ACE_DLL_Manager_Ex::~ACE_DLL_Manager_Ex (void)
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::~ACE_DLL_Manager_Ex");
+
+ if (this->close () != 0)
+ ACE_ERROR ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Manager_Ex dtor failed to close "
+ "properly.\n")));
+}
+
+ACE_DLL_Handle *
+ACE_DLL_Manager_Ex::open_dll (const ACE_TCHAR *dll_name,
+ int open_mode,
+ ACE_SHLIB_HANDLE handle)
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::open_dll");
+ ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, 0));
+
+ ACE_DLL_Handle *dll_handle = this->find_dll (dll_name);
+ if (!dll_handle)
+ {
+ if (this->current_size_ < this->total_size_)
+ {
+ ACE_NEW_RETURN (dll_handle,
+ ACE_DLL_Handle,
+ 0);
+
+ this->handle_vector_[this->current_size_] = dll_handle;
+ this->current_size_++;
+ }
+ }
+
+ if (dll_handle)
+ {
+ if (dll_handle->open (dll_name, open_mode, handle) != 0)
+ {
+ // Don't worry about freeing the memory right now, since
+ // the handle_vector_ will be cleaned up automatically later.
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Manager::open_dll: Could not "
+ "open dll.\n")),
+ 0);
+ }
+ }
+ return dll_handle;
+}
+
+int
+ACE_DLL_Manager_Ex::close_dll (const ACE_TCHAR *dll_name)
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::close_dll");
+ ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, 0));
+
+ ACE_DLL_Handle *handle = this->find_dll (dll_name);
+ if (handle)
+ {
+ return this->unload_dll (handle, 0);
+ }
+
+ return -1;
+}
+
+u_long
+ACE_DLL_Manager_Ex::unload_strategy (void) const
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::unload_strategy");
+ return this->unload_strategy_;
+}
+
+void
+ACE_DLL_Manager_Ex::unload_strategy (u_long unload_strategy)
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::unload_strategy");
+ ACE_MT (ACE_GUARD (ACE_Thread_Mutex, ace_mon, this->lock_));
+
+ u_long old_strategy = this->unload_strategy_;
+ this->unload_strategy_ = unload_strategy;
+
+ // If going from LAZY to EAGER, inform all the ACE_DLL_Handle
+ // objects with
+ if (this->handle_vector_ &&
+ ACE_BIT_ENABLED (old_strategy, LAZY) &&
+ ACE_BIT_DISABLED (unload_strategy, LAZY))
+ {
+ for (int i = this->current_size_ - 1; i >= 0; i--)
+ {
+ if (this->handle_vector_[i] &&
+ this->handle_vector_[i]->refcount () == 0)
+ this->handle_vector_[i]->close (1);
+ }
+ }
+}
+
+int
+ACE_DLL_Manager_Ex::open (int size)
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::open");
+
+ ACE_DLL_Handle **temp;
+
+ ACE_NEW_RETURN (temp,
+ ACE_DLL_Handle *[size],
+ -1);
+
+ this->handle_vector_ = temp;
+ this->total_size_ = size;
+ return 0;
+}
+
+int
+ACE_DLL_Manager_Ex::close (void)
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::close");
+
+ int force_close = 1;
+
+ if (this->handle_vector_ != 0)
+ {
+ // Delete components in reverse order.
+ for (int i = this->current_size_ - 1; i >= 0; i--)
+ {
+ if (this->handle_vector_[i])
+ {
+ ACE_DLL_Handle *s = ACE_const_cast (ACE_DLL_Handle *,
+ this->handle_vector_[i]);
+ this->handle_vector_[i] = 0;
+ this->unload_dll (s, force_close);
+ delete s;
+ }
+ }
+
+ delete [] this->handle_vector_;
+ this->handle_vector_ = 0;
+ this->current_size_ = 0;
+ }
+ return 0;
+}
+
+ACE_DLL_Handle *
+ACE_DLL_Manager_Ex::find_dll (const ACE_TCHAR *dll_name) const
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::find_dll");
+
+ int i;
+ for (i = 0; i < this->current_size_; i++)
+ if (this->handle_vector_[i] &&
+ ACE_OS_String::strcmp (this->handle_vector_[i]->dll_name (), dll_name) == 0)
+ {
+ return this->handle_vector_[i];
+ }
+
+ return 0;
+}
+
+int
+ACE_DLL_Manager_Ex::unload_dll (ACE_DLL_Handle *dll_handle, int force_close)
+{
+ ACE_TRACE ("ACE_DLL_Manager_Ex::unload_dll");
+
+ if (dll_handle)
+ {
+ int close = force_close;
+ if (close == 0)
+ {
+ // apply strategy
+ if (ACE_BIT_DISABLED (this->unload_strategy_, PER_DLL))
+ {
+ close = ACE_BIT_DISABLED (this->unload_strategy_, LAZY);
+ }
+ else
+ {
+ // need to get it from the dll, so just dummy it up for now
+ close = ACE_BIT_DISABLED (this->unload_strategy_, LAZY);
+ }
+ }
+
+ if (dll_handle->close (close) != 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Manager_Ex::unload error.\n")),
+ -1);
+ }
+ else
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("ACE_DLL_Manager_Ex::unload_dll called with "
+ "null pointer.\n")),
+ -1);
+
+ return 0;
+}
diff --git a/ace/DLL_Manager.h b/ace/DLL_Manager.h
new file mode 100644
index 00000000000..09a8a236b7c
--- /dev/null
+++ b/ace/DLL_Manager.h
@@ -0,0 +1,227 @@
+/* -*- C++ -*- */
+
+//=============================================================================
+/**
+ * @file DLL_Manager.h
+ *
+ * $Id$
+ *
+ * @author Don Hinton <dhinton@ieee.org>
+ */
+//=============================================================================
+
+
+#ifndef ACE_DLL_MANAGER_H
+#define ACE_DLL_MANAGER_H
+#include "ace/pre.h"
+
+#include "ace/OS.h"
+#include "ace/Singleton.h"
+#include "ace/Synch_T.h"
+#include "ace/Auto_Ptr.h"
+#include "ace/SString.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#define ACE_DEFAULT_DLL_MANAGER_SIZE 1024
+
+/**
+ * @class ACE_DLL_Handle
+ *
+ * @brief Provides an abstract interface for handling various DLL
+ * operations.
+ *
+ * This class is an wrapper over the various methods for utilizing
+ * a dynamically linked library (DLL), which is called a shared
+ * library on some platforms. It is refcounted and managed by
+ * ACE_DLL_Manager, so there will only be a single instance of this
+ * class for each dll loaded, no matter how many instances of ACE_DLL
+ * an application has open. Operations <open>, <close>, and
+ * <symbol> have been implemented to help opening/closing and
+ * extracting symbol information from a DLL, respectively.
+ *
+ * Most of this class came from the original ACE_DLL class.
+ * ACE_DLL is now just an interface that passed all it's calls
+ * either directly or via ACE_DLL_Manager to this class for
+ * execution.
+ *
+ */
+class ACE_Export ACE_DLL_Handle
+{
+public:
+
+ /// Default construtor.
+ ACE_DLL_Handle (void);
+
+ /// Destructor.
+ ~ACE_DLL_Handle (void);
+
+ /// Returns the name of the shared library (without prefixes or suffixes).
+ const ACE_TCHAR *dll_name () const;
+
+ /**
+ * This method opens and dynamically links <dll_name>. The default
+ * mode is <RTLD_LAZY>, which loads identifier symbols but not the
+ * symbols for functions, which are loaded dynamically on-demand.
+ * Other supported modes include: <RTLD_NOW>, which performs all
+ * necessary relocations when <dll_name> is first loaded and
+ * <RTLD_GLOBAL>, which makes symbols available for relocation
+ * processing of any other DLLs. Returns -1 on failure and 0 on
+ * success.
+ */
+ int open (const ACE_TCHAR *dll_name,
+ int open_mode,
+ ACE_SHLIB_HANDLE handle);
+
+ /// Call to close the DLL object. If unload = 0, it only decrements
+ /// the refcount, but if unload = 1, then it will actually unload
+ /// the library when the refcount == 0;
+ int close (int unload = 0);
+
+ /// Return the current refcount.
+ const sig_atomic_t refcount (void) const;
+
+ /// If <symbol_name> is in the symbol table of the DLL a pointer to
+ /// the <symbol_name> is returned. Otherwise, returns 0.
+ void *symbol (const ACE_TCHAR *symbol_name);
+
+ /**
+ * Return the handle to the caller. If <become_owner> is non-0 then
+ * caller assumes ownership of the handle so we decrement the retcount.
+ */
+ ACE_SHLIB_HANDLE get_handle (int become_owner = 0);
+
+private:
+ /// Returns a pointer to a string explaining why <symbol> or <open>
+ /// failed. This is used internal to print out the error to the log,
+ /// but since this object is shared, we can't store or return the error
+ /// to the caller.
+ auto_ptr <ACE_TString> error (void) const;
+
+ // Keep track of how many ACE_DLL objects have a reference to this
+ // dll.
+ sig_atomic_t refcount_;
+
+ /// Name of the shared library.
+ ACE_TCHAR *dll_name_;
+
+ /// Handle to the actual library loaded by the OS.
+ volatile ACE_SHLIB_HANDLE handle_;
+
+ /// Keeps track of whether or not open() has ever been called. This
+ /// helps get around problem on Linux, and perhaps other OS's, that
+ /// seg-fault if dlerror() is called before the ld library has been
+ /// initialized by a call to dlopen().
+ static sig_atomic_t open_called_;
+
+#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0)
+ /// Synchronization variable for the MT_SAFE Repository
+ ACE_Thread_Mutex lock_;
+#endif /* ACE_MT_SAFE */
+
+ // = Disallow copying and assignment since we don't handle these.
+ ACE_UNIMPLEMENTED_FUNC (ACE_DLL_Handle (const ACE_DLL_Handle &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_DLL_Handle &))
+
+};
+
+
+/**
+ * @class ACE_DLL_Manager_Ex
+ *
+ * @brief This class serves as a factory and repository for
+ * instances of ACE_DLL_Handle. It is implemented and typedef'd
+ * as a singleton, ACE_DLL_Manager, and is thus always available
+ * via it's instance() method.
+ *
+ */
+class ACE_Export ACE_DLL_Manager_Ex
+{
+public:
+ enum
+ {
+ DEFAULT_SIZE = ACE_DEFAULT_DLL_MANAGER_SIZE
+ };
+
+ enum UNLOAD_STRATEGY
+ {
+ /// The default strategy is to use a per-process strategy
+ /// and unload dlls eagerly, i.e., as soon as the refcount
+ /// reaches zero.
+ DEFAULT = 0,
+ /// Use strategies on a per-dll basis. If dll doesn't
+ /// define a strategy, use the default one.
+ PER_DLL = 1,
+
+ /// Apply the unload_strategy hook method to decide when to
+ /// unload the dll, defaults to program exit.
+ LAZY = PER_DLL << 1
+ };
+
+ /// Default constructor.
+ ACE_DLL_Manager_Ex (int size = ACE_DLL_Manager_Ex::DEFAULT_SIZE);
+
+ /// Destructor.
+ ~ACE_DLL_Manager_Ex (void);
+
+ /// Factory for ACE_DLL_Handle objects. If one already exits,
+ /// its refcount is incremented.
+ ACE_DLL_Handle *open_dll (const ACE_TCHAR *dll_name,
+ int openmode,
+ ACE_SHLIB_HANDLE handle);
+
+ /// Close the underlying dll. Decrements the refcount.
+ int close_dll (const ACE_TCHAR *dll_name);
+
+ /// Returns the current UNLOAD_STRATEGY.
+ u_long unload_strategy (void) const;
+
+ /// Set the UNLOAD_STRATEGY. If the strategy is changed for
+ /// LAZY to EAGER, then it will also unload any dlls with zero
+ /// refcounts.
+ void unload_strategy (u_long unload_strategy = 0);
+
+protected:
+ // Allocate handle_vector_.
+ int open (int size);
+
+ // Close all open dlls and deallocate memory.
+ int close (void);
+
+ // Find dll in handle_vector_.
+ ACE_DLL_Handle *find_dll (const ACE_TCHAR *dll_name) const;
+
+ // Applies strategy for unloading dll.
+ int unload_dll (ACE_DLL_Handle *dll_handle, int force_close = 0);
+
+private:
+
+ /// Vector containing all loaded handle objects.
+ ACE_DLL_Handle **handle_vector_;
+
+ /// Current number of handles.
+ int current_size_;
+
+ /// Maximum number of handles.
+ int total_size_;
+
+ /// Unload strategy.
+ u_long unload_strategy_;
+
+#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0)
+ /// Synchronization variable for the MT_SAFE Repository
+ ACE_Thread_Mutex lock_;
+#endif /* ACE_MT_SAFE */
+
+ // = Disallow copying and assignment since we don't handle these.
+ ACE_UNIMPLEMENTED_FUNC (ACE_DLL_Manager_Ex (const ACE_DLL_Manager_Ex &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_DLL_Manager_Ex &))
+};
+
+/// Global singleton.
+typedef ACE_Singleton < ACE_DLL_Manager_Ex,
+ ACE_SYNCH_MUTEX > ACE_DLL_Manager;
+
+#endif /* ACE_DLL_MANAGER_H */
diff --git a/ace/Framework_Component.cpp b/ace/Framework_Component.cpp
index 9542063de01..dc37f3e0d64 100644
--- a/ace/Framework_Component.cpp
+++ b/ace/Framework_Component.cpp
@@ -11,12 +11,10 @@
ACE_RCSID(ace, Framework_Component, "$Id$")
-#undef ACE_TRACE
-#define ACE_TRACE(X) ACE_TRACE_IMPL(X)
-
ACE_Framework_Component::~ACE_Framework_Component (void)
{
ACE_TRACE ("ACE_Framework_Component::~ACE_Framework_Component");
+
ACE::strdelete (ACE_const_cast (ACE_TCHAR*, this->dll_name_));
ACE::strdelete (ACE_const_cast (ACE_TCHAR*, this->name_));
}
@@ -64,24 +62,22 @@ ACE_Framework_Repository::close (void)
{
// Delete components in reverse order.
for (int i = this->current_size_ - 1; i >= 0; i--)
- {
- if (this->component_vector_[i])
- {
- ACE_Framework_Component *s = ACE_const_cast (ACE_Framework_Component *,
- this->component_vector_[i]);
-
- this->component_vector_[i] = 0;
- if (s)
- s->close_singleton ();
- }
- }
+ if (this->component_vector_[i])
+ {
+ ACE_Framework_Component *s =
+ ACE_const_cast (ACE_Framework_Component *,
+ this->component_vector_[i]);
+
+ this->component_vector_[i] = 0;
+ if (s)
+ s->close_singleton ();
+ }
delete [] this->component_vector_;
this->component_vector_ = 0;
this->current_size_ = 0;
}
- //ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("AFR::close: end\n")));
return 0;
}
@@ -131,11 +127,13 @@ ACE_Framework_Repository::register_component (ACE_Framework_Component *fc)
// Check to see if it's already registered
for (i = 0; i < this->current_size_; i++)
- if (fc->this_ == this->component_vector_[i]->this_)
+ if (this->component_vector_[i] &&
+ fc->this_ == this->component_vector_[i]->this_)
{
- // Delete it since it's already here and component adapter was newed.
- delete fc;
- return 0;
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_LIB_TEXT ("AFR::register_component: error, "
+ "compenent already registered\n")),
+ -1);
}
if (i < this->total_size_)
@@ -159,9 +157,9 @@ ACE_Framework_Repository::remove_component (const ACE_TCHAR *name)
if (this->component_vector_[i] &&
ACE_OS_String::strcmp (this->component_vector_[i]->name_, name) == 0)
{
- this->component_vector_[i]->close_singleton ();
delete this->component_vector_[i];
this->component_vector_[i] = 0;
+ this->compact ();
return 0;
}
@@ -188,22 +186,72 @@ ACE_Framework_Repository::remove_dll_components_i (const ACE_TCHAR *dll_name)
int i;
int retval = -1;
- //ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("AFR::remove_dll_components ('%s')\n"), dll_name));
-
for (i = 0; i < this->current_size_; i++)
if (this->component_vector_[i] &&
ACE_OS_String::strcmp (this->component_vector_[i]->dll_name_, dll_name) == 0)
{
- //ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("AFR::remove_dll_c...()\n")));
- this->component_vector_[i]->close_singleton ();
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_LIB_TEXT ("AFR::remove_dll_components_i (%s) "
+ "component \"%s\"\n"),
+ dll_name, this->component_vector_[i]->name_));
+ delete this->component_vector_[i];
this->component_vector_[i] = 0;
++retval;
}
+ this->compact ();
+
return retval == -1 ? -1 : 0;
}
void
+ACE_Framework_Repository::compact (void)
+{
+ ACE_TRACE ("ACE_Framework_Repository::compact");
+
+ int i;
+ int start_hole;
+ int end_hole;
+
+ do
+ {
+ start_hole = this->current_size_;
+ end_hole = this->current_size_;
+
+ // Find hole
+ for (i = 0; i < this->current_size_; ++i)
+ {
+ if (this->component_vector_[i] == 0)
+ {
+ if (start_hole == this->current_size_)
+ {
+ start_hole = i;
+ end_hole = i;
+ }
+ else
+ end_hole = i;
+ }
+ else if (end_hole != this->current_size_)
+ break;
+ }
+
+ if (start_hole != this->current_size_)
+ {
+ // move the contents and reset current_size_
+ while (end_hole + 1 < this->current_size_)
+ {
+ this->component_vector_[start_hole++] =
+ this->component_vector_[++end_hole];
+ }
+ // Since start_hole is now one past the last
+ // active slot.
+ this->current_size_ = start_hole;
+ }
+
+ } while (start_hole != this->current_size_);
+}
+
+void
ACE_Framework_Repository::dump (void) const
{
ACE_TRACE ("ACE_Framework_Repository::dump");
diff --git a/ace/Framework_Component.h b/ace/Framework_Component.h
index 373ebec6199..d5afe8ebe2d 100644
--- a/ace/Framework_Component.h
+++ b/ace/Framework_Component.h
@@ -110,7 +110,8 @@ public:
int close (void);
/// Get pointer to a process-wide <ACE_Framework_Repository>.
- static ACE_Framework_Repository *instance (int size = ACE_Framework_Repository::DEFAULT_SIZE);
+ static ACE_Framework_Repository *instance
+ (int size = ACE_Framework_Repository::DEFAULT_SIZE);
/// Delete the dynamically allocated Singleton.
static void close_singleton (void);
@@ -149,6 +150,10 @@ private:
/// Actually removes the dll components, must be called with locks held.
int remove_dll_components_i (const ACE_TCHAR *dll_name);
+ /// Compact component_vector_ after components have been removed__maintains
+ /// order.
+ void compact (void);
+
/// Contains all the framework components.
ACE_Framework_Component **component_vector_;
diff --git a/ace/Framework_Component_T.cpp b/ace/Framework_Component_T.cpp
index 82ee68f2a5a..01170d7d65e 100644
--- a/ace/Framework_Component_T.cpp
+++ b/ace/Framework_Component_T.cpp
@@ -13,7 +13,7 @@ ACE_RCSID(ace, Framework_Component_T, "$Id$")
template <class Concrete>
ACE_Framework_Component_T<Concrete>::ACE_Framework_Component_T (Concrete *concrete)
- : ACE_Framework_Component ((void *) concrete, concrete->dll_name ())
+ : ACE_Framework_Component ((void *) concrete, concrete->dll_name (), concrete->name ())
{
ACE_TRACE ("ACE_Framework_Component_T<Concrete>::ctor");
}
@@ -22,8 +22,7 @@ template <class Concrete>
ACE_Framework_Component_T<Concrete>::~ACE_Framework_Component_T (void)
{
ACE_TRACE ("ACE_Framework_Component_T<Concrete>::~ACE_Framework_Component_T");
- // @todo This is a bug. It shouldn't be closed here. Need to add a close method.
- //Concrete::close_singleton ();
+ Concrete::close_singleton ();
}
template <class Concrete> void
diff --git a/ace/Makefile b/ace/Makefile
index 2015592a5be..a5a99af34c2 100644
--- a/ace/Makefile
+++ b/ace/Makefile
@@ -612,15914 +612,11290 @@ endif # GHS
.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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Basic_Types.i \
+ Template_Instantiations.cpp
.obj/Time_Value.o .obj/Time_Value.so .shobj/Time_Value.o .shobj/Time_Value.so: Time_Value.cpp \
- Time_Value.h \
- pre.h \
- OS_Export.h \
- config-all.h \
- config.h \
- config-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
+ 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 \
+ Basic_Types.h \
+ Time_Value.inl
+
+.obj/OS.o .obj/OS.so .shobj/OS.o .shobj/OS.so: OS.cpp \
+ OS.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Sched_Params.h \
+ OS_Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ OS_QoS.h \
+ OS.i
.obj/OS_Dirent.o .obj/OS_Dirent.so .shobj/OS_Dirent.o .shobj/OS_Dirent.so: OS_Dirent.cpp \
- OS_Dirent.h \
- pre.h \
- OS_Export.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ Log_Msg.h \
+ Global_Macros.h \
+ Default_Constants.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ streams.h \
+ OS.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Min_Max.h \
+ Trace.h \
+ OS_Dirent.inl
.obj/OS_Memory.o .obj/OS_Memory.so .shobj/OS_Memory.o .shobj/OS_Memory.so: OS_Memory.cpp \
- OS_Memory.h \
- pre.h \
- OS_Export.h \
- config-all.h \
- config.h \
- config-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
+ 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_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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h
.obj/OS_String.o .obj/OS_String.so .shobj/OS_String.o .shobj/OS_String.so: OS_String.cpp \
- OS_String.h \
- pre.h \
- OS_Export.h \
- config-all.h \
- config.h \
- config-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
+ 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 \
+ OS_Memory.h \
+ OS_Errno.h \
+ OS_String.inl
.obj/OS_TLI.o .obj/OS_TLI.so .shobj/OS_TLI.o .shobj/OS_TLI.so: OS_TLI.cpp \
- OS_TLI.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_TLI.inl
+ 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_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
+ 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
+ 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.h \
+ OS_Dirent.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ Trace.h \
+ Base_Thread_Adapter.inl
.obj/OS_Thread_Adapter.o .obj/OS_Thread_Adapter.so .shobj/OS_Thread_Adapter.o .shobj/OS_Thread_Adapter.so: OS_Thread_Adapter.cpp \
- OS_Thread_Adapter.h \
- pre.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- streams.h \
- OS_Export.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- OS_Thread_Adapter.inl \
- Thread_Hook.h \
- OS.h \
- OS_Dirent.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- Trace.h \
- OS.i
+ OS_Thread_Adapter.h \
+ pre.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl \
+ streams.h \
+ OS_Export.h \
+ Thread_Hook.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ Trace.h \
+ OS_Thread_Adapter.inl
.obj/OS_Log_Msg_Attributes.o .obj/OS_Log_Msg_Attributes.so .shobj/OS_Log_Msg_Attributes.o .shobj/OS_Log_Msg_Attributes.so: OS_Log_Msg_Attributes.cpp \
- OS_Log_Msg_Attributes.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- streams.h \
- OS_Export.h \
- OS_Log_Msg_Attributes.inl
+ 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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h
.obj/Sched_Params.o .obj/Sched_Params.so .shobj/Sched_Params.o .shobj/Sched_Params.so: Sched_Params.cpp \
- Sched_Params.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Sched_Params.i
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Sched_Params.i
.obj/Handle_Set.o .obj/Handle_Set.so .shobj/Handle_Set.o .shobj/Handle_Set.so: Handle_Set.cpp \
- Handle_Set.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Handle_Set.i
.obj/Copy_Disabled.o .obj/Copy_Disabled.so .shobj/Copy_Disabled.o .shobj/Copy_Disabled.so: Copy_Disabled.cpp \
- Copy_Disabled.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
-
-.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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Handle_Set.h \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ String_Base.i \
+ Version.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i
.obj/Active_Map_Manager.o .obj/Active_Map_Manager.so .shobj/Active_Map_Manager.o .shobj/Active_Map_Manager.so: Active_Map_Manager.cpp \
- Active_Map_Manager.h \
- pre.h \
- OS_String.h \
- OS_Export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- Active_Map_Manager.i \
- Active_Map_Manager_T.h \
- Map_Manager.h \
- Synch.h \
- OS.h \
- OS_Dirent.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Map_Manager.i \
- Map_Manager.cpp \
- Malloc.h \
- Malloc.i \
- Malloc_T.h \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Service_Config.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Active_Map_Manager_T.i \
- Active_Map_Manager_T.cpp
+ 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 \
+ Active_Map_Manager_T.h \
+ Map_Manager.h \
+ Synch.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Errno.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Map_Manager.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Map_Manager.i \
+ Active_Map_Manager_T.cpp \
+ Active_Map_Manager_T.i \
+ Active_Map_Manager.i
.obj/Arg_Shifter.o .obj/Arg_Shifter.so .shobj/Arg_Shifter.o .shobj/Arg_Shifter.so: Arg_Shifter.cpp \
- Arg_Shifter.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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 \
+ OS_Errno.h
.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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Unbounded_Queue.inl \
+ ARGV.i
.obj/Argv_Type_Converter.o .obj/Argv_Type_Converter.so .shobj/Argv_Type_Converter.o .shobj/Argv_Type_Converter.so: Argv_Type_Converter.cpp \
- Argv_Type_Converter.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- 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
+ 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 \
+ OS_Errno.h
.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Map_Manager.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Map_Manager.i \
+ Capabilities.h \
+ Hash_Map_Manager.h \
+ Hash_Map_Manager_T.h \
+ Functor.h \
+ Functor_T.h \
+ Functor_T.cpp \
+ Functor_T.i \
+ Hash_Map_Manager_T.cpp \
+ Hash_Map_Manager_T.i \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Capabilities.i
.obj/Containers.o .obj/Containers.so .shobj/Containers.o .shobj/Containers.so: Containers.cpp \
- Containers.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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_T.h \
+ Node.h \
+ Node.cpp \
+ Array_Base.h \
+ Global_Macros.h \
+ OS_Export.h \
+ Array_Base.cpp \
+ Malloc_Base.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Unbounded_Set.inl \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Containers.i
.obj/Configuration.o .obj/Configuration.so .shobj/Configuration.o .shobj/Configuration.so: Configuration.cpp \
- Configuration.h \
- pre.h \
- SString.h \
- 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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.i \
- Unbounded_Queue.h \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Hash_Map_With_Allocator_T.i \
- Hash_Map_With_Allocator_T.cpp \
- Configuration_Import_Export.h
+ Configuration.h \
+ pre.h \
+ SString.h \
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ Hash_Map_With_Allocator_T.h \
+ Hash_Map_Manager.h \
+ Hash_Map_Manager_T.h \
+ Functor.h \
+ Functor_T.h \
+ Functor_T.cpp \
+ Functor_T.i \
+ Hash_Map_Manager_T.cpp \
+ Hash_Map_Manager_T.i \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Hash_Map_With_Allocator_T.cpp \
+ Hash_Map_With_Allocator_T.i \
+ Configuration_Import_Export.h
.obj/Configuration_Import_Export.o .obj/Configuration_Import_Export.so .shobj/Configuration_Import_Export.o .shobj/Configuration_Import_Export.so: Configuration_Import_Export.cpp \
- Configuration_Import_Export.h \
- pre.h \
- Configuration.h \
- SString.h \
- 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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.i \
- Unbounded_Queue.h \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Hash_Map_With_Allocator_T.i \
- Hash_Map_With_Allocator_T.cpp
+ Configuration_Import_Export.h \
+ pre.h \
+ Configuration.h \
+ SString.h \
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ Hash_Map_With_Allocator_T.h \
+ Hash_Map_Manager.h \
+ Hash_Map_Manager_T.h \
+ Functor.h \
+ Functor_T.h \
+ Functor_T.cpp \
+ Functor_T.i \
+ Hash_Map_Manager_T.cpp \
+ Hash_Map_Manager_T.i \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Hash_Map_With_Allocator_T.cpp \
+ Hash_Map_With_Allocator_T.i
.obj/Dirent.o .obj/Dirent.so .shobj/Dirent.o .shobj/Dirent.so: Dirent.cpp \
- Dirent.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- Dirent.i \
- Log_Msg.h \
- Global_Macros.h \
- Default_Constants.h \
- Log_Priority.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_Log_Msg_Attributes.h \
- streams.h \
- OS_Log_Msg_Attributes.inl
+ 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 \
+ Dirent.i \
+ Log_Msg.h \
+ Global_Macros.h \
+ Default_Constants.h \
+ Log_Priority.h \
+ Basic_Types.h \
+ OS_Log_Msg_Attributes.h \
+ streams.h
.obj/Dirent_Selector.o .obj/Dirent_Selector.so .shobj/Dirent_Selector.o .shobj/Dirent_Selector.so: Dirent_Selector.cpp \
- OS.h \
- pre.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Dirent_Selector.h \
+ Dirent_Selector.inl
.obj/Dynamic.o .obj/Dynamic.so .shobj/Dynamic.o .shobj/Dynamic.so: Dynamic.cpp \
- Dynamic.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Dynamic.i \
- Singleton.h \
- Synch.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Singleton.i \
- Singleton.cpp \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp
+ 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 \
+ Singleton.h \
+ Synch.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Dynamic.i
.obj/Flag_Manip.o .obj/Flag_Manip.so .shobj/Flag_Manip.o .shobj/Flag_Manip.so: Flag_Manip.cpp Flag_Manip.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i
.obj/Framework_Component.o .obj/Framework_Component.so .shobj/Framework_Component.o .shobj/Framework_Component.so: Framework_Component.cpp \
- Framework_Component.h \
- pre.h \
- Synch.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Framework_Component.inl \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ 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
.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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Functor_T.cpp \
+ Functor_T.i \
+ Functor.i
.obj/Get_Opt.o .obj/Get_Opt.so .shobj/Get_Opt.o .shobj/Get_Opt.so: Get_Opt.cpp \
- Get_Opt.h \
- pre.h \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Get_Opt.i
.obj/Hash_Map_Manager.o .obj/Hash_Map_Manager.so .shobj/Hash_Map_Manager.o .shobj/Hash_Map_Manager.so: Hash_Map_Manager.cpp \
- Hash_Map_Manager.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Hash_Map_Manager_T.h \
- Default_Constants.h \
- Functor.h \
- ACE.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Functor.i \
- Functor_T.h \
- Functor_T.i \
- Functor_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Hash_Map_Manager_T.i \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Hash_Map_Manager_T.cpp \
- Service_Config.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Event_Handler.h \
- Event_Handler.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h
+ Hash_Map_Manager.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Functor_T.h \
+ Functor_T.cpp \
+ Functor_T.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Hash_Map_Manager_T.cpp \
+ Hash_Map_Manager_T.i \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ Event_Handler.h \
+ DLL.h \
+ Signal.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i
.obj/Connection_Recycling_Strategy.o .obj/Connection_Recycling_Strategy.so .shobj/Connection_Recycling_Strategy.o .shobj/Connection_Recycling_Strategy.so: Connection_Recycling_Strategy.cpp \
- Connection_Recycling_Strategy.h \
- pre.h \
- Recyclable.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Recyclable.inl
+ Connection_Recycling_Strategy.h \
+ pre.h \
+ Recyclable.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl
.obj/Hashable.o .obj/Hashable.so .shobj/Hashable.o .shobj/Hashable.so: Hashable.cpp \
- Hashable.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Hashable.inl
+ 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ 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
+ 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
.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
+ 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Handle_Ops.i
.obj/Init_ACE.o .obj/Init_ACE.so .shobj/Init_ACE.o .shobj/Init_ACE.so: Init_ACE.cpp \
- Init_ACE.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Init_ACE.i \
- Object_Manager.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i
.obj/Lib_Find.o .obj/Lib_Find.so .shobj/Lib_Find.o .shobj/Lib_Find.so: Lib_Find.cpp \
- Lib_Find.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Lib_Find.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Lib_Find.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/Message_Block.o .obj/Message_Block.so .shobj/Message_Block.o .shobj/Message_Block.so: Message_Block.cpp \
- Message_Block.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- 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 \
- Malloc_Base.h \
- 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 \
- Timeprobe.h
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Malloc_Base.h \
+ Synch_T.h \
+ Synch.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Timeprobe.h \
+ Message_Block.i
.obj/Method_Request.o .obj/Method_Request.so .shobj/Method_Request.o .shobj/Method_Request.so: Method_Request.cpp \
- Method_Request.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Global_Macros.h \
- OS_Export.h
+ Method_Request.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Local_Tokens.h \
- Local_Tokens.i \
- Token_Manager.i \
- 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 \
- Containers.h \
- Containers.i \
- Containers_T.h \
- Array_Base.h \
- Array_Base.inl \
- Array_Base.cpp \
- Containers_T.i \
- Containers_T.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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Token_Manager.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Map_Manager.h \
+ Map_Manager.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Map_Manager.i \
+ Local_Tokens.h \
+ Service_Manager.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ Addr.h \
+ IPC_SAP.h \
+ IPC_SAP.i \
+ SOCK.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Acceptor.h \
+ SOCK_Acceptor.i \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Object_Manager.i
.obj/Registry.o .obj/Registry.so .shobj/Registry.o .shobj/Registry.so: Registry.cpp \
- Registry.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h
.obj/String_Base_Const.o .obj/String_Base_Const.so .shobj/String_Base_Const.o .shobj/String_Base_Const.so: String_Base_Const.cpp \
- String_Base_Const.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ SString.i
.obj/Stats.o .obj/Stats.so .shobj/Stats.o .shobj/Stats.so: Stats.cpp \
- Stats.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Unbounded_Queue.h \
- Node.h \
- Node.cpp \
- OS_Memory.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Memory.inl \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Malloc_Base.h \
- OS.h \
- OS_Dirent.h \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Basic_Stats.h \
- Basic_Stats.inl \
- Stats.i \
- High_Res_Timer.h \
- High_Res_Timer.i
+ 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 \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Unbounded_Queue.inl \
+ Basic_Stats.h \
+ High_Res_Timer.h \
+ Stats.i
.obj/Sample_History.o .obj/Sample_History.so .shobj/Sample_History.o .shobj/Sample_History.so: Sample_History.cpp \
- Sample_History.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- Sample_History.inl \
- Basic_Stats.h \
- Basic_Stats.inl \
- Log_Msg.h \
- Global_Macros.h \
- OS_Export.h \
- Default_Constants.h \
- Log_Priority.h \
- OS_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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Event_Handler.h \
- Event_Handler.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp
+ Sample_History.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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_Stats.h \
+ Log_Msg.h \
+ Global_Macros.h \
+ OS_Export.h \
+ Default_Constants.h \
+ Log_Priority.h \
+ OS_Errno.h \
+ OS_Log_Msg_Attributes.h \
+ streams.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_String.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Min_Max.h \
+ Trace.h \
+ Sample_History.inl
.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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Dump.h \
+ Dump_T.h \
+ Dump_T.cpp \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i
.obj/Log_Msg.o .obj/Log_Msg.so .shobj/Log_Msg.o .shobj/Log_Msg.so: Log_Msg.cpp \
- config-all.h \
- pre.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- ACE.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Thread_Manager.h \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- 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 \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Thread_Manager.h \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Log_Msg_Callback.h \
+ Log_Msg_IPC.h \
+ Log_Msg_Backend.h \
+ SOCK_Connector.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ Addr.h \
+ IPC_SAP.h \
+ IPC_SAP.i \
+ SOCK.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Connector.i \
+ Log_Msg_NT_Event_Log.h \
+ Log_Msg_UNIX_Syslog.h \
+ Log_Record.h \
+ Log_Record.i
.obj/Log_Msg_Callback.o .obj/Log_Msg_Callback.so .shobj/Log_Msg_Callback.o .shobj/Log_Msg_Callback.so: Log_Msg_Callback.cpp \
- Log_Msg_Callback.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ Log_Msg_Callback.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl
.obj/Log_Msg_Backend.o .obj/Log_Msg_Backend.so .shobj/Log_Msg_Backend.o .shobj/Log_Msg_Backend.so: Log_Msg_Backend.cpp \
- Log_Msg_Backend.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ Log_Msg_Backend.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl
.obj/Log_Msg_IPC.o .obj/Log_Msg_IPC.so .shobj/Log_Msg_IPC.o .shobj/Log_Msg_IPC.so: Log_Msg_IPC.cpp \
- Log_Msg_IPC.h \
- pre.h \
- Log_Msg_Backend.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- SOCK_Connector.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Connector.i \
- Log_Record.h \
- Log_Priority.h \
- Log_Record.i
+ Log_Msg_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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Connector.i \
+ Log_Record.h \
+ Log_Priority.h \
+ Log_Record.i
.obj/Log_Msg_NT_Event_Log.o .obj/Log_Msg_NT_Event_Log.so .shobj/Log_Msg_NT_Event_Log.o .shobj/Log_Msg_NT_Event_Log.so: Log_Msg_NT_Event_Log.cpp \
- config-all.h \
- pre.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ config-all.h \
+ pre.h \
+ config.h \
+ config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg_UNIX_Syslog.h \
+ Log_Msg_Backend.h \
+ Log_Record.h \
+ Log_Record.i
.obj/Log_Record.o .obj/Log_Record.so .shobj/Log_Record.o .shobj/Log_Record.so: Log_Record.cpp \
- Log_Record.h \
- OS.h \
- pre.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Priority.h \
+ Log_Record.i \
+ Log_Msg.h \
+ OS_Log_Msg_Attributes.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i
.obj/Logging_Strategy.o .obj/Logging_Strategy.so .shobj/Logging_Strategy.o .shobj/Logging_Strategy.so: Logging_Strategy.cpp \
- 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 \
- Service_Object.i
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Logging_Strategy.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h
.obj/Trace.o .obj/Trace.so .shobj/Trace.o .shobj/Trace.so: Trace.cpp \
- Trace.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Global_Macros.h \
- OS_Export.h \
- Log_Msg.h \
- Default_Constants.h \
- Log_Priority.h \
- 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
+ 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 \
+ OS_Errno.h \
+ OS_Log_Msg_Attributes.h \
+ streams.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_String.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Min_Max.h
.obj/Activation_Queue.o .obj/Activation_Queue.so .shobj/Activation_Queue.o .shobj/Activation_Queue.so: Activation_Queue.cpp \
- Activation_Queue.h \
- pre.h \
- Synch_T.h \
- Synch.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Message_Queue.h \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Event_Handler.h \
+ 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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Process.h \
+ Handle_Set.h \
+ SString.h \
+ 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.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ ARGV.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ Process.i
.obj/Process_Manager.o .obj/Process_Manager.so .shobj/Process_Manager.o .shobj/Process_Manager.so: Process_Manager.cpp \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Process.h \
+ Handle_Set.h \
+ 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.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ Process_Manager.h \
+ Reactor.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Process_Manager.i
.obj/Synch.o .obj/Synch.so .shobj/Synch.o .shobj/Synch.so: Synch.cpp \
- Thread.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.h \
- Synch.h \
- Synch.i \
- Synch_T.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Synch_T.h \
+ Synch.h \
+ Synch_T.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Synch.i
.obj/Synch_Options.o .obj/Synch_Options.so .shobj/Synch_Options.o .shobj/Synch_Options.so: Synch_Options.cpp \
- Synch_Options.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Process_Mutex.inl
.obj/RW_Process_Mutex.o .obj/RW_Process_Mutex.so .shobj/RW_Process_Mutex.o .shobj/RW_Process_Mutex.so: RW_Process_Mutex.cpp \
- RW_Process_Mutex.h \
- pre.h \
- File_Lock.h \
- OS.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- File_Lock.inl \
- RW_Process_Mutex.inl \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ RW_Process_Mutex.inl
.obj/File_Lock.o .obj/File_Lock.so .shobj/File_Lock.o .shobj/File_Lock.so: File_Lock.cpp \
- File_Lock.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ File_Lock.inl
.obj/Thread.o .obj/Thread.so .shobj/Thread.o .shobj/Thread.so: Thread.cpp \
- Thread.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Thread.i
.obj/Thread_Manager.o .obj/Thread_Manager.so .shobj/Thread_Manager.o .shobj/Thread_Manager.so: Thread_Manager.cpp \
- Synch_T.h \
- pre.h \
- Synch.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Thread_Manager.h \
- 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 \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Thread_Manager.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Dynamic.h \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ Thread_Exit.h \
+ Thread_Control.h \
+ Thread_Manager.i
.obj/Thread_Adapter.o .obj/Thread_Adapter.so .shobj/Thread_Adapter.o .shobj/Thread_Adapter.so: Thread_Adapter.cpp \
- Thread_Adapter.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- streams.h \
- OS_Export.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- OS.h \
- OS_Dirent.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- Trace.h \
- OS.i \
- Thread_Manager.h \
- Thread.h \
- Thread.i \
- 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 \
- Thread_Manager.i \
- Thread_Exit.h \
- Thread_Control.h \
- Thread_Control.inl \
- Thread_Hook.h
+ 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.h \
+ OS_Dirent.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ Trace.h \
+ Thread_Manager.h \
+ Thread.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Thread_Exit.h \
+ Thread_Control.h \
+ Thread_Hook.h \
+ Thread_Adapter.inl
.obj/Thread_Exit.o .obj/Thread_Exit.so .shobj/Thread_Exit.o .shobj/Thread_Exit.so: Thread_Exit.cpp \
- Thread_Exit.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Thread_Control.h \
- Thread_Control.inl \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Managed_Object.h \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.i \
- Managed_Object.cpp
+ Thread_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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Thread_Control.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Managed_Object.h \
+ Object_Manager.h \
+ Managed_Object.cpp \
+ Managed_Object.i
.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 \
- Thread_Manager.i
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Thread_Manager.h \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Thread_Control.inl
.obj/Token.o .obj/Token.so .shobj/Token.o .shobj/Token.so: Token.cpp \
- Thread.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Token.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Token.i
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Token.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Token.i
.obj/Event_Handler.o .obj/Event_Handler.so .shobj/Event_Handler.o .shobj/Event_Handler.so: Event_Handler.cpp \
- Event_Handler.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Event_Handler.i \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- 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 \
- Thread_Manager.i
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Thread_Manager.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Event_Handler.i
.obj/FlReactor.o .obj/FlReactor.so .shobj/FlReactor.o .shobj/FlReactor.so: FlReactor.cpp \
- FlReactor.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ 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
.obj/Msg_WFMO_Reactor.o .obj/Msg_WFMO_Reactor.so .shobj/Msg_WFMO_Reactor.o .shobj/Msg_WFMO_Reactor.so: Msg_WFMO_Reactor.cpp \
- Msg_WFMO_Reactor.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Msg_WFMO_Reactor.i
+ Msg_WFMO_Reactor.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl
.obj/POSIX_Proactor.o .obj/POSIX_Proactor.so .shobj/POSIX_Proactor.o .shobj/POSIX_Proactor.so: POSIX_Proactor.cpp \
- POSIX_Proactor.h \
- config-all.h \
- pre.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Proactor_Impl.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Asynch_IO.h \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Timer_Queue_T.h \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Test_and_Set.h \
- Event_Handler.h \
- Event_Handler.i \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Signal.h \
- Signal.i \
- Reactor.i \
- Reactor_Impl.h \
- Pipe.h \
- Pipe.i \
- POSIX_Asynch_IO.h \
- Asynch_IO_Impl.h \
- Asynch_IO_Impl.i \
- Unbounded_Queue.h \
- Node.h \
- Node.cpp \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Malloc_Base.h \
- Map_Manager.h \
- Map_Manager.i \
- Map_Manager.cpp \
- Malloc.h \
- Malloc.i \
- Malloc_T.h \
- Malloc_Allocator.h \
- Malloc_Allocator.i \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Service_Config.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Svc_Conf_Tokens.h \
- POSIX_Asynch_IO.i \
- Asynch_Pseudo_Task.h \
- Select_Reactor.h \
- Select_Reactor_T.h \
- Select_Reactor_Base.h \
- Token.h \
- Token.i \
- Select_Reactor_Base.i \
- Select_Reactor_T.cpp \
- Timer_Heap.h \
- Timer_Heap_T.h \
- Timer_Heap_T.cpp \
- Select_Reactor_T.i \
- Task.h \
- 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 \
- Thread_Manager.i \
- Task.i \
- Task_T.h \
- Message_Queue.h \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- IO_Cntl_Msg.h \
- Message_Queue_T.h \
- Message_Queue_T.i \
- Message_Queue_T.cpp \
- Notification_Strategy.h \
- Notification_Strategy.inl \
- Message_Queue.i \
- Task_T.i \
- Task_T.cpp \
- Module.h \
- Module.i \
- Module.cpp \
- Stream_Modules.h \
- Stream_Modules.cpp \
- POSIX_Proactor.i
+ POSIX_Proactor.h \
+ config-all.h \
+ pre.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Asynch_IO.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Pipe.h \
+ Pipe.i \
+ POSIX_Asynch_IO.h \
+ Asynch_IO_Impl.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Map_Manager.h \
+ Map_Manager.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Map_Manager.i \
+ Asynch_Pseudo_Task.h \
+ Select_Reactor.h \
+ Select_Reactor_T.h \
+ Select_Reactor_Base.h \
+ Token.h \
+ Reactor_Impl.h \
+ Select_Reactor_T.cpp \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Timer_Heap_T.cpp \
+ Select_Reactor_T.i \
+ Task.h \
+ Thread_Manager.h \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task_T.cpp \
+ Module.h \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Task_T.i \
+ POSIX_Proactor.i
.obj/POSIX_CB_Proactor.o .obj/POSIX_CB_Proactor.so .shobj/POSIX_CB_Proactor.o .shobj/POSIX_CB_Proactor.so: POSIX_CB_Proactor.cpp \
- POSIX_CB_Proactor.h \
- config-all.h \
- pre.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ POSIX_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
.obj/WIN32_Proactor.o .obj/WIN32_Proactor.so .shobj/WIN32_Proactor.o .shobj/WIN32_Proactor.so: WIN32_Proactor.cpp \
- WIN32_Proactor.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ WIN32_Proactor.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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
+ 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 \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Unbounded_Queue.inl \
+ Select_Reactor.h \
+ Select_Reactor_T.h \
+ Select_Reactor_Base.h \
+ Signal.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Event_Handler.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Handle_Set.h \
+ Token.h \
+ Pipe.h \
+ Pipe.i \
+ Reactor_Impl.h \
+ Select_Reactor_T.cpp \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Timer_Heap_T.cpp \
+ Select_Reactor_T.i \
+ Reactor.h \
+ Malloc_T.h \
+ Malloc.h \
+ Memory_Pool.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Malloc_Allocator.h \
+ Malloc_T.cpp \
+ Malloc_T.i
.obj/Proactor.o .obj/Proactor.so .shobj/Proactor.o .shobj/Proactor.so: Proactor.cpp \
- Proactor.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- ACE_export.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Asynch_IO.h \
- Asynch_IO_Impl.h \
- Asynch_IO_Impl.i \
- Thread_Manager.h \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- 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 \
- 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 \
- Service_Object.i \
- Task.i \
- Task_T.i \
- Task_T.cpp \
- Module.h \
- Module.i \
- Module.cpp \
- Stream_Modules.h \
- Stream_Modules.cpp \
- Service_Config.h \
- SString.h \
- 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 \
- 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 \
- Service_Config.i \
- Svc_Conf_Tokens.h \
- Framework_Component.h \
- Framework_Component.inl \
- Framework_Component_T.h \
- Framework_Component_T.inl \
- Framework_Component_T.cpp \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Asynch_IO.h \
+ Asynch_IO_Impl.h \
+ Thread_Manager.h \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Timer_List.h \
+ Timer_List_T.h \
+ Timer_List_T.cpp \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Timer_Heap_T.cpp \
+ Timer_Wheel.h \
+ Timer_Wheel_T.h \
+ Timer_Wheel_T.cpp \
+ High_Res_Timer.h \
+ Proactor_Impl.h \
+ Reactor.h \
+ Handle_Set.h \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Task_T.cpp \
+ Module.h \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Task_T.i \
+ Service_Config.h \
+ 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 \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ POSIX_Proactor.h \
+ Pipe.h \
+ Pipe.i \
+ POSIX_Asynch_IO.h \
+ Map_Manager.h \
+ Map_Manager.cpp \
+ Map_Manager.i \
+ Asynch_Pseudo_Task.h \
+ Select_Reactor.h \
+ Select_Reactor_T.h \
+ Select_Reactor_Base.h \
+ Token.h \
+ Reactor_Impl.h \
+ Select_Reactor_T.cpp \
+ Select_Reactor_T.i \
+ Proactor.i
.obj/Reactor.o .obj/Reactor.so .shobj/Reactor.o .shobj/Reactor.so: Reactor.cpp \
- Reactor.h \
- pre.h \
- Handle_Set.h \
- OS.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Handle_Set.i \
- Timer_Queue.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Timer_Queue_T.h \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Test_and_Set.h \
- Event_Handler.h \
- Event_Handler.i \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Signal.h \
- Signal.i \
- Reactor.i \
- Reactor_Impl.h \
- Service_Config.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- 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 \
- 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 \
- Service_Config.i \
- Svc_Conf_Tokens.h \
- Select_Reactor.h \
- Select_Reactor_T.h \
- Select_Reactor_Base.h \
- Token.h \
- Token.i \
- Pipe.h \
- Pipe.i \
- Select_Reactor_Base.i \
- Select_Reactor_T.cpp \
- Timer_Heap.h \
- Timer_Heap_T.h \
- Timer_Heap_T.cpp \
- Select_Reactor_T.i \
- TP_Reactor.h \
- TP_Reactor.i \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp \
- Framework_Component.h \
- Framework_Component.inl \
- Framework_Component_T.h \
- Framework_Component_T.inl \
- Framework_Component_T.cpp
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Timer_Queue.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Reactor_Impl.h \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Select_Reactor.h \
+ Select_Reactor_T.h \
+ Select_Reactor_Base.h \
+ Token.h \
+ Pipe.h \
+ Pipe.i \
+ Select_Reactor_T.cpp \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Timer_Heap_T.cpp \
+ Select_Reactor_T.i \
+ TP_Reactor.h \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Reactor.i
.obj/Select_Reactor.o .obj/Select_Reactor.so .shobj/Select_Reactor.o .shobj/Select_Reactor.so: Select_Reactor.cpp \
- Select_Reactor.h \
- pre.h \
- Select_Reactor_T.h \
- Select_Reactor_Base.h \
- Signal.h \
- Synch.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Handle_Set.h \
- Handle_Set.i \
- Token.h \
- Token.i \
- Pipe.h \
- Pipe.i \
- Reactor_Impl.h \
- Select_Reactor_Base.i \
- Reactor.h \
- Reactor.i \
- Select_Reactor_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Timer_Heap.h \
- Timer_Heap_T.h \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Malloc_Base.h \
- Timer_Heap_T.cpp \
- Select_Reactor_T.i
+ Select_Reactor.h \
+ pre.h \
+ Select_Reactor_T.h \
+ Select_Reactor_Base.h \
+ Signal.h \
+ Synch.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Event_Handler.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Handle_Set.h \
+ Token.h \
+ Pipe.h \
+ Pipe.i \
+ Reactor_Impl.h \
+ Select_Reactor_T.cpp \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Malloc_Base.h \
+ Unbounded_Set.inl \
+ Timer_Heap_T.cpp \
+ Select_Reactor_T.i \
+ Reactor.h
.obj/Select_Reactor_Base.o .obj/Select_Reactor_Base.so .shobj/Select_Reactor_Base.o .shobj/Select_Reactor_Base.so: Select_Reactor_Base.cpp \
- Select_Reactor_Base.h \
- pre.h \
- Signal.h \
- Synch.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Handle_Set.h \
- Handle_Set.i \
- Token.h \
- Token.i \
- Pipe.h \
- Pipe.i \
- Reactor_Impl.h \
- Select_Reactor_Base.i \
- Reactor.h \
- Reactor.i \
- SOCK_Acceptor.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Acceptor.i \
- SOCK_Connector.h \
- SOCK_Connector.i \
- Timer_Heap.h \
- Timer_Heap_T.h \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Malloc_Base.h \
- Timer_Heap_T.cpp
+ Select_Reactor_Base.h \
+ pre.h \
+ Signal.h \
+ Synch.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Event_Handler.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Handle_Set.h \
+ Token.h \
+ Pipe.h \
+ Pipe.i \
+ Reactor_Impl.h \
+ Reactor.h \
+ SOCK_Acceptor.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ Addr.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Acceptor.i \
+ SOCK_Connector.h \
+ SOCK_Connector.i \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Malloc_Base.h \
+ Unbounded_Set.inl \
+ Timer_Heap_T.cpp \
+ Select_Reactor_Base.i
.obj/SUN_Proactor.o .obj/SUN_Proactor.so .shobj/SUN_Proactor.o .shobj/SUN_Proactor.so: SUN_Proactor.cpp \
- SUN_Proactor.h \
- config-all.h \
- pre.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ SUN_Proactor.h \
+ config-all.h \
+ pre.h \
+ config.h \
+ config-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 \
- Pipe.h \
- Pipe.i \
- Dev_Poll_Reactor.inl \
- Handle_Set.h \
- Handle_Set.i \
- Reactor.h \
- Reactor.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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i
.obj/TP_Reactor.o .obj/TP_Reactor.so .shobj/TP_Reactor.o .shobj/TP_Reactor.so: TP_Reactor.cpp \
- TP_Reactor.h \
- pre.h \
- Select_Reactor.h \
- Select_Reactor_T.h \
- Select_Reactor_Base.h \
- Signal.h \
- Synch.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Event_Handler.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Handle_Set.h \
+ Token.h \
+ Pipe.h \
+ Pipe.i \
+ Reactor_Impl.h \
+ Select_Reactor_T.cpp \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Malloc_Base.h \
+ Unbounded_Set.inl \
+ Timer_Heap_T.cpp \
+ Select_Reactor_T.i \
+ Reactor.h \
+ TP_Reactor.i
.obj/TkReactor.o .obj/TkReactor.so .shobj/TkReactor.o .shobj/TkReactor.so: TkReactor.cpp \
- TkReactor.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ 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
.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
+ 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
+ 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
+ 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 \
- 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 \
- Sock_Connect.h \
- Sock_Connect.i \
- Addr.h \
- Addr.i \
- INET_Addr.i
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Proactor.h \
+ Asynch_IO_Impl.h \
+ Thread_Manager.h \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Timer_List.h \
+ Timer_List_T.h \
+ Timer_List_T.cpp \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Timer_Heap_T.cpp \
+ Timer_Wheel.h \
+ Timer_Wheel_T.h \
+ Timer_Wheel_T.cpp \
+ High_Res_Timer.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ INET_Addr.h \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ Addr.h
.obj/Asynch_IO_Impl.o .obj/Asynch_IO_Impl.so .shobj/Asynch_IO_Impl.o .shobj/Asynch_IO_Impl.so: Asynch_IO_Impl.cpp \
- Asynch_IO_Impl.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Asynch_IO.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Asynch_IO_Impl.i
+ Asynch_IO_Impl.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Asynch_IO_Impl.i
.obj/Asynch_Pseudo_Task.o .obj/Asynch_Pseudo_Task.so .shobj/Asynch_Pseudo_Task.o .shobj/Asynch_Pseudo_Task.so: Asynch_Pseudo_Task.cpp \
- Asynch_Pseudo_Task.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Timer_Queue_T.h \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Test_and_Set.h \
- Event_Handler.h \
- Event_Handler.i \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Signal.h \
- Signal.i \
- Reactor.i \
- Reactor_Impl.h \
- Select_Reactor.h \
- Select_Reactor_T.h \
- Select_Reactor_Base.h \
- Token.h \
- Token.i \
- Pipe.h \
- Pipe.i \
- Select_Reactor_Base.i \
- Select_Reactor_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Timer_Heap.h \
- Timer_Heap_T.h \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Malloc_Base.h \
- Timer_Heap_T.cpp \
- Select_Reactor_T.i \
- Task.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- 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 \
- Thread_Manager.i \
- Task.i \
- Task_T.h \
- Message_Queue.h \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- IO_Cntl_Msg.h \
- Message_Queue_T.h \
- Message_Queue_T.i \
- Message_Queue_T.cpp \
- Notification_Strategy.h \
- Notification_Strategy.inl \
- Message_Queue.i \
- Task_T.i \
- Task_T.cpp \
- Module.h \
- Module.i \
- Module.cpp \
- Stream_Modules.h \
- Stream_Modules.cpp
+ Asynch_Pseudo_Task.h \
+ pre.h \
+ OS.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Select_Reactor.h \
+ Select_Reactor_T.h \
+ Select_Reactor_Base.h \
+ Token.h \
+ Pipe.h \
+ Pipe.i \
+ Reactor_Impl.h \
+ Select_Reactor_T.cpp \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Malloc_Base.h \
+ Unbounded_Set.inl \
+ Timer_Heap_T.cpp \
+ Select_Reactor_T.i \
+ Task.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Thread_Manager.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task_T.cpp \
+ Module.h \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Task_T.i
.obj/POSIX_Asynch_IO.o .obj/POSIX_Asynch_IO.so .shobj/POSIX_Asynch_IO.o .shobj/POSIX_Asynch_IO.so: POSIX_Asynch_IO.cpp \
- POSIX_Asynch_IO.h \
- config-all.h \
- pre.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Asynch_IO_Impl.h \
- Asynch_IO.h \
- Asynch_IO_Impl.i \
- Unbounded_Queue.h \
- Node.h \
- Node.cpp \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Malloc_Base.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Map_Manager.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Map_Manager.i \
- Map_Manager.cpp \
- Malloc.h \
- Malloc.i \
- Malloc_T.h \
- Malloc_Allocator.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Service_Config.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- POSIX_Asynch_IO.i \
- Proactor.h \
- Thread_Manager.h \
- 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 \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Asynch_IO_Impl.h \
+ Asynch_IO.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Unbounded_Queue.inl \
+ Map_Manager.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Map_Manager.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Map_Manager.i \
+ Proactor.h \
+ Thread_Manager.h \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Timer_List.h \
+ Timer_List_T.h \
+ Timer_List_T.cpp \
+ Timer_Heap.h \
+ Timer_Heap_T.h \
+ Timer_Heap_T.cpp \
+ Timer_Wheel.h \
+ Timer_Wheel_T.h \
+ Timer_Wheel_T.cpp \
+ High_Res_Timer.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ INET_Addr.h \
+ Addr.h \
+ Asynch_Pseudo_Task.h \
+ Select_Reactor.h \
+ Select_Reactor_T.h \
+ Select_Reactor_Base.h \
+ Token.h \
+ Pipe.h \
+ Pipe.i \
+ Reactor_Impl.h \
+ Select_Reactor_T.cpp \
+ Select_Reactor_T.i \
+ Task.h \
+ Task_T.h \
+ Message_Queue.h \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task_T.cpp \
+ Module.h \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Task_T.i \
+ POSIX_Proactor.h \
+ Proactor_Impl.h \
+ POSIX_Asynch_IO.i
.obj/WIN32_Asynch_IO.o .obj/WIN32_Asynch_IO.so .shobj/WIN32_Asynch_IO.o .shobj/WIN32_Asynch_IO.so: WIN32_Asynch_IO.cpp \
- WIN32_Asynch_IO.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ WIN32_Asynch_IO.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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
+ 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 \
+ Log_Msg.h \
+ Global_Macros.h \
+ OS_Export.h \
+ Default_Constants.h \
+ Log_Priority.h \
+ Basic_Types.h \
+ OS_Errno.h \
+ OS_Log_Msg_Attributes.h \
+ streams.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_String.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Min_Max.h \
+ Trace.h \
+ Addr.i
.obj/INET_Addr.o .obj/INET_Addr.so .shobj/INET_Addr.o .shobj/INET_Addr.so: INET_Addr.cpp \
- INET_Addr.h \
- pre.h \
- Sock_Connect.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Sock_Connect.i \
+ Addr.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ INET_Addr.i
.obj/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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/LSOCK.o .obj/LSOCK.so .shobj/LSOCK.o .shobj/LSOCK.so: LSOCK.cpp \
- LSOCK.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- SOCK.h \
- ACE_export.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- LSOCK.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ LSOCK.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/LSOCK_Acceptor.o .obj/LSOCK_Acceptor.so .shobj/LSOCK_Acceptor.o .shobj/LSOCK_Acceptor.so: LSOCK_Acceptor.cpp \
- LSOCK_Acceptor.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- SOCK_Acceptor.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Acceptor.i \
- UNIX_Addr.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- UNIX_Addr.i \
- LSOCK_Stream.h \
- LSOCK.h \
- LSOCK.i \
- LSOCK_Stream.i
+ LSOCK_Acceptor.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Acceptor.i \
+ UNIX_Addr.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ LSOCK_Stream.h \
+ LSOCK.h \
+ LSOCK.i \
+ LSOCK_Stream.i
.obj/LSOCK_CODgram.o .obj/LSOCK_CODgram.so .shobj/LSOCK_CODgram.o .shobj/LSOCK_CODgram.so: LSOCK_CODgram.cpp \
- LSOCK_CODgram.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- LSOCK.h \
- SOCK.h \
- ACE_export.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- LSOCK.i \
- SOCK_CODgram.h \
- SOCK_IO.h \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_CODgram.i \
- LSOCK_CODgram.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ LSOCK_CODgram.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ LSOCK.i \
+ SOCK_CODgram.h \
+ SOCK_IO.h \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_CODgram.i \
+ LSOCK_CODgram.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/LSOCK_Connector.o .obj/LSOCK_Connector.so .shobj/LSOCK_Connector.o .shobj/LSOCK_Connector.so: LSOCK_Connector.cpp \
- LSOCK_Connector.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- SOCK_Connector.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Connector.i \
- LSOCK_Stream.h \
- UNIX_Addr.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- UNIX_Addr.i \
- LSOCK.h \
- LSOCK.i \
- LSOCK_Stream.i \
- LSOCK_Connector.i
+ 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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Connector.i \
+ LSOCK_Stream.h \
+ UNIX_Addr.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ LSOCK.h \
+ LSOCK.i \
+ LSOCK_Stream.i \
+ LSOCK_Connector.i
.obj/LSOCK_Dgram.o .obj/LSOCK_Dgram.so .shobj/LSOCK_Dgram.o .shobj/LSOCK_Dgram.so: LSOCK_Dgram.cpp \
- LSOCK_Dgram.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- SOCK_Dgram.h \
- SOCK.h \
- ACE_export.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- INET_Addr.h \
- Sock_Connect.h \
- Sock_Connect.i \
- INET_Addr.i \
- SOCK_Dgram.i \
- LSOCK.h \
- LSOCK.i \
- LSOCK_Dgram.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ LSOCK_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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ INET_Addr.h \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ SOCK_Dgram.i \
+ LSOCK.h \
+ LSOCK.i \
+ LSOCK_Dgram.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/LSOCK_Stream.o .obj/LSOCK_Stream.so .shobj/LSOCK_Stream.o .shobj/LSOCK_Stream.so: LSOCK_Stream.cpp \
- LSOCK_Stream.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- UNIX_Addr.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- UNIX_Addr.i \
- LSOCK.h \
- LSOCK.i \
- LSOCK_Stream.i
+ LSOCK_Stream.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ UNIX_Addr.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ LSOCK.h \
+ LSOCK.i \
+ LSOCK_Stream.i
.obj/SOCK.o .obj/SOCK.so .shobj/SOCK.o .shobj/SOCK.so: SOCK.cpp \
- SOCK.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/SOCK_Acceptor.o .obj/SOCK_Acceptor.so .shobj/SOCK_Acceptor.o .shobj/SOCK_Acceptor.so: SOCK_Acceptor.cpp \
- SOCK_Acceptor.h \
- pre.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Acceptor.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- OS_QoS.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp
+ SOCK_Acceptor.h \
+ pre.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl \
+ Addr.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Acceptor.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ OS_QoS.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i
.obj/SOCK_CODgram.o .obj/SOCK_CODgram.so .shobj/SOCK_CODgram.o .shobj/SOCK_CODgram.so: SOCK_CODgram.cpp \
- SOCK_CODgram.h \
- pre.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_CODgram.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ SOCK_CODgram.h \
+ pre.h \
+ SOCK_IO.h \
+ SOCK.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl \
+ Addr.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_CODgram.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/Sock_Connect.o .obj/Sock_Connect.so .shobj/Sock_Connect.o .shobj/Sock_Connect.so: Sock_Connect.cpp \
- Sock_Connect.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Sock_Connect.i \
- INET_Addr.h \
- Addr.h \
- Addr.i \
- INET_Addr.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Handle_Set.h \
- Handle_Set.i \
- Auto_Ptr.h \
- Auto_Ptr.i \
- Auto_Ptr.cpp \
- SString.h \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Sock_Connect.i \
+ INET_Addr.h \
+ Addr.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Handle_Set.h \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ SString.h \
+ 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.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ String_Base.i
.obj/SOCK_Connector.o .obj/SOCK_Connector.so .shobj/SOCK_Connector.o .shobj/SOCK_Connector.so: SOCK_Connector.cpp \
- SOCK_Connector.h \
- pre.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Connector.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- OS_QoS.h
+ 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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Connector.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ OS_QoS.h
.obj/SOCK_Dgram.o .obj/SOCK_Dgram.so .shobj/SOCK_Dgram.o .shobj/SOCK_Dgram.so: SOCK_Dgram.cpp \
- SOCK_Dgram.h \
- pre.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- INET_Addr.h \
- Sock_Connect.h \
- Sock_Connect.i \
- INET_Addr.i \
- SOCK_Dgram.i \
- Handle_Set.h \
- Handle_Set.i \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- ACE.i
+ SOCK_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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ INET_Addr.h \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ SOCK_Dgram.i \
+ Handle_Set.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ ACE.i
.obj/SOCK_Dgram_Bcast.o .obj/SOCK_Dgram_Bcast.so .shobj/SOCK_Dgram_Bcast.o .shobj/SOCK_Dgram_Bcast.so: SOCK_Dgram_Bcast.cpp \
- SOCK_Dgram_Bcast.h \
- pre.h \
- INET_Addr.h \
- Sock_Connect.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Sock_Connect.i \
- Addr.h \
- Addr.i \
- INET_Addr.i \
- SOCK_Dgram.h \
- SOCK.h \
- IPC_SAP.h \
- Flag_Manip.h \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- SOCK_Dgram.i \
- SOCK_Dgram_Bcast.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- ACE.i
+ SOCK_Dgram_Bcast.h \
+ pre.h \
+ INET_Addr.h \
+ Sock_Connect.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Sock_Connect.i \
+ Addr.h \
+ SOCK_Dgram.h \
+ SOCK.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ SOCK_Dgram.i \
+ SOCK_Dgram_Bcast.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ ACE.i
.obj/SOCK_Dgram_Mcast.o .obj/SOCK_Dgram_Mcast.so .shobj/SOCK_Dgram_Mcast.o .shobj/SOCK_Dgram_Mcast.so: SOCK_Dgram_Mcast.cpp \
- SOCK_Dgram_Mcast.h \
- pre.h \
- SOCK_Dgram.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- INET_Addr.h \
- Sock_Connect.h \
- Sock_Connect.i \
- INET_Addr.i \
- SOCK_Dgram.i \
- SOCK_Dgram_Mcast.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- ACE.i
+ SOCK_Dgram_Mcast.h \
+ pre.h \
+ SOCK_Dgram.h \
+ SOCK.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl \
+ Addr.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ INET_Addr.h \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ SOCK_Dgram.i \
+ SOCK_Dgram_Mcast.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ ACE.i
.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
+ 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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ Handle_Set.h
.obj/SOCK_Stream.o .obj/SOCK_Stream.so .shobj/SOCK_Stream.o .shobj/SOCK_Stream.so: SOCK_Stream.cpp \
- SOCK_Stream.h \
- pre.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i
+ SOCK_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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i
.obj/ATM_Addr.o .obj/ATM_Addr.so .shobj/ATM_Addr.o .shobj/ATM_Addr.so: ATM_Addr.cpp \
- ATM_Addr.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ 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
.obj/ATM_Acceptor.o .obj/ATM_Acceptor.so .shobj/ATM_Acceptor.o .shobj/ATM_Acceptor.so: ATM_Acceptor.cpp \
- ATM_Acceptor.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ ATM_Acceptor.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl
.obj/ATM_Connector.o .obj/ATM_Connector.so .shobj/ATM_Connector.o .shobj/ATM_Connector.so: ATM_Connector.cpp \
- ATM_Connector.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ ATM_Connector.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl
.obj/ATM_Params.o .obj/ATM_Params.so .shobj/ATM_Params.o .shobj/ATM_Params.so: ATM_Params.cpp \
- ATM_Params.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ ATM_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
+ 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
+ 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
.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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IO_SAP.i \
+ DEV_Addr.h \
+ Addr.h \
+ DEV.i
.obj/DEV_Addr.o .obj/DEV_Addr.so .shobj/DEV_Addr.o .shobj/DEV_Addr.so: DEV_Addr.cpp \
- DEV_Addr.h \
- pre.h \
- Addr.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.i \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- DEV_Addr.i \
- SString.h \
- 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
+ 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 \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ DEV_Addr.i \
+ SString.h \
+ 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.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i
.obj/DEV_Connector.o .obj/DEV_Connector.so .shobj/DEV_Connector.o .shobj/DEV_Connector.so: DEV_Connector.cpp \
- DEV_Connector.h \
- pre.h \
- DEV_IO.h \
- DEV.h \
- IO_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IO_SAP.i \
- DEV_Addr.h \
- Addr.h \
- Addr.i \
- DEV_Addr.i \
- SString.h \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IO_SAP.i \
+ DEV_Addr.h \
+ Addr.h \
+ DEV.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ DEV_IO.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ DEV_Connector.i
.obj/DEV_IO.o .obj/DEV_IO.so .shobj/DEV_IO.o .shobj/DEV_IO.so: DEV_IO.cpp \
- DEV_IO.h \
- pre.h \
- DEV.h \
- IO_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IO_SAP.i \
- DEV_Addr.h \
- Addr.h \
- Addr.i \
- DEV_Addr.i \
- SString.h \
- 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_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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IO_SAP.i \
+ DEV_Addr.h \
+ Addr.h \
+ DEV.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ DEV_IO.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/FIFO.o .obj/FIFO.so .shobj/FIFO.o .shobj/FIFO.so: FIFO.cpp \
- FIFO.h \
- pre.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- FIFO.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ FIFO.i
.obj/FIFO_Recv.o .obj/FIFO_Recv.so .shobj/FIFO_Recv.o .shobj/FIFO_Recv.so: FIFO_Recv.cpp \
- FIFO_Recv.h \
- pre.h \
- FIFO.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ FIFO_Recv.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/FIFO_Recv_Msg.o .obj/FIFO_Recv_Msg.so .shobj/FIFO_Recv_Msg.o .shobj/FIFO_Recv_Msg.so: FIFO_Recv_Msg.cpp \
- FIFO_Recv_Msg.h \
- pre.h \
- FIFO_Recv.h \
- FIFO.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- FIFO.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- FIFO_Recv.i \
- FIFO_Recv_Msg.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ FIFO_Recv.i \
+ FIFO_Recv_Msg.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/FIFO_Send.o .obj/FIFO_Send.so .shobj/FIFO_Send.o .shobj/FIFO_Send.so: FIFO_Send.cpp \
- FIFO_Send.h \
- pre.h \
- FIFO.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- FIFO.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- FIFO_Send.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ FIFO_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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ FIFO_Send.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/FIFO_Send_Msg.o .obj/FIFO_Send_Msg.so .shobj/FIFO_Send_Msg.o .shobj/FIFO_Send_Msg.so: FIFO_Send_Msg.cpp \
- FIFO_Send_Msg.h \
- pre.h \
- FIFO_Send.h \
- FIFO.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- FIFO.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- FIFO_Send.i \
- FIFO_Send_Msg.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ FIFO_Send.i \
+ FIFO_Send_Msg.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/FILE_Addr.o .obj/FILE_Addr.so .shobj/FILE_Addr.o .shobj/FILE_Addr.so: FILE_Addr.cpp \
- FILE_Addr.h \
- pre.h \
- Addr.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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 \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ 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.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i
.obj/FILE.o .obj/FILE.so .shobj/FILE.o .shobj/FILE.so: FILE.cpp \
- FILE.h \
- pre.h \
- IO_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IO_SAP.i \
- FILE_Addr.h \
- Addr.h \
- Addr.i \
- FILE_Addr.i \
- SString.h \
- 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.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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IO_SAP.i \
+ FILE_Addr.h \
+ Addr.h \
+ FILE.i
.obj/FILE_Connector.o .obj/FILE_Connector.so .shobj/FILE_Connector.o .shobj/FILE_Connector.so: FILE_Connector.cpp \
- FILE_Connector.h \
- pre.h \
- FILE_IO.h \
- FILE.h \
- IO_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IO_SAP.i \
- FILE_Addr.h \
- Addr.h \
- Addr.i \
- FILE_Addr.i \
- SString.h \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IO_SAP.i \
+ FILE_Addr.h \
+ Addr.h \
+ FILE.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ FILE_IO.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ FILE_Connector.i
.obj/FILE_IO.o .obj/FILE_IO.so .shobj/FILE_IO.o .shobj/FILE_IO.so: FILE_IO.cpp \
- FILE_IO.h \
- pre.h \
- FILE.h \
- IO_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IO_SAP.i \
- FILE_Addr.h \
- Addr.h \
- Addr.i \
- FILE_Addr.i \
- SString.h \
- 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_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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IO_SAP.i \
+ FILE_Addr.h \
+ Addr.h \
+ FILE.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ FILE_IO.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/IO_SAP.o .obj/IO_SAP.so .shobj/IO_SAP.o .shobj/IO_SAP.so: IO_SAP.cpp \
- IO_SAP.h \
- pre.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IO_SAP.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IO_SAP.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/IOStream.o .obj/IOStream.so .shobj/IOStream.o .shobj/IOStream.so: IOStream.cpp \
- IOStream.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ IOStream_T.h \
+ INET_Addr.h \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ Addr.h \
+ Handle_Set.h \
+ IOStream_T.cpp \
+ IOStream_T.i
.obj/Pipe.o .obj/Pipe.so .shobj/Pipe.o .shobj/Pipe.so: Pipe.cpp \
- Pipe.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Pipe.i \
- SOCK_Acceptor.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Acceptor.i \
- SOCK_Connector.h \
- SOCK_Connector.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Pipe.i \
+ SOCK_Acceptor.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ Addr.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Acceptor.i \
+ SOCK_Connector.h \
+ SOCK_Connector.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/Signal.o .obj/Signal.so .shobj/Signal.o .shobj/Signal.so: Signal.cpp \
- Synch_T.h \
- pre.h \
- Synch.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Signal.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.i \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp \
- Containers.h \
- Containers.i \
- Containers_T.h \
- Node.h \
- Node.cpp \
- Array_Base.h \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Signal.h \
+ Event_Handler.h \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Containers.h \
+ Containers_T.h \
+ Node.h \
+ Node.cpp \
+ Array_Base.h \
+ Array_Base.cpp \
+ Malloc_Base.h \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Signal.i
.obj/SPIPE_Addr.o .obj/SPIPE_Addr.so .shobj/SPIPE_Addr.o .shobj/SPIPE_Addr.so: SPIPE_Addr.cpp \
- SPIPE_Addr.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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 \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ SPIPE_Addr.i \
+ SString.h \
+ 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.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i
.obj/SPIPE.o .obj/SPIPE.so .shobj/SPIPE.o .shobj/SPIPE.so: SPIPE.cpp \
- SPIPE.h \
- pre.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SPIPE_Addr.h \
- Addr.h \
- Addr.i \
- SPIPE_Addr.i \
- SString.h \
- 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.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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SPIPE_Addr.h \
+ Addr.h \
+ SPIPE.i
.obj/SPIPE_Acceptor.o .obj/SPIPE_Acceptor.so .shobj/SPIPE_Acceptor.o .shobj/SPIPE_Acceptor.so: SPIPE_Acceptor.cpp \
- SPIPE_Acceptor.h \
- pre.h \
- SPIPE_Stream.h \
- SPIPE.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SPIPE_Addr.h \
- Addr.h \
- Addr.i \
- SPIPE_Addr.i \
- SString.h \
- 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_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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SPIPE_Addr.h \
+ Addr.h \
+ SPIPE.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SPIPE_Stream.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/SPIPE_Connector.o .obj/SPIPE_Connector.so .shobj/SPIPE_Connector.o .shobj/SPIPE_Connector.so: SPIPE_Connector.cpp \
- SPIPE_Connector.h \
- pre.h \
- SPIPE_Stream.h \
- SPIPE.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SPIPE_Addr.h \
- Addr.h \
- Addr.i \
- SPIPE_Addr.i \
- SString.h \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SPIPE_Addr.h \
+ Addr.h \
+ SPIPE.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SPIPE_Stream.i \
+ SPIPE_Connector.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/SPIPE_Stream.o .obj/SPIPE_Stream.so .shobj/SPIPE_Stream.o .shobj/SPIPE_Stream.so: SPIPE_Stream.cpp \
- SPIPE_Stream.h \
- pre.h \
- SPIPE.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SPIPE_Addr.h \
- Addr.h \
- Addr.i \
- SPIPE_Addr.i \
- SString.h \
- 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_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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SPIPE_Addr.h \
+ Addr.h \
+ SPIPE.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SPIPE_Stream.i
.obj/SV_Message.o .obj/SV_Message.so .shobj/SV_Message.o .shobj/SV_Message.so: SV_Message.cpp \
- SV_Message.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ SV_Message.i
.obj/SV_Message_Queue.o .obj/SV_Message_Queue.so .shobj/SV_Message_Queue.o .shobj/SV_Message_Queue.so: SV_Message_Queue.cpp \
- SV_Message_Queue.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- SV_Message.h \
- ACE_export.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- SV_Message.i \
- SV_Message_Queue.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ SV_Message_Queue.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ SV_Message_Queue.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/SV_Semaphore_Complex.o .obj/SV_Semaphore_Complex.so .shobj/SV_Semaphore_Complex.o .shobj/SV_Semaphore_Complex.so: SV_Semaphore_Complex.cpp \
- SV_Semaphore_Complex.h \
- pre.h \
- SV_Semaphore_Simple.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ SV_Semaphore_Complex.h \
+ pre.h \
+ SV_Semaphore_Simple.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/SV_Semaphore_Simple.o .obj/SV_Semaphore_Simple.so .shobj/SV_Semaphore_Simple.o .shobj/SV_Semaphore_Simple.so: SV_Semaphore_Simple.cpp \
- SV_Semaphore_Simple.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- SV_Semaphore_Simple.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i
+ SV_Semaphore_Simple.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ SV_Semaphore_Simple.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i
.obj/SV_Shared_Memory.o .obj/SV_Shared_Memory.so .shobj/SV_Shared_Memory.o .shobj/SV_Shared_Memory.so: SV_Shared_Memory.cpp \
- SV_Shared_Memory.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- SV_Shared_Memory.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
-
-.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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ SV_Shared_Memory.i
+
+.obj/TLI.o .obj/TLI.so .shobj/TLI.o .shobj/TLI.so: TLI.cpp \
+ TLI.h \
+ pre.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ Addr.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h
.obj/TLI_Acceptor.o .obj/TLI_Acceptor.so .shobj/TLI_Acceptor.o .shobj/TLI_Acceptor.so: TLI_Acceptor.cpp \
- TLI_Acceptor.h \
- pre.h \
- TLI.h \
- IPC_SAP.h \
- Flag_Manip.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- Addr.h \
- Addr.i \
- TLI_Stream.h \
- INET_Addr.h \
- Sock_Connect.h \
- Sock_Connect.i \
- INET_Addr.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- ACE.i
+ TLI_Acceptor.h \
+ pre.h \
+ TLI.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ Addr.h \
+ TLI_Stream.h \
+ INET_Addr.h \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ ACE.i
.obj/TLI_Connector.o .obj/TLI_Connector.so .shobj/TLI_Connector.o .shobj/TLI_Connector.so: TLI_Connector.cpp \
- Handle_Set.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Handle_Set.i \
- TLI_Connector.h \
- TLI_Stream.h \
- TLI.h \
- IPC_SAP.h \
- Flag_Manip.h \
- Flag_Manip.i \
- IPC_SAP.i \
- Addr.h \
- Addr.i \
- INET_Addr.h \
- Sock_Connect.h \
- Sock_Connect.i \
- INET_Addr.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- ACE.i
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ TLI_Connector.h \
+ TLI_Stream.h \
+ TLI.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ Addr.h \
+ INET_Addr.h \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ ACE.i
.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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ Addr.h \
+ INET_Addr.h \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ ACE.i
.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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ DEV_IO.h \
+ DEV.h \
+ IO_SAP.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ IO_SAP.i \
+ DEV_Addr.h \
+ Addr.h \
+ DEV.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ DEV_IO.i
.obj/UNIX_Addr.o .obj/UNIX_Addr.so .shobj/UNIX_Addr.o .shobj/UNIX_Addr.so: UNIX_Addr.cpp \
- UNIX_Addr.h \
- pre.h \
- config-all.h \
- config.h \
- config-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
+ 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 \
+ Log_Msg.h \
+ Global_Macros.h \
+ OS_Export.h \
+ Default_Constants.h \
+ Log_Priority.h \
+ Basic_Types.h \
+ OS_Errno.h \
+ OS_Log_Msg_Attributes.h \
+ streams.h \
+ ACE.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_String.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Min_Max.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ 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 \
- Message_Queue_T.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.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 \
- 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 \
- 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 \
- Flag_Manip.h \
- 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 \
- String_Base.cpp \
- Malloc.h \
- Malloc.i \
- Malloc_T.h \
- Malloc_Allocator.h \
- Malloc_Allocator.i \
- Malloc_T.i \
- Malloc_T.cpp \
- Memory_Pool.h \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Memory_Pool.i \
- Auto_Ptr.h \
- Auto_Ptr.i \
- Auto_Ptr.cpp \
- SString.i \
- SPIPE.i \
- UPIPE_Addr.h \
- UPIPE_Stream.i \
- SPIPE_Acceptor.h \
- SPIPE_Stream.h \
- SPIPE_Stream.i \
- UPIPE_Acceptor.i
+ UPIPE_Acceptor.h \
+ pre.h \
+ UPIPE_Stream.h \
+ Stream.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Module.h \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Queue_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Event_Handler.h \
+ Task.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Thread_Manager.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.cpp \
+ Task_T.i \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Stream.cpp \
+ Stream.i \
+ SPIPE.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SPIPE_Addr.h \
+ Addr.h \
+ SPIPE.i \
+ UPIPE_Addr.h \
+ SPIPE_Acceptor.h \
+ SPIPE_Stream.h \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SPIPE_Stream.i \
+ UPIPE_Acceptor.i
.obj/UPIPE_Connector.o .obj/UPIPE_Connector.so .shobj/UPIPE_Connector.o .shobj/UPIPE_Connector.so: UPIPE_Connector.cpp \
- UPIPE_Connector.h \
- pre.h \
- UPIPE_Stream.h \
- Stream.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- IO_Cntl_Msg.h \
- ACE_export.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- Module.h \
- Task_T.h \
- Message_Queue.h \
- Message_Queue_T.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.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 \
- 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 \
- 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 \
- Flag_Manip.h \
- 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 \
- String_Base.cpp \
- Malloc.h \
- Malloc.i \
- Malloc_T.h \
- Malloc_Allocator.h \
- Malloc_Allocator.i \
- Malloc_T.i \
- Malloc_T.cpp \
- Memory_Pool.h \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Memory_Pool.i \
- Auto_Ptr.h \
- Auto_Ptr.i \
- Auto_Ptr.cpp \
- SString.i \
- SPIPE.i \
- UPIPE_Addr.h \
- UPIPE_Stream.i \
- SPIPE_Stream.h \
- SPIPE_Stream.i \
- UPIPE_Connector.i
+ UPIPE_Connector.h \
+ pre.h \
+ UPIPE_Stream.h \
+ Stream.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Module.h \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Queue_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Event_Handler.h \
+ Task.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Thread_Manager.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.cpp \
+ Task_T.i \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Stream.cpp \
+ Stream.i \
+ SPIPE.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SPIPE_Addr.h \
+ Addr.h \
+ SPIPE.i \
+ UPIPE_Addr.h \
+ SPIPE_Stream.h \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SPIPE_Stream.i \
+ UPIPE_Connector.i
.obj/UPIPE_Stream.o .obj/UPIPE_Stream.so .shobj/UPIPE_Stream.o .shobj/UPIPE_Stream.so: UPIPE_Stream.cpp \
- UPIPE_Stream.h \
- pre.h \
- Stream.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- IO_Cntl_Msg.h \
- ACE_export.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- Module.h \
- Task_T.h \
- Message_Queue.h \
- Message_Queue_T.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.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 \
- 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 \
- 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 \
- Flag_Manip.h \
- 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 \
- String_Base.cpp \
- Malloc.h \
- Malloc.i \
- Malloc_T.h \
- Malloc_Allocator.h \
- Malloc_Allocator.i \
- Malloc_T.i \
- Malloc_T.cpp \
- Memory_Pool.h \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Memory_Pool.i \
- Auto_Ptr.h \
- Auto_Ptr.i \
- Auto_Ptr.cpp \
- SString.i \
- SPIPE.i \
- UPIPE_Addr.h \
- UPIPE_Stream.i
+ UPIPE_Stream.h \
+ pre.h \
+ Stream.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Module.h \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Queue_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Event_Handler.h \
+ Task.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Thread_Manager.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.cpp \
+ Task_T.i \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Stream.cpp \
+ Stream.i \
+ SPIPE.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SPIPE_Addr.h \
+ Addr.h \
+ SPIPE.i \
+ UPIPE_Addr.h \
+ UPIPE_Stream.i
.obj/MEM_Acceptor.o .obj/MEM_Acceptor.so .shobj/MEM_Acceptor.o .shobj/MEM_Acceptor.so: MEM_Acceptor.cpp \
- MEM_Acceptor.h \
- pre.h \
- SOCK_Acceptor.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Acceptor.i \
- MEM_Stream.h \
- MEM_IO.h \
- MEM_SAP.h \
- PI_Malloc.h \
- Malloc.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Based_Pointer_T.h \
- Based_Pointer_T.i \
- Based_Pointer_T.cpp \
- Based_Pointer_Repository.h \
- Singleton.h \
- Singleton.i \
- Singleton.cpp \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp \
- PI_Malloc.i \
- Process_Mutex.h \
- Process_Mutex.inl \
- MEM_SAP.i \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- Process_Semaphore.h \
- Process_Semaphore.inl \
- MEM_IO.i \
- MEM_Stream.i \
- MEM_Addr.h \
- MEM_Addr.i \
- OS_QoS.h \
- MEM_Acceptor.i
+ MEM_Acceptor.h \
+ pre.h \
+ SOCK_Acceptor.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl \
+ Addr.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Acceptor.i \
+ MEM_Stream.h \
+ MEM_IO.h \
+ MEM_SAP.h \
+ PI_Malloc.h \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Based_Pointer_T.h \
+ Based_Pointer_T.cpp \
+ Based_Pointer_Repository.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Based_Pointer_T.i \
+ Process_Mutex.h \
+ MEM_SAP.i \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Process_Semaphore.h \
+ MEM_IO.i \
+ MEM_Stream.i \
+ MEM_Addr.h \
+ OS_QoS.h \
+ MEM_Acceptor.i
.obj/MEM_Addr.o .obj/MEM_Addr.so .shobj/MEM_Addr.o .shobj/MEM_Addr.so: MEM_Addr.cpp \
- MEM_Addr.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- INET_Addr.h \
- Sock_Connect.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Sock_Connect.i \
- Addr.h \
- Addr.i \
- INET_Addr.i \
- MEM_Addr.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Sock_Connect.i \
+ Addr.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ MEM_Addr.i
.obj/MEM_Connector.o .obj/MEM_Connector.so .shobj/MEM_Connector.o .shobj/MEM_Connector.so: MEM_Connector.cpp \
- MEM_Connector.h \
- pre.h \
- SOCK_Connector.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Connector.i \
- MEM_Stream.h \
- MEM_IO.h \
- MEM_SAP.h \
- PI_Malloc.h \
- Malloc.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Based_Pointer_T.h \
- Based_Pointer_T.i \
- Based_Pointer_T.cpp \
- Based_Pointer_Repository.h \
- Singleton.h \
- Singleton.i \
- Singleton.cpp \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp \
- PI_Malloc.i \
- Process_Mutex.h \
- Process_Mutex.inl \
- MEM_SAP.i \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- Process_Semaphore.h \
- Process_Semaphore.inl \
- MEM_IO.i \
- MEM_Stream.i \
- MEM_Addr.h \
- MEM_Addr.i \
- MEM_Connector.i
+ MEM_Connector.h \
+ pre.h \
+ SOCK_Connector.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl \
+ Addr.h \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Connector.i \
+ MEM_Stream.h \
+ MEM_IO.h \
+ MEM_SAP.h \
+ PI_Malloc.h \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Based_Pointer_T.h \
+ Based_Pointer_T.cpp \
+ Based_Pointer_Repository.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Based_Pointer_T.i \
+ Process_Mutex.h \
+ MEM_SAP.i \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Process_Semaphore.h \
+ MEM_IO.i \
+ MEM_Stream.i \
+ MEM_Addr.h \
+ MEM_Connector.i
.obj/MEM_IO.o .obj/MEM_IO.so .shobj/MEM_IO.o .shobj/MEM_IO.so: MEM_IO.cpp \
- MEM_IO.h \
- pre.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- Flag_Manip.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Flag_Manip.i \
- IPC_SAP.i \
- SOCK.i \
- MEM_SAP.h \
- PI_Malloc.h \
- Malloc.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Based_Pointer_T.h \
- Based_Pointer_T.i \
- Based_Pointer_T.cpp \
- Based_Pointer_Repository.h \
- Singleton.h \
- Singleton.i \
- Singleton.cpp \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp \
- 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
+ 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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ MEM_SAP.h \
+ PI_Malloc.h \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Based_Pointer_T.h \
+ Based_Pointer_T.cpp \
+ Based_Pointer_Repository.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Based_Pointer_T.i \
+ Process_Mutex.h \
+ MEM_SAP.i \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Process_Semaphore.h \
+ MEM_IO.i \
+ Handle_Set.h
.obj/MEM_SAP.o .obj/MEM_SAP.so .shobj/MEM_SAP.o .shobj/MEM_SAP.so: MEM_SAP.cpp \
- MEM_SAP.h \
- pre.h \
- PI_Malloc.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Malloc.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Based_Pointer_T.h \
- Based_Pointer_T.i \
- Based_Pointer_T.cpp \
- Based_Pointer_Repository.h \
- Singleton.h \
- Singleton.i \
- Singleton.cpp \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp \
- PI_Malloc.i \
- Process_Mutex.h \
- Process_Mutex.inl \
- MEM_SAP.i
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Based_Pointer_T.h \
+ Based_Pointer_T.cpp \
+ Based_Pointer_Repository.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Based_Pointer_T.i \
+ Process_Mutex.h \
+ MEM_SAP.i
.obj/MEM_Stream.o .obj/MEM_Stream.so .shobj/MEM_Stream.o .shobj/MEM_Stream.so: MEM_Stream.cpp \
- MEM_Stream.h \
- pre.h \
- MEM_IO.h \
- SOCK.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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 \
- 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
+ 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 \
+ IPC_SAP.h \
+ Flag_Manip.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.i \
+ IPC_SAP.i \
+ SOCK.i \
+ MEM_SAP.h \
+ PI_Malloc.h \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Based_Pointer_T.h \
+ Based_Pointer_T.cpp \
+ Based_Pointer_Repository.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Based_Pointer_T.i \
+ Process_Mutex.h \
+ MEM_SAP.i \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ Process_Semaphore.h \
+ MEM_IO.i \
+ INET_Addr.h \
+ MEM_Stream.i
.obj/Basic_Stats.o .obj/Basic_Stats.so .shobj/Basic_Stats.o .shobj/Basic_Stats.so: Basic_Stats.cpp \
- Basic_Stats.h \
- pre.h \
- config-all.h \
- config.h \
- config-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
+ 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 \
+ Log_Msg.h \
+ Global_Macros.h \
+ OS_Export.h \
+ Default_Constants.h \
+ Log_Priority.h \
+ OS_Errno.h \
+ OS_Log_Msg_Attributes.h \
+ streams.h \
+ Basic_Stats.inl
.obj/High_Res_Timer.o .obj/High_Res_Timer.so .shobj/High_Res_Timer.o .shobj/High_Res_Timer.so: High_Res_Timer.cpp \
- High_Res_Timer.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- High_Res_Timer.i \
- Stats.h \
- Unbounded_Queue.h \
- Node.h \
- Node.cpp \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Malloc_Base.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Basic_Stats.h \
- Basic_Stats.inl \
- Stats.i \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp
+ High_Res_Timer.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ High_Res_Timer.i \
+ Stats.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Unbounded_Queue.inl \
+ Basic_Stats.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i
.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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ High_Res_Timer.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Profile_Timer.i
.obj/System_Time.o .obj/System_Time.so .shobj/System_Time.o .shobj/System_Time.so: System_Time.cpp \
- System_Time.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Memory_Pool.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Event_Handler.h \
+ Signal.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Malloc_Base.h \
+ Unbounded_Set.inl \
+ Malloc_T.h \
+ Malloc.h \
+ Malloc_Allocator.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i
.obj/Time_Request_Reply.o .obj/Time_Request_Reply.so .shobj/Time_Request_Reply.o .shobj/Time_Request_Reply.so: Time_Request_Reply.cpp \
- Time_Request_Reply.h \
- pre.h \
- Time_Value.h \
- OS_Export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- ACE_export.h \
- Time_Value.inl \
- SString.h \
- 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
+ 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 \
+ SString.h \
+ String_Base.h \
+ ACE.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i
.obj/Timeprobe.o .obj/Timeprobe.so .shobj/Timeprobe.o .shobj/Timeprobe.so: Timeprobe.cpp \
- OS.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h
.obj/Timer_Hash.o .obj/Timer_Hash.so .shobj/Timer_Hash.o .shobj/Timer_Hash.so: Timer_Hash.cpp \
- Timer_Hash.h \
- pre.h \
- Timer_Hash_T.h \
- Timer_Queue_T.h \
- Free_List.h \
- OS.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Timer_Hash_T.cpp \
+ High_Res_Timer.h \
+ Timer_Heap_T.h \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Malloc_Base.h \
+ Unbounded_Set.inl \
+ Timer_Heap_T.cpp \
+ Timer_List_T.h \
+ Timer_List_T.cpp
.obj/Timer_Heap.o .obj/Timer_Heap.so .shobj/Timer_Heap.o .shobj/Timer_Heap.so: Timer_Heap.cpp \
- Timer_Heap.h \
- pre.h \
- Timer_Heap_T.h \
- Timer_Queue_T.h \
- Free_List.h \
- OS.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Malloc_Base.h \
+ Unbounded_Set.inl \
+ Timer_Heap_T.cpp
.obj/Timer_List.o .obj/Timer_List.so .shobj/Timer_List.o .shobj/Timer_List.so: Timer_List.cpp \
- Timer_List.h \
- pre.h \
- Timer_List_T.h \
- Timer_Queue_T.h \
- Free_List.h \
- OS.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Timer_List_T.cpp
.obj/Timer_Queue.o .obj/Timer_Queue.so .shobj/Timer_Queue.o .shobj/Timer_Queue.so: Timer_Queue.cpp \
- Containers.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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
+ 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_T.h \
+ Node.h \
+ Node.cpp \
+ Array_Base.h \
+ Global_Macros.h \
+ OS_Export.h \
+ Array_Base.cpp \
+ Malloc_Base.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Errno.h \
+ OS_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Unbounded_Set.inl \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Timer_Queue.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i
.obj/Timer_Wheel.o .obj/Timer_Wheel.so .shobj/Timer_Wheel.o .shobj/Timer_Wheel.so: Timer_Wheel.cpp \
- Timer_Wheel.h \
- pre.h \
- Timer_Wheel_T.h \
- Timer_Queue_T.h \
- Free_List.h \
- OS.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Event_Handler.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Timer_Wheel_T.cpp \
+ High_Res_Timer.h
+
+.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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ DLL_Manager.h \
+ Singleton.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ String_Base.i
+
+.obj/DLL_Manager.o .obj/DLL_Manager.so .shobj/DLL_Manager.o .shobj/DLL_Manager.so: DLL_Manager.cpp \
+ DLL_Manager.h \
+ pre.h \
+ OS.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Singleton.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.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.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ String_Base.i
.obj/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_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 \
- Event_Handler.h \
- Event_Handler.i \
- Service_Object.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 \
- 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 \
- 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 \
- 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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Service_Repository.h \
- Service_Types.h \
- Service_Types.i \
- Service_Repository.i
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Svc_Conf_Tokens.h \
+ Event_Handler.h \
+ DLL.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Signal.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Service_Repository.h
.obj/Parse_Node.o .obj/Parse_Node.so .shobj/Parse_Node.o .shobj/Parse_Node.so: Parse_Node.cpp \
- Service_Config.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 \
- Event_Handler.h \
- Event_Handler.i \
- Service_Object.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 \
- 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 \
- 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 \
- 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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Service_Repository.h \
- Service_Types.h \
- Service_Types.i \
- 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 \
- 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 \
- DLL.h \
- Parse_Node.i
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Svc_Conf_Tokens.h \
+ Event_Handler.h \
+ DLL.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Signal.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Service_Repository.h \
+ Task.h \
+ Thread_Manager.h \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task_T.cpp \
+ Module.h \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Task_T.i \
+ Parse_Node.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Parse_Node.h \
- Service_Types.h \
- Service_Types.i \
- DLL.h \
- Parse_Node.i \
- Get_Opt.h \
- Containers.h \
- Containers.i \
- Containers_T.h \
- Array_Base.h \
- Array_Base.inl \
- Array_Base.cpp \
- Containers_T.i \
- Containers_T.cpp \
- Get_Opt.i \
- ARGV.h \
- ARGV.i \
- Service_Manager.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- IPC_SAP.i \
- SOCK.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Acceptor.h \
- SOCK_Acceptor.i \
- Service_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 \
- Thread_Manager.i \
- Framework_Component.h \
- Framework_Component.inl \
- Framework_Component_T.h \
- Framework_Component_T.inl \
- Framework_Component_T.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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Obstack_T.cpp \
+ Obstack_T.i \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Parse_Node.h \
+ Get_Opt.h \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ ARGV.h \
+ Service_Manager.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ Addr.h \
+ IPC_SAP.h \
+ IPC_SAP.i \
+ SOCK.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Acceptor.h \
+ SOCK_Acceptor.i \
+ Service_Repository.h \
+ Thread_Manager.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Service_Config.i
.obj/Service_Manager.o .obj/Service_Manager.so .shobj/Service_Manager.o .shobj/Service_Manager.so: Service_Manager.cpp \
- Get_Opt.h \
- pre.h \
- 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 \
- Service_Object.i \
- Service_Types.i \
- Service_Repository.i \
- Service_Config.h \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Service_Manager.h \
- SOCK_Stream.h \
- SOCK_IO.h \
- SOCK.h \
- Addr.h \
- Addr.i \
- IPC_SAP.h \
- IPC_SAP.i \
- SOCK.i \
- SOCK_IO.i \
- INET_Addr.h \
- INET_Addr.i \
- SOCK_Stream.i \
- SOCK_Acceptor.h \
- SOCK_Acceptor.i \
- Service_Manager.i \
- WFMO_Reactor.h
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Service_Repository.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Service_Config.h \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Service_Manager.h \
+ SOCK_Stream.h \
+ SOCK_IO.h \
+ SOCK.h \
+ Addr.h \
+ IPC_SAP.h \
+ IPC_SAP.i \
+ SOCK.i \
+ SOCK_IO.i \
+ INET_Addr.h \
+ SOCK_Stream.i \
+ SOCK_Acceptor.h \
+ SOCK_Acceptor.i \
+ WFMO_Reactor.h \
+ Service_Manager.i
.obj/Service_Object.o .obj/Service_Object.so .shobj/Service_Object.o .shobj/Service_Object.so: Service_Object.cpp \
- Service_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 \
- Event_Handler.h \
- Event_Handler.i \
- 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_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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Svc_Conf_Tokens.h \
+ Event_Handler.h \
+ 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_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i
.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 \
- Event_Handler.h \
- Event_Handler.i \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Svc_Conf_Tokens.h \
+ Event_Handler.h \
+ DLL.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Service_Repository.i
.obj/Service_Types.o .obj/Service_Types.so .shobj/Service_Types.o .shobj/Service_Types.so: Service_Types.cpp \
- Service_Types.h \
- pre.h \
- Service_Object.h \
- Shared_Object.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Shared_Object.i \
- Event_Handler.h \
- Event_Handler.i \
- 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 \
- Thread_Manager.i \
- Task.i \
- Task_T.h \
- Message_Queue.h \
- Message_Block.h \
- Message_Block.i \
- Message_Block_T.h \
- Message_Block_T.i \
- Message_Block_T.cpp \
- IO_Cntl_Msg.h \
- Message_Queue_T.h \
- Message_Queue_T.i \
- Message_Queue_T.cpp \
- Notification_Strategy.h \
- Notification_Strategy.inl \
- Message_Queue.i \
- Task_T.i \
- Task_T.cpp \
- Module.h \
- Module.i \
- Module.cpp \
- Stream_Modules.cpp \
- Stream.h \
- Stream.i \
- Stream.cpp
+ Service_Types.h \
+ pre.h \
+ Service_Object.h \
+ Shared_Object.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Svc_Conf_Tokens.h \
+ Event_Handler.h \
+ DLL.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Stream_Modules.h \
+ Task.h \
+ Thread_Manager.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task_T.cpp \
+ Module.h \
+ Module.cpp \
+ Stream_Modules.cpp \
+ Module.i \
+ Task_T.i \
+ Stream.h \
+ Stream.cpp \
+ Stream.i \
+ Service_Types.i
.obj/Service_Templates.o .obj/Service_Templates.so .shobj/Service_Templates.o .shobj/Service_Templates.so: Service_Templates.cpp \
- Service_Templates.h \
- pre.h \
- Svc_Conf.h \
- Obstack.h \
- Obstack_T.h \
- Obchunk.h \
- Malloc.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Obchunk.i \
- Obstack_T.i \
- Obstack_T.cpp \
- Service_Config.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Parse_Node.h \
- Service_Types.h \
- Service_Types.i \
- DLL.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 \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Obstack_T.cpp \
+ Obstack_T.i \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Parse_Node.h \
+ Thread_Manager.h \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Stream_Modules.h \
+ Task.h \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task_T.cpp \
+ Module.h \
+ Module.cpp \
+ Stream_Modules.cpp \
+ Module.i \
+ Task_T.i \
+ Stream.h \
+ Stream.cpp \
+ Stream.i
.obj/Shared_Object.o .obj/Shared_Object.so .shobj/Shared_Object.o .shobj/Shared_Object.so: Shared_Object.cpp \
- Shared_Object.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Shared_Object.i
+ Shared_Object.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Shared_Object.i
+
+.obj/XML_Svc_Conf.o .obj/XML_Svc_Conf.so .shobj/XML_Svc_Conf.o .shobj/XML_Svc_Conf.so: XML_Svc_Conf.cpp \
+ XML_Svc_Conf.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-linux.h \
+ config-linux-common.h \
+ config-g++-common.h \
+ post.h \
+ ace_wchar.h \
+ ace_wchar.inl
.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Parse_Node.h \
- Service_Types.h \
- Service_Types.i \
- DLL.h \
- Parse_Node.i \
- Svc_Conf_Lexer_Guard.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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Svc_Conf.h \
+ Obstack.h \
+ Obstack_T.h \
+ Obchunk.h \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Obstack_T.cpp \
+ Obstack_T.i \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Parse_Node.h \
+ Svc_Conf_Lexer_Guard.h
.obj/Svc_Conf_y.o .obj/Svc_Conf_y.so .shobj/Svc_Conf_y.o .shobj/Svc_Conf_y.so: Svc_Conf_y.cpp \
- 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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Parse_Node.h \
- Service_Types.h \
- Service_Types.i \
- DLL.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 \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Unbounded_Queue.inl \
+ Svc_Conf.h \
+ Obstack.h \
+ Obstack_T.h \
+ Obchunk.h \
+ Malloc.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ 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 \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Obstack_T.cpp \
+ Obstack_T.i \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Parse_Node.h \
+ Module.h \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task.h \
+ Thread_Manager.h \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.cpp \
+ Task_T.i \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Stream.h \
+ Stream.cpp \
+ Stream.i
.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.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Parse_Node.h \
- Service_Types.h \
- Service_Types.i \
- DLL.h \
- Parse_Node.i \
- Svc_Conf_Lexer_Guard.h
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Obstack_T.cpp \
+ Obstack_T.i \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Parse_Node.h \
+ Svc_Conf_Lexer_Guard.h
.obj/CDR_Base.o .obj/CDR_Base.so .shobj/CDR_Base.o .shobj/CDR_Base.so: CDR_Base.cpp \
- CDR_Base.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- 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
+ 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 \
+ Message_Block.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ CDR_Base.inl
.obj/CDR_Stream.o .obj/CDR_Stream.so .shobj/CDR_Stream.o .shobj/CDR_Stream.so: CDR_Stream.cpp \
- CDR_Stream.h \
- pre.h \
- CDR_Base.h \
- config-all.h \
- config.h \
- config-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
+ 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 \
+ Message_Block.h \
+ OS.h \
+ OS_Dirent.h \
+ OS_Export.h \
+ OS_Errno.h \
+ OS_String.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.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.cpp \
+ Malloc.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ CDR_Stream.i
.obj/Codeset_IBM1047.o .obj/Codeset_IBM1047.so .shobj/Codeset_IBM1047.o .shobj/Codeset_IBM1047.so: Codeset_IBM1047.cpp \
- Codeset_IBM1047.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl
+ Codeset_IBM1047.h \
+ pre.h \
+ config-all.h \
+ config.h \
+ config-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 \
- Message_Queue_T.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.i \
- Message_Queue_T.cpp \
- Notification_Strategy.h \
- Event_Handler.h \
- Event_Handler.i \
- Notification_Strategy.inl \
- Message_Queue.i
+ Message_Queue.h \
+ pre.h \
+ Message_Block.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Event_Handler.h \
+ Message_Queue.i
.obj/Reactor_Notification_Strategy.o .obj/Reactor_Notification_Strategy.so .shobj/Reactor_Notification_Strategy.o .shobj/Reactor_Notification_Strategy.so: Reactor_Notification_Strategy.cpp \
- Reactor_Notification_Strategy.h \
- pre.h \
- Notification_Strategy.h \
- Event_Handler.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Event_Handler.i \
- Notification_Strategy.inl \
- Reactor_Notification_Strategy.inl \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Timer_Queue_T.h \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Signal.h \
- Signal.i \
- Reactor.i \
- Reactor_Impl.h
+ Reactor_Notification_Strategy.h \
+ pre.h \
+ Notification_Strategy.h \
+ Event_Handler.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Timer_Queue_T.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Signal.h \
+ Timer_Queue_T.i \
+ Reactor_Notification_Strategy.inl
.obj/Task.o .obj/Task.so .shobj/Task.o .shobj/Task.so: Task.cpp \
- Task.h \
- pre.h \
- Service_Object.h \
- Shared_Object.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Shared_Object.i \
- Event_Handler.h \
- Event_Handler.i \
- 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 \
- 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
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Svc_Conf_Tokens.h \
+ Event_Handler.h \
+ DLL.h \
+ Thread_Manager.h \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Containers.h \
+ Containers_T.h \
+ Array_Base.h \
+ Array_Base.cpp \
+ Array_Base.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Containers_T.cpp \
+ Containers_T.i \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Task_T.h \
+ Message_Queue.h \
+ Message_Block.h \
+ Message_Block_T.h \
+ Message_Block_T.cpp \
+ Message_Block_T.i \
+ IO_Cntl_Msg.h \
+ Message_Queue_T.h \
+ Message_Queue_T.cpp \
+ Message_Queue_T.i \
+ Notification_Strategy.h \
+ Task_T.cpp \
+ Module.h \
+ Module.cpp \
+ Stream_Modules.h \
+ Stream_Modules.cpp \
+ Module.i \
+ Task_T.i \
+ Task.i
.obj/Based_Pointer_Repository.o .obj/Based_Pointer_Repository.so .shobj/Based_Pointer_Repository.o .shobj/Based_Pointer_Repository.so: Based_Pointer_Repository.cpp \
- Map_Manager.h \
- pre.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- Synch.h \
- ACE_export.h \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Log_Msg.h \
- Log_Priority.h \
- Map_Manager.i \
- Map_Manager.cpp \
- Malloc.h \
- Malloc.i \
- Malloc_T.h \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Service_Config.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Based_Pointer_Repository.h \
- Singleton.h \
- Singleton.i \
- Singleton.cpp \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Map_Manager.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ DLL.h \
+ Unbounded_Queue.h \
+ Unbounded_Queue.cpp \
+ Unbounded_Queue.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Map_Manager.i \
+ Based_Pointer_Repository.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl
.obj/Malloc.o .obj/Malloc.so .shobj/Malloc.o .shobj/Malloc.so: Malloc.cpp \
- Malloc.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Malloc.i
.obj/PI_Malloc.o .obj/PI_Malloc.so .shobj/PI_Malloc.o .shobj/PI_Malloc.so: PI_Malloc.cpp \
- PI_Malloc.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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 \
- PI_Malloc.i \
- Process_Mutex.h \
- Process_Mutex.inl
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Based_Pointer_T.h \
+ Based_Pointer_T.cpp \
+ Based_Pointer_Repository.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Based_Pointer_T.i \
+ Process_Mutex.h \
+ PI_Malloc.i
.obj/Malloc_Allocator.o .obj/Malloc_Allocator.so .shobj/Malloc_Allocator.o .shobj/Malloc_Allocator.so: Malloc_Allocator.cpp \
- Malloc_Allocator.h \
- pre.h \
- OS.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- ACE_export.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Malloc_Base.h \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc_Allocator.i \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp \
- Synch_T.h \
- Synch.h \
- Synch.i \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp
+ Malloc_Allocator.h \
+ pre.h \
+ OS.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Malloc_Base.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Malloc_Allocator.i \
+ Synch_T.h \
+ Synch.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i
.obj/Malloc_Instantiations.o .obj/Malloc_Instantiations.so .shobj/Malloc_Instantiations.o .shobj/Malloc_Instantiations.so: Malloc_Instantiations.cpp \
- Malloc.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i
+ Malloc.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl
.obj/Mem_Map.o .obj/Mem_Map.so .shobj/Mem_Map.o .shobj/Mem_Map.so: Mem_Map.cpp \
- Mem_Map.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Mem_Map.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Mem_Map.i
.obj/Memory_Pool.o .obj/Memory_Pool.so .shobj/Memory_Pool.o .shobj/Memory_Pool.so: Memory_Pool.cpp \
- Memory_Pool.h \
- pre.h \
- ACE.h \
- OS.h \
- config-all.h \
- config.h \
- config-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
+ 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_String.h \
+ Basic_Types.h \
+ ACE_export.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Event_Handler.h \
+ Signal.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Malloc_Base.h \
+ Unbounded_Set.inl \
+ Memory_Pool.i \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ Based_Pointer_T.h \
+ Based_Pointer_T.cpp \
+ Based_Pointer_Repository.h \
+ Singleton.h \
+ Singleton.cpp \
+ Singleton.i \
+ Object_Manager.h \
+ Managed_Object.h \
+ Managed_Object.cpp \
+ Managed_Object.i \
+ Framework_Component.h \
+ Framework_Component_T.h \
+ Framework_Component_T.cpp \
+ Framework_Component_T.inl \
+ Based_Pointer_T.i
.obj/Obchunk.o .obj/Obchunk.so .shobj/Obchunk.o .shobj/Obchunk.so: Obchunk.cpp \
- Obchunk.h \
- pre.h \
- Malloc.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Obchunk.i
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Obchunk.i
.obj/Obstack.o .obj/Obstack.so .shobj/Obstack.o .shobj/Obstack.so: Obstack.cpp \
- Obstack.h \
- pre.h \
- Obstack_T.h \
- Obchunk.h \
- Malloc.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Log_Msg.h \
- Log_Priority.h \
- OS_Log_Msg_Attributes.h \
- OS_Log_Msg_Attributes.inl \
- Malloc.i \
- Malloc_T.h \
- Synch.h \
- Synch.i \
- Synch_T.h \
- Synch_T.i \
- Thread.h \
- Thread_Adapter.h \
- Base_Thread_Adapter.h \
- Base_Thread_Adapter.inl \
- Thread_Adapter.inl \
- Thread.i \
- Synch_T.cpp \
- Malloc_Allocator.h \
- Malloc_Base.h \
- Malloc_Allocator.i \
- Free_List.h \
- Free_List.i \
- Free_List.cpp \
- Malloc_T.i \
- Malloc_T.cpp \
- ACE.h \
- Flag_Manip.h \
- Flag_Manip.i \
- Handle_Ops.h \
- Handle_Ops.i \
- Lib_Find.h \
- Lib_Find.i \
- Init_ACE.h \
- Init_ACE.i \
- Sock_Connect.h \
- Sock_Connect.i \
- ACE.i \
- Memory_Pool.h \
- Event_Handler.h \
- Event_Handler.i \
- Signal.h \
- Signal.i \
- Mem_Map.h \
- Mem_Map.i \
- SV_Semaphore_Complex.h \
- SV_Semaphore_Simple.h \
- SV_Semaphore_Simple.i \
- SV_Semaphore_Complex.i \
- Unbounded_Set.h \
- Node.h \
- Node.cpp \
- Unbounded_Set.inl \
- Unbounded_Set.cpp \
- Memory_Pool.i \
- Obchunk.i \
- Obstack_T.i \
- Obstack_T.cpp
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ OS_Log_Msg_Attributes.h \
+ Malloc_T.h \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ Synch_T.i \
+ Malloc_Allocator.h \
+ Malloc_Base.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Memory_Pool.h \
+ Event_Handler.h \
+ Signal.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Unbounded_Set.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ Obstack_T.cpp \
+ Obstack_T.i
.obj/Read_Buffer.o .obj/Read_Buffer.so .shobj/Read_Buffer.o .shobj/Read_Buffer.so: Read_Buffer.cpp \
- Read_Buffer.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-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 \
- Service_Config.h \
- Service_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Event_Handler.h \
- Event_Handler.i \
- Service_Object.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 \
- 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 \
- 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 \
- 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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Service_Config.h \
+ Service_Types.h \
+ Service_Object.h \
+ Shared_Object.h \
+ Svc_Conf_Tokens.h \
+ Event_Handler.h \
+ DLL.h \
+ ACE.h \
+ Flag_Manip.h \
+ Flag_Manip.i \
+ Handle_Ops.h \
+ Handle_Ops.i \
+ Lib_Find.h \
+ Lib_Find.i \
+ Init_ACE.h \
+ Init_ACE.i \
+ Sock_Connect.h \
+ Sock_Connect.i \
+ ACE.i \
+ Synch.h \
+ Synch_T.h \
+ Synch_T.cpp \
+ Thread.h \
+ Thread_Adapter.h \
+ Base_Thread_Adapter.h \
+ OS_Log_Msg_Attributes.h \
+ Log_Msg.h \
+ Log_Priority.h \
+ Synch_T.i \
+ Signal.h \
+ Unbounded_Queue.h \
+ Node.h \
+ Node.cpp \
+ Unbounded_Queue.cpp \
+ Malloc_Base.h \
+ Unbounded_Queue.inl \
+ Unbounded_Set.h \
+ Unbounded_Set.cpp \
+ Unbounded_Set.inl \
+ SString.h \
+ String_Base.h \
+ String_Base_Const.h \
+ String_Base.cpp \
+ Malloc.h \
+ Malloc_T.h \
+ Malloc_Allocator.h \
+ Free_List.h \
+ Free_List.cpp \
+ Free_List.i \
+ Malloc_T.cpp \
+ Malloc_T.i \
+ Memory_Pool.h \
+ Mem_Map.h \
+ SV_Semaphore_Complex.h \
+ SV_Semaphore_Simple.h \
+ SV_Semaphore_Simple.i \
+ SV_Semaphore_Complex.i \
+ Auto_Ptr.h \
+ Auto_Ptr.cpp \
+ Auto_Ptr.i \
+ String_Base.i \
+ XML_Svc_Conf.h \
+ Reactor.h \
+ Handle_Set.h \
+ Timer_Queue.h \
+ Timer_Queue_T.h \
+ Test_and_Set.h \
+ Test_and_Set.cpp \
+ Timer_Queue_T.cpp \
+ Timer_Queue_T.i \
+ Read_Buffer.i
.obj/Shared_Memory.o .obj/Shared_Memory.so .shobj/Shared_Memory.o .shobj/Shared_Memory.so: Shared_Memory.cpp \
- Shared_Memory.h \
- pre.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i
+ Shared_Memory.h \
+ pre.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h
.obj/Shared_Memory_MM.o .obj/Shared_Memory_MM.so .shobj/Shared_Memory_MM.o .shobj/Shared_Memory_MM.so: Shared_Memory_MM.cpp \
- Shared_Memory_MM.h \
- pre.h \
- Shared_Memory.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- Mem_Map.h \
- Mem_Map.i \
- Shared_Memory_MM.i
+ Shared_Memory_MM.h \
+ pre.h \
+ Shared_Memory.h \
+ ACE_export.h \
+ config-all.h \
+ config.h \
+ config-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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ Mem_Map.h \
+ Shared_Memory_MM.i
.obj/Shared_Memory_SV.o .obj/Shared_Memory_SV.so .shobj/Shared_Memory_SV.o .shobj/Shared_Memory_SV.so: Shared_Memory_SV.cpp \
- Shared_Memory_SV.h \
- pre.h \
- Shared_Memory.h \
- ACE_export.h \
- config-all.h \
- config.h \
- config-linux.h \
- config-linux-common.h \
- config-g++-common.h \
- post.h \
- ace_wchar.h \
- ace_wchar.inl \
- OS.h \
- OS_Dirent.h \
- OS_Export.h \
- OS_Errno.h \
- OS_Errno.inl \
- OS_Dirent.inl \
- OS_String.h \
- Basic_Types.h \
- Basic_Types.i \
- OS_String.inl \
- OS_Memory.h \
- OS_Memory.inl \
- OS_TLI.h \
- OS_TLI.inl \
- Time_Value.h \
- Time_Value.inl \
- Default_Constants.h \
- Global_Macros.h \
- Min_Max.h \
- streams.h \
- Trace.h \
- OS.i \
- SV_Shared_Memory.h \
- SV_Shared_Memory.i \
- Shared_Memory_SV.i
-
-.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
-
-.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Local_Tokens.h \
- Local_Tokens.i \
- Token_Collection.i
-
-.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Local_Tokens.h \
- Local_Tokens.i \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp
-
-.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Local_Tokens.h \
- Local_Tokens.i \
- Token_Manager.i \
- Object_Manager.h \
- Object_Manager.i \
- Managed_Object.h \
- Managed_Object.i \
- Managed_Object.cpp
-
-.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.i \
- Unbounded_Queue.h \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Synch_Options.h \
- Synch_Options.i \
- Name_Request_Reply.h \
- Naming_Context.h \
- Containers.h \
- Containers.i \
- Containers_T.h \
- Array_Base.h \
- Array_Base.inl \
- Array_Base.cpp \
- Containers_T.i \
- Containers_T.cpp \
- 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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Event_Handler.h \
- Event_Handler.i \
- Service_Object.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 \
- 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 \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Synch_Options.h \
- Synch_Options.i \
- Name_Request_Reply.h
-
-.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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.i \
- Unbounded_Queue.h \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Synch_Options.h \
- Synch_Options.i \
- Name_Request_Reply.h
-
-.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 \
- 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_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Synch_Options.h \
- Synch_Options.i \
- Name_Request_Reply.h \
- Name_Space.h \
- Remote_Name_Space.h \
- 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_Object.h \
- Shared_Object.h \
- Shared_Object.i \
- Service_Object.i \
- Unbounded_Queue.h \
- Unbounded_Queue.inl \
- Unbounded_Queue.cpp \
- Service_Config.i \
- Reactor.h \
- Handle_Set.h \
- Handle_Set.i \
- Timer_Queue.h \
- Timer_Queue_T.h \
- Test_and_Set.h \
- Test_and_Set.i \
- Test_and_Set.cpp \
- Timer_Queue_T.i \
- Timer_Queue_T.cpp \
- Reactor.i \
- Reactor_Impl.h \
- Svc_Conf_Tokens.h \
- Synch_Options.h \
- Synch_Options.i \
- Name_Request_Reply.h \
- Name_Space.h
+ 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_String.h \
+ Basic_Types.h \
+ OS_Memory.h \
+ OS_TLI.h \
+ Time_Value.h \
+ Default_Constants.h \
+ Global_Macros.h \
+ Min_Max.h \
+ streams.h \
+ Trace.h \
+ SV_Shared_Memory.h \
+ Shared_Memory_SV.i
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
diff --git a/ace/Proactor.cpp b/ace/Proactor.cpp
index 7d9419429b5..3228a0fc56d 100644
--- a/ace/Proactor.cpp
+++ b/ace/Proactor.cpp
@@ -356,8 +356,13 @@ ACE_Proactor::close_singleton (void)
const ACE_TCHAR *
ACE_Proactor::dll_name (void)
{
- // this is just a stub for now...
- return 0;
+ return ACE_LIB_TEXT ("ACE");
+}
+
+const ACE_TCHAR *
+ACE_Proactor::name (void)
+{
+ return ACE_LIB_TEXT ("ACE_Proactor");
}
int
diff --git a/ace/Proactor.h b/ace/Proactor.h
index 5950fa1660e..53ddb9d1d39 100644
--- a/ace/Proactor.h
+++ b/ace/Proactor.h
@@ -178,6 +178,9 @@ public:
/// Name of dll in which the singleton instance lives.
static const ACE_TCHAR *dll_name (void);
+ /// Name of component--ACE_Proactor in this case.
+ static const ACE_TCHAR *name (void);
+
// = Proactor event loop management methods.
/// Run the event loop until the <ACE_Proactor::handle_events> method
diff --git a/ace/RMCast/Makefile b/ace/RMCast/Makefile
index a942f423bf7..e61fa05ccda 100644
--- a/ace/RMCast/Makefile
+++ b/ace/RMCast/Makefile
@@ -61,2012 +61,1609 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
.obj/RMCast.o .obj/RMCast.so .shobj/RMCast.o .shobj/RMCast.so: RMCast.cpp RMCast.h \
- $(ACE_ROOT)/ace/pre.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i
+ $(ACE_ROOT)/ace/pre.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast.i
.obj/RMCast_Ack_Worker.o .obj/RMCast_Ack_Worker.so .shobj/RMCast_Ack_Worker.o .shobj/RMCast_Ack_Worker.so: RMCast_Ack_Worker.cpp RMCast_Ack_Worker.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Retransmission.h RMCast_Module.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Copy_On_Write.h RMCast_Worker.h \
- RMCast_Worker.i RMCast_Worker.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Copy_On_Write.i RMCast_Copy_On_Write.cpp \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- RMCast_Retransmission.i RMCast_Ack_Worker.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Retransmission.h RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Copy_On_Write.h RMCast_Worker.h \
+ RMCast_Worker.cpp RMCast_Worker.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_Ack_Worker.i
.obj/RMCast_Fork.o .obj/RMCast_Fork.so .shobj/RMCast_Fork.o .shobj/RMCast_Fork.so: RMCast_Fork.cpp RMCast_Fork.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Fork.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Fork.i
.obj/RMCast_Fragment.o .obj/RMCast_Fragment.so .shobj/RMCast_Fragment.o .shobj/RMCast_Fragment.so: RMCast_Fragment.cpp RMCast_Fragment.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Fragment.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_Fragment.i
.obj/RMCast_IO_UDP.o .obj/RMCast_IO_UDP.so .shobj/RMCast_IO_UDP.o .shobj/RMCast_IO_UDP.so: RMCast_IO_UDP.cpp RMCast_IO_UDP.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_UDP_Proxy.i RMCast_Module_Factory.h RMCast_Module_Factory.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Module_Factory.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_IO_UDP.i
.obj/RMCast_Membership.o .obj/RMCast_Membership.so .shobj/RMCast_Membership.o .shobj/RMCast_Membership.so: RMCast_Membership.cpp RMCast_Membership.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/Containers.h \
- $(ACE_ROOT)/ace/Containers.i \
- $(ACE_ROOT)/ace/Containers_T.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Array_Base.h \
- $(ACE_ROOT)/ace/Array_Base.inl \
- $(ACE_ROOT)/ace/Array_Base.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Containers_T.i \
- $(ACE_ROOT)/ace/Containers_T.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- RMCast_Membership.i RMCast_Proxy.h RMCast_Proxy.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Array_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Proxy.h RMCast_Membership.i
.obj/RMCast_Module.o .obj/RMCast_Module.so .shobj/RMCast_Module.o .shobj/RMCast_Module.so: RMCast_Module.cpp RMCast_Module.h \
- $(ACE_ROOT)/ace/pre.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Module.i
.obj/RMCast_Module_Factory.o .obj/RMCast_Module_Factory.so .shobj/RMCast_Module_Factory.o .shobj/RMCast_Module_Factory.so: RMCast_Module_Factory.cpp \
- RMCast_Module_Factory.h \
- $(ACE_ROOT)/ace/pre.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i
+ RMCast_Module_Factory.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Module_Factory.i
.obj/RMCast_Partial_Message.o .obj/RMCast_Partial_Message.so .shobj/RMCast_Partial_Message.o .shobj/RMCast_Partial_Message.so: RMCast_Partial_Message.cpp \
- RMCast_Partial_Message.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Export.h \
- $(ACE_ROOT)/ace/post.h \
- $(ACE_ROOT)/ace/ace_wchar.h \
- $(ACE_ROOT)/ace/ace_wchar.inl \
- $(ACE_ROOT)/ace/Task.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/ACE_export.h \
- $(ACE_ROOT)/ace/OS.h \
- $(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/OS_String.h \
- $(ACE_ROOT)/ace/Basic_Types.h \
- $(ACE_ROOT)/ace/Basic_Types.i \
- $(ACE_ROOT)/ace/OS_String.inl \
- $(ACE_ROOT)/ace/OS_Memory.h \
- $(ACE_ROOT)/ace/OS_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Thread_Manager.h \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Containers.h \
- $(ACE_ROOT)/ace/Containers.i \
- $(ACE_ROOT)/ace/Containers_T.h \
- $(ACE_ROOT)/ace/Array_Base.h \
- $(ACE_ROOT)/ace/Array_Base.inl \
- $(ACE_ROOT)/ace/Array_Base.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Containers_T.i \
- $(ACE_ROOT)/ace/Containers_T.cpp \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Singleton.h \
- $(ACE_ROOT)/ace/Singleton.i \
- $(ACE_ROOT)/ace/Singleton.cpp \
- $(ACE_ROOT)/ace/Object_Manager.h \
- $(ACE_ROOT)/ace/Object_Manager.i \
- $(ACE_ROOT)/ace/Managed_Object.h \
- $(ACE_ROOT)/ace/Managed_Object.i \
- $(ACE_ROOT)/ace/Managed_Object.cpp \
- $(ACE_ROOT)/ace/Thread_Manager.i \
- $(ACE_ROOT)/ace/Task.i \
- $(ACE_ROOT)/ace/Task_T.h \
- $(ACE_ROOT)/ace/Message_Queue.h \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp \
- $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
- $(ACE_ROOT)/ace/Message_Queue_T.h \
- $(ACE_ROOT)/ace/Message_Queue_T.i \
- $(ACE_ROOT)/ace/Message_Queue_T.cpp \
- $(ACE_ROOT)/ace/Notification_Strategy.h \
- $(ACE_ROOT)/ace/Notification_Strategy.inl \
- $(ACE_ROOT)/ace/Message_Queue.i \
- $(ACE_ROOT)/ace/Task_T.i \
- $(ACE_ROOT)/ace/Task_T.cpp \
- $(ACE_ROOT)/ace/Module.h \
- $(ACE_ROOT)/ace/Module.i \
- $(ACE_ROOT)/ace/Module.cpp \
- $(ACE_ROOT)/ace/Stream_Modules.h \
- $(ACE_ROOT)/ace/Stream_Modules.cpp \
- RMCast_Partial_Message.i
+ RMCast_Partial_Message.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/post.h \
+ $(ACE_ROOT)/ace/ace_wchar.h \
+ $(ACE_ROOT)/ace/ace_wchar.inl \
+ $(ACE_ROOT)/ace/Task.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS.h \
+ $(ACE_ROOT)/ace/OS_Dirent.h \
+ $(ACE_ROOT)/ace/OS_Export.h \
+ $(ACE_ROOT)/ace/OS_Errno.h \
+ $(ACE_ROOT)/ace/OS_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Thread_Manager.h \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Array_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.cpp \
+ $(ACE_ROOT)/ace/Array_Base.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Singleton.h \
+ $(ACE_ROOT)/ace/Singleton.cpp \
+ $(ACE_ROOT)/ace/Singleton.i \
+ $(ACE_ROOT)/ace/Object_Manager.h \
+ $(ACE_ROOT)/ace/Managed_Object.h \
+ $(ACE_ROOT)/ace/Managed_Object.cpp \
+ $(ACE_ROOT)/ace/Managed_Object.i \
+ $(ACE_ROOT)/ace/Framework_Component.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.cpp \
+ $(ACE_ROOT)/ace/Framework_Component_T.inl \
+ $(ACE_ROOT)/ace/Task_T.h \
+ $(ACE_ROOT)/ace/Message_Queue.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Message_Queue_T.i \
+ $(ACE_ROOT)/ace/Notification_Strategy.h \
+ $(ACE_ROOT)/ace/Task_T.cpp \
+ $(ACE_ROOT)/ace/Module.h \
+ $(ACE_ROOT)/ace/Module.cpp \
+ $(ACE_ROOT)/ace/Stream_Modules.h \
+ $(ACE_ROOT)/ace/Stream_Modules.cpp \
+ $(ACE_ROOT)/ace/Module.i \
+ $(ACE_ROOT)/ace/Task_T.i \
+ RMCast_Partial_Message.i
.obj/RMCast_Proxy.o .obj/RMCast_Proxy.so .shobj/RMCast_Proxy.o .shobj/RMCast_Proxy.so: RMCast_Proxy.cpp RMCast_Proxy.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Proxy.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Proxy.i
.obj/RMCast_Reassembly.o .obj/RMCast_Reassembly.so .shobj/RMCast_Reassembly.o .shobj/RMCast_Reassembly.so: RMCast_Reassembly.cpp RMCast_Reassembly.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_Reassembly.i RMCast_Partial_Message.h \
- $(ACE_ROOT)/ace/Task.h \
- $(ACE_ROOT)/ace/Thread_Manager.h \
- $(ACE_ROOT)/ace/Containers.h \
- $(ACE_ROOT)/ace/Containers.i \
- $(ACE_ROOT)/ace/Containers_T.h \
- $(ACE_ROOT)/ace/Array_Base.h \
- $(ACE_ROOT)/ace/Array_Base.inl \
- $(ACE_ROOT)/ace/Array_Base.cpp \
- $(ACE_ROOT)/ace/Containers_T.i \
- $(ACE_ROOT)/ace/Containers_T.cpp \
- $(ACE_ROOT)/ace/Singleton.h \
- $(ACE_ROOT)/ace/Singleton.i \
- $(ACE_ROOT)/ace/Singleton.cpp \
- $(ACE_ROOT)/ace/Object_Manager.h \
- $(ACE_ROOT)/ace/Object_Manager.i \
- $(ACE_ROOT)/ace/Managed_Object.h \
- $(ACE_ROOT)/ace/Managed_Object.i \
- $(ACE_ROOT)/ace/Managed_Object.cpp \
- $(ACE_ROOT)/ace/Thread_Manager.i \
- $(ACE_ROOT)/ace/Task.i \
- $(ACE_ROOT)/ace/Task_T.h \
- $(ACE_ROOT)/ace/Message_Queue.h \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp \
- $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
- $(ACE_ROOT)/ace/Message_Queue_T.h \
- $(ACE_ROOT)/ace/Message_Queue_T.i \
- $(ACE_ROOT)/ace/Message_Queue_T.cpp \
- $(ACE_ROOT)/ace/Notification_Strategy.h \
- $(ACE_ROOT)/ace/Notification_Strategy.inl \
- $(ACE_ROOT)/ace/Message_Queue.i \
- $(ACE_ROOT)/ace/Task_T.i \
- $(ACE_ROOT)/ace/Task_T.cpp \
- $(ACE_ROOT)/ace/Module.h \
- $(ACE_ROOT)/ace/Module.i \
- $(ACE_ROOT)/ace/Module.cpp \
- $(ACE_ROOT)/ace/Stream_Modules.h \
- $(ACE_ROOT)/ace/Stream_Modules.cpp \
- RMCast_Partial_Message.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_Partial_Message.h \
+ $(ACE_ROOT)/ace/Task.h \
+ $(ACE_ROOT)/ace/Thread_Manager.h \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Array_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.cpp \
+ $(ACE_ROOT)/ace/Array_Base.inl \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ $(ACE_ROOT)/ace/Singleton.h \
+ $(ACE_ROOT)/ace/Singleton.cpp \
+ $(ACE_ROOT)/ace/Singleton.i \
+ $(ACE_ROOT)/ace/Object_Manager.h \
+ $(ACE_ROOT)/ace/Managed_Object.h \
+ $(ACE_ROOT)/ace/Managed_Object.cpp \
+ $(ACE_ROOT)/ace/Managed_Object.i \
+ $(ACE_ROOT)/ace/Framework_Component.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.cpp \
+ $(ACE_ROOT)/ace/Framework_Component_T.inl \
+ $(ACE_ROOT)/ace/Task_T.h \
+ $(ACE_ROOT)/ace/Message_Queue.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Message_Queue_T.i \
+ $(ACE_ROOT)/ace/Notification_Strategy.h \
+ $(ACE_ROOT)/ace/Task_T.cpp \
+ $(ACE_ROOT)/ace/Module.h \
+ $(ACE_ROOT)/ace/Module.cpp \
+ $(ACE_ROOT)/ace/Stream_Modules.h \
+ $(ACE_ROOT)/ace/Stream_Modules.cpp \
+ $(ACE_ROOT)/ace/Module.i \
+ $(ACE_ROOT)/ace/Task_T.i \
+ RMCast_Reassembly.i
.obj/RMCast_Receiver_Module.o .obj/RMCast_Receiver_Module.so .shobj/RMCast_Receiver_Module.o .shobj/RMCast_Receiver_Module.so: RMCast_Receiver_Module.cpp \
- RMCast_Receiver_Module.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Receiver_Module.i RMCast_Proxy.h \
- RMCast_Proxy.i \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl
+ RMCast_Receiver_Module.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Proxy.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ RMCast_Receiver_Module.i
.obj/RMCast_Reliable_Factory.o .obj/RMCast_Reliable_Factory.so .shobj/RMCast_Reliable_Factory.o .shobj/RMCast_Reliable_Factory.so: RMCast_Reliable_Factory.cpp \
- RMCast_Reliable_Factory.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Module_Factory.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i RMCast_Reliable_Factory.i \
- RMCast_Receiver_Module.h RMCast_Module.h RMCast_Module.i \
- RMCast_Receiver_Module.i RMCast_Reassembly.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_Reassembly.i RMCast_Reordering.h \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- RMCast_Reordering.i
+ RMCast_Reliable_Factory.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module_Factory.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Receiver_Module.h RMCast_Module.h \
+ RMCast_Reassembly.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_Reordering.h \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Reliable_Factory.i
.obj/RMCast_Reordering.o .obj/RMCast_Reordering.so .shobj/RMCast_Reordering.o .shobj/RMCast_Reordering.so: RMCast_Reordering.cpp RMCast_Reordering.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- RMCast_Reordering.i RMCast_Proxy.h RMCast_Proxy.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Proxy.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_Reordering.i
.obj/RMCast_Resend_Handler.o .obj/RMCast_Resend_Handler.so .shobj/RMCast_Resend_Handler.o .shobj/RMCast_Resend_Handler.so: RMCast_Resend_Handler.cpp \
- RMCast_Resend_Handler.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Export.h \
- $(ACE_ROOT)/ace/post.h \
- $(ACE_ROOT)/ace/ace_wchar.h \
- $(ACE_ROOT)/ace/ace_wchar.inl \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/ACE_export.h \
- $(ACE_ROOT)/ace/OS.h \
- $(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/OS_String.h \
- $(ACE_ROOT)/ace/Basic_Types.h \
- $(ACE_ROOT)/ace/Basic_Types.i \
- $(ACE_ROOT)/ace/OS_String.inl \
- $(ACE_ROOT)/ace/OS_Memory.h \
- $(ACE_ROOT)/ace/OS_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i \
- $(ACE_ROOT)/ace/Event_Handler.i \
- RMCast_Resend_Handler.i RMCast_Retransmission.h RMCast_Module.h \
- RMCast.h RMCast.i RMCast_Module.i RMCast_Copy_On_Write.h \
- RMCast_Worker.h RMCast_Worker.i RMCast_Worker.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Copy_On_Write.i RMCast_Copy_On_Write.cpp \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- RMCast_Retransmission.i
+ RMCast_Resend_Handler.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/post.h \
+ $(ACE_ROOT)/ace/ace_wchar.h \
+ $(ACE_ROOT)/ace/ace_wchar.inl \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS.h \
+ $(ACE_ROOT)/ace/OS_Dirent.h \
+ $(ACE_ROOT)/ace/OS_Export.h \
+ $(ACE_ROOT)/ace/OS_Errno.h \
+ $(ACE_ROOT)/ace/OS_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Retransmission.h RMCast_Module.h RMCast.h RMCast_Copy_On_Write.h \
+ RMCast_Worker.h RMCast_Worker.cpp RMCast_Worker.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Resend_Handler.i
-.obj/RMCast_Resend_Worker.o .obj/RMCast_Resend_Worker.so .shobj/RMCast_Resend_Worker.o .shobj/RMCast_Resend_Worker.so: RMCast_Resend_Worker.cpp \
- RMCast_Resend_Worker.h \
- $(ACE_ROOT)/ace/pre.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Copy_On_Write.h RMCast_Worker.h RMCast_Worker.i \
- RMCast_Worker.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Copy_On_Write.i RMCast_Copy_On_Write.cpp \
- RMCast_Resend_Worker.i RMCast_Module.h RMCast_Module.i
+.obj/RMCast_Resend_Worker.o .obj/RMCast_Resend_Worker.so .shobj/RMCast_Resend_Worker.o .shobj/RMCast_Resend_Worker.so: RMCast_Resend_Worker.cpp RMCast_Resend_Worker.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Copy_On_Write.h RMCast_Worker.h \
+ RMCast_Worker.cpp RMCast_Worker.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i RMCast_Module.h \
+ RMCast_Resend_Worker.i
.obj/RMCast_Retransmission.o .obj/RMCast_Retransmission.so .shobj/RMCast_Retransmission.o .shobj/RMCast_Retransmission.so: RMCast_Retransmission.cpp \
- RMCast_Retransmission.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Copy_On_Write.h RMCast_Worker.h \
- RMCast_Worker.i RMCast_Worker.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Copy_On_Write.i RMCast_Copy_On_Write.cpp \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- RMCast_Retransmission.i RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_Ack_Worker.h RMCast_Ack_Worker.i RMCast_Resend_Worker.h \
- RMCast_Resend_Worker.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ RMCast_Retransmission.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Copy_On_Write.h RMCast_Worker.h \
+ RMCast_Worker.cpp RMCast_Worker.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Proxy.h RMCast_Ack_Worker.h RMCast_Resend_Worker.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_Retransmission.i
.obj/RMCast_Sequencer.o .obj/RMCast_Sequencer.so .shobj/RMCast_Sequencer.o .shobj/RMCast_Sequencer.so: RMCast_Sequencer.cpp RMCast_Sequencer.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Sequencer.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Sequencer.i
.obj/RMCast_Singleton_Factory.o .obj/RMCast_Singleton_Factory.so .shobj/RMCast_Singleton_Factory.o .shobj/RMCast_Singleton_Factory.so: RMCast_Singleton_Factory.cpp \
- RMCast_Singleton_Factory.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Module_Factory.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i RMCast_Singleton_Factory.i
+ RMCast_Singleton_Factory.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module_Factory.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Singleton_Factory.i
.obj/RMCast_UDP_Event_Handler.o .obj/RMCast_UDP_Event_Handler.so .shobj/RMCast_UDP_Event_Handler.o .shobj/RMCast_UDP_Event_Handler.so: RMCast_UDP_Event_Handler.cpp \
- RMCast_UDP_Event_Handler.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Export.h \
- $(ACE_ROOT)/ace/post.h \
- $(ACE_ROOT)/ace/ace_wchar.h \
- $(ACE_ROOT)/ace/ace_wchar.inl \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/ACE_export.h \
- $(ACE_ROOT)/ace/OS.h \
- $(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/OS_String.h \
- $(ACE_ROOT)/ace/Basic_Types.h \
- $(ACE_ROOT)/ace/Basic_Types.i \
- $(ACE_ROOT)/ace/OS_String.inl \
- $(ACE_ROOT)/ace/OS_Memory.h \
- $(ACE_ROOT)/ace/OS_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i \
- $(ACE_ROOT)/ace/Event_Handler.i \
- RMCast_UDP_Event_Handler.i RMCast_IO_UDP.h RMCast_Module.h RMCast.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_UDP_Proxy.i RMCast_Module_Factory.h RMCast_Module_Factory.i
+ RMCast_UDP_Event_Handler.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/post.h \
+ $(ACE_ROOT)/ace/ace_wchar.h \
+ $(ACE_ROOT)/ace/ace_wchar.inl \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS.h \
+ $(ACE_ROOT)/ace/OS_Dirent.h \
+ $(ACE_ROOT)/ace/OS_Export.h \
+ $(ACE_ROOT)/ace/OS_Errno.h \
+ $(ACE_ROOT)/ace/OS_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_IO_UDP.h RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_UDP_Event_Handler.i
.obj/RMCast_UDP_Proxy.o .obj/RMCast_UDP_Proxy.so .shobj/RMCast_UDP_Proxy.o .shobj/RMCast_UDP_Proxy.so: RMCast_UDP_Proxy.cpp RMCast_UDP_Proxy.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Proxy.h \
- RMCast_Module.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Proxy.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- RMCast_UDP_Proxy.i RMCast_IO_UDP.h \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_Module_Factory.h RMCast_Module_Factory.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Proxy.h RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/Addr.h \
+ RMCast_IO_UDP.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_UDP_Proxy.i
.obj/RMCast_UDP_Reliable_Receiver.o .obj/RMCast_UDP_Reliable_Receiver.so .shobj/RMCast_UDP_Reliable_Receiver.o .shobj/RMCast_UDP_Reliable_Receiver.so: RMCast_UDP_Reliable_Receiver.cpp \
- RMCast_UDP_Reliable_Receiver.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Singleton_Factory.h RMCast_Module_Factory.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i RMCast_Singleton_Factory.i \
- RMCast_Reliable_Factory.h RMCast_Reliable_Factory.i RMCast_IO_UDP.h \
- RMCast_Module.h RMCast_Module.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_UDP_Proxy.i RMCast_UDP_Reliable_Receiver.i \
- RMCast_UDP_Event_Handler.h RMCast_UDP_Event_Handler.i
+ RMCast_UDP_Reliable_Receiver.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Singleton_Factory.h RMCast_Module_Factory.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Reliable_Factory.h RMCast_IO_UDP.h \
+ RMCast_Module.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_UDP_Event_Handler.h RMCast_UDP_Reliable_Receiver.i
.obj/RMCast_UDP_Reliable_Sender.o .obj/RMCast_UDP_Reliable_Sender.so .shobj/RMCast_UDP_Reliable_Sender.o .shobj/RMCast_UDP_Reliable_Sender.so: RMCast_UDP_Reliable_Sender.cpp \
- RMCast_UDP_Reliable_Sender.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Singleton_Factory.h RMCast_Module_Factory.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i RMCast_Singleton_Factory.i \
- RMCast_IO_UDP.h RMCast_Module.h RMCast_Module.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_UDP_Proxy.i RMCast_Sequencer.h RMCast_Sequencer.i \
- RMCast_Retransmission.h RMCast_Copy_On_Write.h RMCast_Worker.h \
- RMCast_Worker.i RMCast_Worker.cpp RMCast_Copy_On_Write.i \
- RMCast_Copy_On_Write.cpp \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- RMCast_Retransmission.i RMCast_Membership.h \
- $(ACE_ROOT)/ace/Containers.h \
- $(ACE_ROOT)/ace/Containers.i \
- $(ACE_ROOT)/ace/Containers_T.h \
- $(ACE_ROOT)/ace/Array_Base.h \
- $(ACE_ROOT)/ace/Array_Base.inl \
- $(ACE_ROOT)/ace/Array_Base.cpp \
- $(ACE_ROOT)/ace/Containers_T.i \
- $(ACE_ROOT)/ace/Containers_T.cpp \
- RMCast_Membership.i RMCast_Fragment.h RMCast_Fragment.i RMCast_Fork.h \
- RMCast_Fork.i RMCast_UDP_Reliable_Sender.i RMCast_UDP_Event_Handler.h \
- RMCast_UDP_Event_Handler.i RMCast_Resend_Handler.h \
- RMCast_Resend_Handler.i
+ RMCast_UDP_Reliable_Sender.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Singleton_Factory.h RMCast_Module_Factory.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_IO_UDP.h RMCast_Module.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_Sequencer.h RMCast_Retransmission.h RMCast_Copy_On_Write.h \
+ RMCast_Worker.h RMCast_Worker.cpp RMCast_Worker.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Membership.h \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Array_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.cpp \
+ $(ACE_ROOT)/ace/Array_Base.inl \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ RMCast_Fragment.h RMCast_Fork.h RMCast_UDP_Event_Handler.h \
+ RMCast_Resend_Handler.h RMCast_UDP_Reliable_Sender.i
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
diff --git a/ace/Reactor.cpp b/ace/Reactor.cpp
index 1bed9722124..34ad62b8119 100644
--- a/ace/Reactor.cpp
+++ b/ace/Reactor.cpp
@@ -134,7 +134,13 @@ ACE_Reactor::close_singleton (void)
const ACE_TCHAR *
ACE_Reactor::dll_name (void)
{
- return 0;
+ return ACE_LIB_TEXT ("ACE");
+}
+
+const ACE_TCHAR *
+ACE_Reactor::name (void)
+{
+ return ACE_LIB_TEXT ("ACE_Reactor");
}
int
diff --git a/ace/Reactor.h b/ace/Reactor.h
index 32dec436e6e..1bac10c5cf0 100644
--- a/ace/Reactor.h
+++ b/ace/Reactor.h
@@ -86,8 +86,12 @@ public:
/// Delete the dynamically allocated Singleton
static void close_singleton (void);
+ /// Name of the dll in which the dll lives.
static const ACE_TCHAR *dll_name (void);
+ /// Name of the component--ACE_Reactor in this case.
+ static const ACE_TCHAR *name (void);
+
// = Singleton reactor event loop management methods.
// Note that these method ONLY work on the "Singleton Reactor,"
diff --git a/ace/Singleton.cpp b/ace/Singleton.cpp
index 61bad5c83ac..f76472c997f 100644
--- a/ace/Singleton.cpp
+++ b/ace/Singleton.cpp
@@ -410,6 +410,8 @@ template <class TYPE, class ACE_LOCK>
ACE_DLL_Singleton_T<TYPE, ACE_LOCK> *&
ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::instance_i (void)
{
+ ACE_TRACE ("ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::instance_i");
+
#if defined (ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES)
// Pointer to the Singleton instance. This works around a bug with
// G++ and it's (mis-)handling of templates and statics...
@@ -475,16 +477,35 @@ ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::instance (void)
template <class TYPE, class ACE_LOCK> void
ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::close (void)
{
+ ACE_TRACE ("ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::close");
+
ACE_DLL_Singleton_T<TYPE, ACE_LOCK> *&singleton =
ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::instance_i ();
- if (singleton)
- {
- singleton->cleanup ();
- ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::instance_i () = 0;
- }
+ delete singleton;
+ singleton = 0;
+}
+
+template <class TYPE, class ACE_LOCK> void
+ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::close_singleton (void)
+{
+ ACE_TRACE ("ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::close_singleton");
+ ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::close ();
+}
+
+template <class TYPE, class ACE_LOCK> const ACE_TCHAR *
+ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::dll_name (void)
+{
+ return this->instance ()->dll_name ();
+}
+
+template <class TYPE, class ACE_LOCK> const ACE_TCHAR *
+ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::name (void)
+{
+ return this->instance ()->name ();
}
+
/**********************************************************************/
template <class TYPE> const ACE_TCHAR*
diff --git a/ace/Singleton.h b/ace/Singleton.h
index 6623221d5cf..3ab56cb8c3a 100644
--- a/ace/Singleton.h
+++ b/ace/Singleton.h
@@ -262,26 +262,36 @@ protected:
* *ACE_Singleton*<T, [ACE_LOCK]>, not an ACE_Unmanaged_Singleton.
*/
template <class TYPE, class ACE_LOCK>
-class ACE_DLL_Singleton_T : public ACE_Singleton <TYPE, ACE_LOCK>
+class ACE_DLL_Singleton_T
{
public:
+ //void cleanup (void *param = 0);
+
/// Global access point to the Singleton.
static TYPE *instance (void);
/// Explicitly delete the Singleton instance.
static void close (void);
- static void close_singleton (void) {close ();}
+ static void close_singleton (void);
/// Dump the state of the object.
static void dump (void);
- const ACE_TCHAR *dll_name (void) {return this->instance ()->dll_name ();}
+ const ACE_TCHAR *dll_name (void);
+
+ const ACE_TCHAR *name (void);
protected:
/// Default constructor.
ACE_DLL_Singleton_T (void);
+ /// Destructor.
+ ~ACE_DLL_Singleton_T (void);
+
+ /// Contained instance.
+ TYPE instance_;
+
#if !defined (ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES)
/// Pointer to the Singleton instance.
static ACE_DLL_Singleton_T<TYPE, ACE_LOCK> *singleton_;
diff --git a/ace/Singleton.i b/ace/Singleton.i
index c1aed4ab4f3..12dfe1bdda3 100644
--- a/ace/Singleton.i
+++ b/ace/Singleton.i
@@ -30,3 +30,8 @@ template <class TYPE, class ACE_LOCK> ACE_INLINE
ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::ACE_DLL_Singleton_T (void)
{
}
+
+template <class TYPE, class ACE_LOCK>
+ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::~ACE_DLL_Singleton_T (void)
+{
+}
diff --git a/protocols/ace/RMCast/Makefile b/protocols/ace/RMCast/Makefile
index a942f423bf7..e61fa05ccda 100644
--- a/protocols/ace/RMCast/Makefile
+++ b/protocols/ace/RMCast/Makefile
@@ -61,2012 +61,1609 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
.obj/RMCast.o .obj/RMCast.so .shobj/RMCast.o .shobj/RMCast.so: RMCast.cpp RMCast.h \
- $(ACE_ROOT)/ace/pre.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i
+ $(ACE_ROOT)/ace/pre.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast.i
.obj/RMCast_Ack_Worker.o .obj/RMCast_Ack_Worker.so .shobj/RMCast_Ack_Worker.o .shobj/RMCast_Ack_Worker.so: RMCast_Ack_Worker.cpp RMCast_Ack_Worker.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Retransmission.h RMCast_Module.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Copy_On_Write.h RMCast_Worker.h \
- RMCast_Worker.i RMCast_Worker.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Copy_On_Write.i RMCast_Copy_On_Write.cpp \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- RMCast_Retransmission.i RMCast_Ack_Worker.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Retransmission.h RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Copy_On_Write.h RMCast_Worker.h \
+ RMCast_Worker.cpp RMCast_Worker.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_Ack_Worker.i
.obj/RMCast_Fork.o .obj/RMCast_Fork.so .shobj/RMCast_Fork.o .shobj/RMCast_Fork.so: RMCast_Fork.cpp RMCast_Fork.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Fork.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Fork.i
.obj/RMCast_Fragment.o .obj/RMCast_Fragment.so .shobj/RMCast_Fragment.o .shobj/RMCast_Fragment.so: RMCast_Fragment.cpp RMCast_Fragment.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Fragment.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_Fragment.i
.obj/RMCast_IO_UDP.o .obj/RMCast_IO_UDP.so .shobj/RMCast_IO_UDP.o .shobj/RMCast_IO_UDP.so: RMCast_IO_UDP.cpp RMCast_IO_UDP.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_UDP_Proxy.i RMCast_Module_Factory.h RMCast_Module_Factory.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Module_Factory.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_IO_UDP.i
.obj/RMCast_Membership.o .obj/RMCast_Membership.so .shobj/RMCast_Membership.o .shobj/RMCast_Membership.so: RMCast_Membership.cpp RMCast_Membership.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/Containers.h \
- $(ACE_ROOT)/ace/Containers.i \
- $(ACE_ROOT)/ace/Containers_T.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Array_Base.h \
- $(ACE_ROOT)/ace/Array_Base.inl \
- $(ACE_ROOT)/ace/Array_Base.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Containers_T.i \
- $(ACE_ROOT)/ace/Containers_T.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- RMCast_Membership.i RMCast_Proxy.h RMCast_Proxy.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Array_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Proxy.h RMCast_Membership.i
.obj/RMCast_Module.o .obj/RMCast_Module.so .shobj/RMCast_Module.o .shobj/RMCast_Module.so: RMCast_Module.cpp RMCast_Module.h \
- $(ACE_ROOT)/ace/pre.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Module.i
.obj/RMCast_Module_Factory.o .obj/RMCast_Module_Factory.so .shobj/RMCast_Module_Factory.o .shobj/RMCast_Module_Factory.so: RMCast_Module_Factory.cpp \
- RMCast_Module_Factory.h \
- $(ACE_ROOT)/ace/pre.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i
+ RMCast_Module_Factory.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Module_Factory.i
.obj/RMCast_Partial_Message.o .obj/RMCast_Partial_Message.so .shobj/RMCast_Partial_Message.o .shobj/RMCast_Partial_Message.so: RMCast_Partial_Message.cpp \
- RMCast_Partial_Message.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Export.h \
- $(ACE_ROOT)/ace/post.h \
- $(ACE_ROOT)/ace/ace_wchar.h \
- $(ACE_ROOT)/ace/ace_wchar.inl \
- $(ACE_ROOT)/ace/Task.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/ACE_export.h \
- $(ACE_ROOT)/ace/OS.h \
- $(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/OS_String.h \
- $(ACE_ROOT)/ace/Basic_Types.h \
- $(ACE_ROOT)/ace/Basic_Types.i \
- $(ACE_ROOT)/ace/OS_String.inl \
- $(ACE_ROOT)/ace/OS_Memory.h \
- $(ACE_ROOT)/ace/OS_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Thread_Manager.h \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Containers.h \
- $(ACE_ROOT)/ace/Containers.i \
- $(ACE_ROOT)/ace/Containers_T.h \
- $(ACE_ROOT)/ace/Array_Base.h \
- $(ACE_ROOT)/ace/Array_Base.inl \
- $(ACE_ROOT)/ace/Array_Base.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Containers_T.i \
- $(ACE_ROOT)/ace/Containers_T.cpp \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Singleton.h \
- $(ACE_ROOT)/ace/Singleton.i \
- $(ACE_ROOT)/ace/Singleton.cpp \
- $(ACE_ROOT)/ace/Object_Manager.h \
- $(ACE_ROOT)/ace/Object_Manager.i \
- $(ACE_ROOT)/ace/Managed_Object.h \
- $(ACE_ROOT)/ace/Managed_Object.i \
- $(ACE_ROOT)/ace/Managed_Object.cpp \
- $(ACE_ROOT)/ace/Thread_Manager.i \
- $(ACE_ROOT)/ace/Task.i \
- $(ACE_ROOT)/ace/Task_T.h \
- $(ACE_ROOT)/ace/Message_Queue.h \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp \
- $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
- $(ACE_ROOT)/ace/Message_Queue_T.h \
- $(ACE_ROOT)/ace/Message_Queue_T.i \
- $(ACE_ROOT)/ace/Message_Queue_T.cpp \
- $(ACE_ROOT)/ace/Notification_Strategy.h \
- $(ACE_ROOT)/ace/Notification_Strategy.inl \
- $(ACE_ROOT)/ace/Message_Queue.i \
- $(ACE_ROOT)/ace/Task_T.i \
- $(ACE_ROOT)/ace/Task_T.cpp \
- $(ACE_ROOT)/ace/Module.h \
- $(ACE_ROOT)/ace/Module.i \
- $(ACE_ROOT)/ace/Module.cpp \
- $(ACE_ROOT)/ace/Stream_Modules.h \
- $(ACE_ROOT)/ace/Stream_Modules.cpp \
- RMCast_Partial_Message.i
+ RMCast_Partial_Message.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/post.h \
+ $(ACE_ROOT)/ace/ace_wchar.h \
+ $(ACE_ROOT)/ace/ace_wchar.inl \
+ $(ACE_ROOT)/ace/Task.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS.h \
+ $(ACE_ROOT)/ace/OS_Dirent.h \
+ $(ACE_ROOT)/ace/OS_Export.h \
+ $(ACE_ROOT)/ace/OS_Errno.h \
+ $(ACE_ROOT)/ace/OS_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Thread_Manager.h \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Array_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.cpp \
+ $(ACE_ROOT)/ace/Array_Base.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Singleton.h \
+ $(ACE_ROOT)/ace/Singleton.cpp \
+ $(ACE_ROOT)/ace/Singleton.i \
+ $(ACE_ROOT)/ace/Object_Manager.h \
+ $(ACE_ROOT)/ace/Managed_Object.h \
+ $(ACE_ROOT)/ace/Managed_Object.cpp \
+ $(ACE_ROOT)/ace/Managed_Object.i \
+ $(ACE_ROOT)/ace/Framework_Component.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.cpp \
+ $(ACE_ROOT)/ace/Framework_Component_T.inl \
+ $(ACE_ROOT)/ace/Task_T.h \
+ $(ACE_ROOT)/ace/Message_Queue.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Message_Queue_T.i \
+ $(ACE_ROOT)/ace/Notification_Strategy.h \
+ $(ACE_ROOT)/ace/Task_T.cpp \
+ $(ACE_ROOT)/ace/Module.h \
+ $(ACE_ROOT)/ace/Module.cpp \
+ $(ACE_ROOT)/ace/Stream_Modules.h \
+ $(ACE_ROOT)/ace/Stream_Modules.cpp \
+ $(ACE_ROOT)/ace/Module.i \
+ $(ACE_ROOT)/ace/Task_T.i \
+ RMCast_Partial_Message.i
.obj/RMCast_Proxy.o .obj/RMCast_Proxy.so .shobj/RMCast_Proxy.o .shobj/RMCast_Proxy.so: RMCast_Proxy.cpp RMCast_Proxy.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Proxy.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Proxy.i
.obj/RMCast_Reassembly.o .obj/RMCast_Reassembly.so .shobj/RMCast_Reassembly.o .shobj/RMCast_Reassembly.so: RMCast_Reassembly.cpp RMCast_Reassembly.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_Reassembly.i RMCast_Partial_Message.h \
- $(ACE_ROOT)/ace/Task.h \
- $(ACE_ROOT)/ace/Thread_Manager.h \
- $(ACE_ROOT)/ace/Containers.h \
- $(ACE_ROOT)/ace/Containers.i \
- $(ACE_ROOT)/ace/Containers_T.h \
- $(ACE_ROOT)/ace/Array_Base.h \
- $(ACE_ROOT)/ace/Array_Base.inl \
- $(ACE_ROOT)/ace/Array_Base.cpp \
- $(ACE_ROOT)/ace/Containers_T.i \
- $(ACE_ROOT)/ace/Containers_T.cpp \
- $(ACE_ROOT)/ace/Singleton.h \
- $(ACE_ROOT)/ace/Singleton.i \
- $(ACE_ROOT)/ace/Singleton.cpp \
- $(ACE_ROOT)/ace/Object_Manager.h \
- $(ACE_ROOT)/ace/Object_Manager.i \
- $(ACE_ROOT)/ace/Managed_Object.h \
- $(ACE_ROOT)/ace/Managed_Object.i \
- $(ACE_ROOT)/ace/Managed_Object.cpp \
- $(ACE_ROOT)/ace/Thread_Manager.i \
- $(ACE_ROOT)/ace/Task.i \
- $(ACE_ROOT)/ace/Task_T.h \
- $(ACE_ROOT)/ace/Message_Queue.h \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp \
- $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
- $(ACE_ROOT)/ace/Message_Queue_T.h \
- $(ACE_ROOT)/ace/Message_Queue_T.i \
- $(ACE_ROOT)/ace/Message_Queue_T.cpp \
- $(ACE_ROOT)/ace/Notification_Strategy.h \
- $(ACE_ROOT)/ace/Notification_Strategy.inl \
- $(ACE_ROOT)/ace/Message_Queue.i \
- $(ACE_ROOT)/ace/Task_T.i \
- $(ACE_ROOT)/ace/Task_T.cpp \
- $(ACE_ROOT)/ace/Module.h \
- $(ACE_ROOT)/ace/Module.i \
- $(ACE_ROOT)/ace/Module.cpp \
- $(ACE_ROOT)/ace/Stream_Modules.h \
- $(ACE_ROOT)/ace/Stream_Modules.cpp \
- RMCast_Partial_Message.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_Partial_Message.h \
+ $(ACE_ROOT)/ace/Task.h \
+ $(ACE_ROOT)/ace/Thread_Manager.h \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Array_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.cpp \
+ $(ACE_ROOT)/ace/Array_Base.inl \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ $(ACE_ROOT)/ace/Singleton.h \
+ $(ACE_ROOT)/ace/Singleton.cpp \
+ $(ACE_ROOT)/ace/Singleton.i \
+ $(ACE_ROOT)/ace/Object_Manager.h \
+ $(ACE_ROOT)/ace/Managed_Object.h \
+ $(ACE_ROOT)/ace/Managed_Object.cpp \
+ $(ACE_ROOT)/ace/Managed_Object.i \
+ $(ACE_ROOT)/ace/Framework_Component.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.cpp \
+ $(ACE_ROOT)/ace/Framework_Component_T.inl \
+ $(ACE_ROOT)/ace/Task_T.h \
+ $(ACE_ROOT)/ace/Message_Queue.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Message_Queue_T.i \
+ $(ACE_ROOT)/ace/Notification_Strategy.h \
+ $(ACE_ROOT)/ace/Task_T.cpp \
+ $(ACE_ROOT)/ace/Module.h \
+ $(ACE_ROOT)/ace/Module.cpp \
+ $(ACE_ROOT)/ace/Stream_Modules.h \
+ $(ACE_ROOT)/ace/Stream_Modules.cpp \
+ $(ACE_ROOT)/ace/Module.i \
+ $(ACE_ROOT)/ace/Task_T.i \
+ RMCast_Reassembly.i
.obj/RMCast_Receiver_Module.o .obj/RMCast_Receiver_Module.so .shobj/RMCast_Receiver_Module.o .shobj/RMCast_Receiver_Module.so: RMCast_Receiver_Module.cpp \
- RMCast_Receiver_Module.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Receiver_Module.i RMCast_Proxy.h \
- RMCast_Proxy.i \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl
+ RMCast_Receiver_Module.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Proxy.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ RMCast_Receiver_Module.i
.obj/RMCast_Reliable_Factory.o .obj/RMCast_Reliable_Factory.so .shobj/RMCast_Reliable_Factory.o .shobj/RMCast_Reliable_Factory.so: RMCast_Reliable_Factory.cpp \
- RMCast_Reliable_Factory.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Module_Factory.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i RMCast_Reliable_Factory.i \
- RMCast_Receiver_Module.h RMCast_Module.h RMCast_Module.i \
- RMCast_Receiver_Module.i RMCast_Reassembly.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_Reassembly.i RMCast_Reordering.h \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- RMCast_Reordering.i
+ RMCast_Reliable_Factory.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module_Factory.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Receiver_Module.h RMCast_Module.h \
+ RMCast_Reassembly.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_Reordering.h \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Reliable_Factory.i
.obj/RMCast_Reordering.o .obj/RMCast_Reordering.so .shobj/RMCast_Reordering.o .shobj/RMCast_Reordering.so: RMCast_Reordering.cpp RMCast_Reordering.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- RMCast_Reordering.i RMCast_Proxy.h RMCast_Proxy.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Proxy.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_Reordering.i
.obj/RMCast_Resend_Handler.o .obj/RMCast_Resend_Handler.so .shobj/RMCast_Resend_Handler.o .shobj/RMCast_Resend_Handler.so: RMCast_Resend_Handler.cpp \
- RMCast_Resend_Handler.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Export.h \
- $(ACE_ROOT)/ace/post.h \
- $(ACE_ROOT)/ace/ace_wchar.h \
- $(ACE_ROOT)/ace/ace_wchar.inl \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/ACE_export.h \
- $(ACE_ROOT)/ace/OS.h \
- $(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/OS_String.h \
- $(ACE_ROOT)/ace/Basic_Types.h \
- $(ACE_ROOT)/ace/Basic_Types.i \
- $(ACE_ROOT)/ace/OS_String.inl \
- $(ACE_ROOT)/ace/OS_Memory.h \
- $(ACE_ROOT)/ace/OS_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i \
- $(ACE_ROOT)/ace/Event_Handler.i \
- RMCast_Resend_Handler.i RMCast_Retransmission.h RMCast_Module.h \
- RMCast.h RMCast.i RMCast_Module.i RMCast_Copy_On_Write.h \
- RMCast_Worker.h RMCast_Worker.i RMCast_Worker.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Copy_On_Write.i RMCast_Copy_On_Write.cpp \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- RMCast_Retransmission.i
+ RMCast_Resend_Handler.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/post.h \
+ $(ACE_ROOT)/ace/ace_wchar.h \
+ $(ACE_ROOT)/ace/ace_wchar.inl \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS.h \
+ $(ACE_ROOT)/ace/OS_Dirent.h \
+ $(ACE_ROOT)/ace/OS_Export.h \
+ $(ACE_ROOT)/ace/OS_Errno.h \
+ $(ACE_ROOT)/ace/OS_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Retransmission.h RMCast_Module.h RMCast.h RMCast_Copy_On_Write.h \
+ RMCast_Worker.h RMCast_Worker.cpp RMCast_Worker.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Resend_Handler.i
-.obj/RMCast_Resend_Worker.o .obj/RMCast_Resend_Worker.so .shobj/RMCast_Resend_Worker.o .shobj/RMCast_Resend_Worker.so: RMCast_Resend_Worker.cpp \
- RMCast_Resend_Worker.h \
- $(ACE_ROOT)/ace/pre.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Copy_On_Write.h RMCast_Worker.h RMCast_Worker.i \
- RMCast_Worker.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Copy_On_Write.i RMCast_Copy_On_Write.cpp \
- RMCast_Resend_Worker.i RMCast_Module.h RMCast_Module.i
+.obj/RMCast_Resend_Worker.o .obj/RMCast_Resend_Worker.so .shobj/RMCast_Resend_Worker.o .shobj/RMCast_Resend_Worker.so: RMCast_Resend_Worker.cpp RMCast_Resend_Worker.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Copy_On_Write.h RMCast_Worker.h \
+ RMCast_Worker.cpp RMCast_Worker.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i RMCast_Module.h \
+ RMCast_Resend_Worker.i
.obj/RMCast_Retransmission.o .obj/RMCast_Retransmission.so .shobj/RMCast_Retransmission.o .shobj/RMCast_Retransmission.so: RMCast_Retransmission.cpp \
- RMCast_Retransmission.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Copy_On_Write.h RMCast_Worker.h \
- RMCast_Worker.i RMCast_Worker.cpp \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Copy_On_Write.i RMCast_Copy_On_Write.cpp \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- RMCast_Retransmission.i RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_Ack_Worker.h RMCast_Ack_Worker.i RMCast_Resend_Worker.h \
- RMCast_Resend_Worker.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ RMCast_Retransmission.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Copy_On_Write.h RMCast_Worker.h \
+ RMCast_Worker.cpp RMCast_Worker.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Proxy.h RMCast_Ack_Worker.h RMCast_Resend_Worker.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_Retransmission.i
.obj/RMCast_Sequencer.o .obj/RMCast_Sequencer.so .shobj/RMCast_Sequencer.o .shobj/RMCast_Sequencer.so: RMCast_Sequencer.cpp RMCast_Sequencer.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Module.h \
- RMCast.h $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- RMCast_Sequencer.i
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ RMCast_Sequencer.i
.obj/RMCast_Singleton_Factory.o .obj/RMCast_Singleton_Factory.so .shobj/RMCast_Singleton_Factory.o .shobj/RMCast_Singleton_Factory.so: RMCast_Singleton_Factory.cpp \
- RMCast_Singleton_Factory.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Module_Factory.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i RMCast_Singleton_Factory.i
+ RMCast_Singleton_Factory.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Module_Factory.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Singleton_Factory.i
.obj/RMCast_UDP_Event_Handler.o .obj/RMCast_UDP_Event_Handler.so .shobj/RMCast_UDP_Event_Handler.o .shobj/RMCast_UDP_Event_Handler.so: RMCast_UDP_Event_Handler.cpp \
- RMCast_UDP_Event_Handler.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Export.h \
- $(ACE_ROOT)/ace/post.h \
- $(ACE_ROOT)/ace/ace_wchar.h \
- $(ACE_ROOT)/ace/ace_wchar.inl \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/ACE_export.h \
- $(ACE_ROOT)/ace/OS.h \
- $(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/OS_String.h \
- $(ACE_ROOT)/ace/Basic_Types.h \
- $(ACE_ROOT)/ace/Basic_Types.i \
- $(ACE_ROOT)/ace/OS_String.inl \
- $(ACE_ROOT)/ace/OS_Memory.h \
- $(ACE_ROOT)/ace/OS_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i \
- $(ACE_ROOT)/ace/Event_Handler.i \
- RMCast_UDP_Event_Handler.i RMCast_IO_UDP.h RMCast_Module.h RMCast.h \
- RMCast.i RMCast_Module.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_UDP_Proxy.i RMCast_Module_Factory.h RMCast_Module_Factory.i
+ RMCast_UDP_Event_Handler.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/post.h \
+ $(ACE_ROOT)/ace/ace_wchar.h \
+ $(ACE_ROOT)/ace/ace_wchar.inl \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS.h \
+ $(ACE_ROOT)/ace/OS_Dirent.h \
+ $(ACE_ROOT)/ace/OS_Export.h \
+ $(ACE_ROOT)/ace/OS_Errno.h \
+ $(ACE_ROOT)/ace/OS_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_IO_UDP.h RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_UDP_Event_Handler.i
.obj/RMCast_UDP_Proxy.o .obj/RMCast_UDP_Proxy.so .shobj/RMCast_UDP_Proxy.o .shobj/RMCast_UDP_Proxy.so: RMCast_UDP_Proxy.cpp RMCast_UDP_Proxy.h \
- $(ACE_ROOT)/ace/pre.h RMCast_Proxy.h \
- RMCast_Module.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module.i RMCast_Proxy.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- RMCast_UDP_Proxy.i RMCast_IO_UDP.h \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_Module_Factory.h RMCast_Module_Factory.i \
- $(ACE_ROOT)/ace/Message_Block.h \
- $(ACE_ROOT)/ace/Message_Block.i \
- $(ACE_ROOT)/ace/Message_Block_T.h \
- $(ACE_ROOT)/ace/Message_Block_T.i \
- $(ACE_ROOT)/ace/Message_Block_T.cpp
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Proxy.h RMCast_Module.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/Addr.h \
+ RMCast_IO_UDP.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block_T.h \
+ $(ACE_ROOT)/ace/Message_Block_T.cpp \
+ $(ACE_ROOT)/ace/Message_Block_T.i \
+ RMCast_UDP_Proxy.i
.obj/RMCast_UDP_Reliable_Receiver.o .obj/RMCast_UDP_Reliable_Receiver.so .shobj/RMCast_UDP_Reliable_Receiver.o .shobj/RMCast_UDP_Reliable_Receiver.so: RMCast_UDP_Reliable_Receiver.cpp \
- RMCast_UDP_Reliable_Receiver.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Singleton_Factory.h RMCast_Module_Factory.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i RMCast_Singleton_Factory.i \
- RMCast_Reliable_Factory.h RMCast_Reliable_Factory.i RMCast_IO_UDP.h \
- RMCast_Module.h RMCast_Module.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_UDP_Proxy.i RMCast_UDP_Reliable_Receiver.i \
- RMCast_UDP_Event_Handler.h RMCast_UDP_Event_Handler.i
+ RMCast_UDP_Reliable_Receiver.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Singleton_Factory.h RMCast_Module_Factory.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_Reliable_Factory.h RMCast_IO_UDP.h \
+ RMCast_Module.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_UDP_Event_Handler.h RMCast_UDP_Reliable_Receiver.i
.obj/RMCast_UDP_Reliable_Sender.o .obj/RMCast_UDP_Reliable_Sender.so .shobj/RMCast_UDP_Reliable_Sender.o .shobj/RMCast_UDP_Reliable_Sender.so: RMCast_UDP_Reliable_Sender.cpp \
- RMCast_UDP_Reliable_Sender.h \
- $(ACE_ROOT)/ace/pre.h \
- RMCast_Singleton_Factory.h RMCast_Module_Factory.h RMCast.h \
- $(ACE_ROOT)/ace/OS.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/OS_String.h \
- $(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_Memory.inl \
- $(ACE_ROOT)/ace/OS_TLI.h \
- $(ACE_ROOT)/ace/OS_TLI.inl \
- $(ACE_ROOT)/ace/Time_Value.h \
- $(ACE_ROOT)/ace/Time_Value.inl \
- $(ACE_ROOT)/ace/Default_Constants.h \
- $(ACE_ROOT)/ace/Global_Macros.h \
- $(ACE_ROOT)/ace/Min_Max.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/OS.i RMCast_Export.h \
- RMCast.i RMCast_Module_Factory.i RMCast_Singleton_Factory.i \
- RMCast_IO_UDP.h RMCast_Module.h RMCast_Module.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
- $(ACE_ROOT)/ace/SOCK_Dgram.h \
- $(ACE_ROOT)/ace/SOCK.h \
- $(ACE_ROOT)/ace/Addr.h \
- $(ACE_ROOT)/ace/Addr.i \
- $(ACE_ROOT)/ace/IPC_SAP.h \
- $(ACE_ROOT)/ace/Flag_Manip.h \
- $(ACE_ROOT)/ace/Flag_Manip.i \
- $(ACE_ROOT)/ace/IPC_SAP.i \
- $(ACE_ROOT)/ace/SOCK.i \
- $(ACE_ROOT)/ace/INET_Addr.h \
- $(ACE_ROOT)/ace/Sock_Connect.h \
- $(ACE_ROOT)/ace/Sock_Connect.i \
- $(ACE_ROOT)/ace/INET_Addr.i \
- $(ACE_ROOT)/ace/SOCK_Dgram.i \
- $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
- $(ACE_ROOT)/ace/Hash_Map_Manager.h \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
- $(ACE_ROOT)/ace/Functor.h \
- $(ACE_ROOT)/ace/ACE.h \
- $(ACE_ROOT)/ace/Handle_Ops.h \
- $(ACE_ROOT)/ace/Handle_Ops.i \
- $(ACE_ROOT)/ace/Lib_Find.h \
- $(ACE_ROOT)/ace/Lib_Find.i \
- $(ACE_ROOT)/ace/Init_ACE.h \
- $(ACE_ROOT)/ace/Init_ACE.i \
- $(ACE_ROOT)/ace/ACE.i \
- $(ACE_ROOT)/ace/Functor.i \
- $(ACE_ROOT)/ace/Functor_T.h \
- $(ACE_ROOT)/ace/Functor_T.i \
- $(ACE_ROOT)/ace/Functor_T.cpp \
- $(ACE_ROOT)/ace/Log_Msg.h \
- $(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
- $(ACE_ROOT)/ace/Synch.h \
- $(ACE_ROOT)/ace/Synch.i \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread_Adapter.inl \
- $(ACE_ROOT)/ace/Thread.i \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.i \
- $(ACE_ROOT)/ace/Event_Handler.h \
- $(ACE_ROOT)/ace/Event_Handler.i \
- $(ACE_ROOT)/ace/Service_Object.i \
- $(ACE_ROOT)/ace/Signal.h \
- $(ACE_ROOT)/ace/Signal.i \
- $(ACE_ROOT)/ace/Unbounded_Queue.h \
- $(ACE_ROOT)/ace/Node.h \
- $(ACE_ROOT)/ace/Node.cpp \
- $(ACE_ROOT)/ace/Unbounded_Queue.inl \
- $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
- $(ACE_ROOT)/ace/Malloc_Base.h \
- $(ACE_ROOT)/ace/Unbounded_Set.h \
- $(ACE_ROOT)/ace/Unbounded_Set.inl \
- $(ACE_ROOT)/ace/Unbounded_Set.cpp \
- $(ACE_ROOT)/ace/SString.h \
- $(ACE_ROOT)/ace/String_Base.h \
- $(ACE_ROOT)/ace/String_Base_Const.h \
- $(ACE_ROOT)/ace/String_Base.i \
- $(ACE_ROOT)/ace/String_Base.cpp \
- $(ACE_ROOT)/ace/Malloc.h \
- $(ACE_ROOT)/ace/Malloc.i \
- $(ACE_ROOT)/ace/Malloc_T.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.h \
- $(ACE_ROOT)/ace/Malloc_Allocator.i \
- $(ACE_ROOT)/ace/Free_List.h \
- $(ACE_ROOT)/ace/Free_List.i \
- $(ACE_ROOT)/ace/Free_List.cpp \
- $(ACE_ROOT)/ace/Malloc_T.i \
- $(ACE_ROOT)/ace/Malloc_T.cpp \
- $(ACE_ROOT)/ace/Memory_Pool.h \
- $(ACE_ROOT)/ace/Mem_Map.h \
- $(ACE_ROOT)/ace/Mem_Map.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
- $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
- $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
- $(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Auto_Ptr.h \
- $(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- $(ACE_ROOT)/ace/SString.i \
- $(ACE_ROOT)/ace/Service_Config.i \
- $(ACE_ROOT)/ace/Reactor.h \
- $(ACE_ROOT)/ace/Handle_Set.h \
- $(ACE_ROOT)/ace/Handle_Set.i \
- $(ACE_ROOT)/ace/Timer_Queue.h \
- $(ACE_ROOT)/ace/Timer_Queue_T.h \
- $(ACE_ROOT)/ace/Test_and_Set.h \
- $(ACE_ROOT)/ace/Test_and_Set.i \
- $(ACE_ROOT)/ace/Test_and_Set.cpp \
- $(ACE_ROOT)/ace/Timer_Queue_T.i \
- $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
- $(ACE_ROOT)/ace/Reactor.i \
- $(ACE_ROOT)/ace/Reactor_Impl.h \
- $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- RMCast_IO_UDP.i RMCast_UDP_Proxy.h RMCast_Proxy.h RMCast_Proxy.i \
- RMCast_UDP_Proxy.i RMCast_Sequencer.h RMCast_Sequencer.i \
- RMCast_Retransmission.h RMCast_Copy_On_Write.h RMCast_Worker.h \
- RMCast_Worker.i RMCast_Worker.cpp RMCast_Copy_On_Write.i \
- RMCast_Copy_On_Write.cpp \
- $(ACE_ROOT)/ace/RB_Tree.h \
- $(ACE_ROOT)/ace/RB_Tree.i \
- $(ACE_ROOT)/ace/RB_Tree.cpp \
- RMCast_Retransmission.i RMCast_Membership.h \
- $(ACE_ROOT)/ace/Containers.h \
- $(ACE_ROOT)/ace/Containers.i \
- $(ACE_ROOT)/ace/Containers_T.h \
- $(ACE_ROOT)/ace/Array_Base.h \
- $(ACE_ROOT)/ace/Array_Base.inl \
- $(ACE_ROOT)/ace/Array_Base.cpp \
- $(ACE_ROOT)/ace/Containers_T.i \
- $(ACE_ROOT)/ace/Containers_T.cpp \
- RMCast_Membership.i RMCast_Fragment.h RMCast_Fragment.i RMCast_Fork.h \
- RMCast_Fork.i RMCast_UDP_Reliable_Sender.i RMCast_UDP_Event_Handler.h \
- RMCast_UDP_Event_Handler.i RMCast_Resend_Handler.h \
- RMCast_Resend_Handler.i
+ RMCast_UDP_Reliable_Sender.h \
+ $(ACE_ROOT)/ace/pre.h \
+ RMCast_Singleton_Factory.h RMCast_Module_Factory.h RMCast.h \
+ $(ACE_ROOT)/ace/OS.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_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/ACE_export.h \
+ $(ACE_ROOT)/ace/OS_Memory.h \
+ $(ACE_ROOT)/ace/OS_TLI.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
+ $(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Trace.h \
+ RMCast_Export.h RMCast_IO_UDP.h RMCast_Module.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.h \
+ $(ACE_ROOT)/ace/SOCK_Dgram.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/Flag_Manip.h \
+ $(ACE_ROOT)/ace/Flag_Manip.i \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/Sock_Connect.h \
+ $(ACE_ROOT)/ace/Sock_Connect.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram.i \
+ $(ACE_ROOT)/ace/SOCK_Dgram_Mcast.i \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \
+ $(ACE_ROOT)/ace/Functor.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/Handle_Ops.h \
+ $(ACE_ROOT)/ace/Handle_Ops.i \
+ $(ACE_ROOT)/ace/Lib_Find.h \
+ $(ACE_ROOT)/ace/Lib_Find.i \
+ $(ACE_ROOT)/ace/Init_ACE.h \
+ $(ACE_ROOT)/ace/Init_ACE.i \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Functor_T.h \
+ $(ACE_ROOT)/ace/Functor_T.cpp \
+ $(ACE_ROOT)/ace/Functor_T.i \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/DLL.h \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.h \
+ $(ACE_ROOT)/ace/Node.h \
+ $(ACE_ROOT)/ace/Node.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Unbounded_Queue.inl \
+ $(ACE_ROOT)/ace/Unbounded_Set.h \
+ $(ACE_ROOT)/ace/Unbounded_Set.cpp \
+ $(ACE_ROOT)/ace/Unbounded_Set.inl \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/String_Base.h \
+ $(ACE_ROOT)/ace/String_Base_Const.h \
+ $(ACE_ROOT)/ace/String_Base.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Malloc_Allocator.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Auto_Ptr.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp \
+ $(ACE_ROOT)/ace/Auto_Ptr.i \
+ $(ACE_ROOT)/ace/String_Base.i \
+ $(ACE_ROOT)/ace/XML_Svc_Conf.h \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Test_and_Set.h \
+ $(ACE_ROOT)/ace/Test_and_Set.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ RMCast_Sequencer.h RMCast_Retransmission.h RMCast_Copy_On_Write.h \
+ RMCast_Worker.h RMCast_Worker.cpp RMCast_Worker.i \
+ RMCast_Copy_On_Write.cpp RMCast_Copy_On_Write.i \
+ $(ACE_ROOT)/ace/RB_Tree.h \
+ $(ACE_ROOT)/ace/RB_Tree.cpp \
+ $(ACE_ROOT)/ace/RB_Tree.i \
+ RMCast_Membership.h \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Array_Base.h \
+ $(ACE_ROOT)/ace/Array_Base.cpp \
+ $(ACE_ROOT)/ace/Array_Base.inl \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ RMCast_Fragment.h RMCast_Fork.h RMCast_UDP_Event_Handler.h \
+ RMCast_Resend_Handler.h RMCast_UDP_Reliable_Sender.i
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
diff --git a/tests/DLL_Test.cpp b/tests/DLL_Test.cpp
index 87159629128..7a7cff7c154 100644
--- a/tests/DLL_Test.cpp
+++ b/tests/DLL_Test.cpp
@@ -17,10 +17,11 @@
// ============================================================================
#include "test_config.h"
-#include "DLL_Test.h"
#include "ace/DLL.h"
#include "ace/Auto_Ptr.h"
#include "ace/ACE.h"
+#include "ace/DLL_Manager.h"
+#include "DLL_Test.h"
ACE_RCSID(tests, DLL_Test, "$Id$")
@@ -39,17 +40,27 @@ ACE_RCSID(tests, DLL_Test, "$Id$")
// Declare the type of the symbol:
typedef Hello *(*Hello_Factory)(void);
-int
-ACE_TMAIN (int, ACE_TCHAR *[])
+int handle_test (ACE_DLL &dll)
{
- ACE_START_TEST (ACE_TEXT ("DLL_Test"));
-
-// Protection against this test being run on platforms not supporting Dlls.
-#if defined (ACE_WIN32) || defined (ACE_HAS_SVR4_DYNAMIC_LINKING) || \
- defined (__hpux)
-
- ACE_DLL dll;
+ // Test the get/set_handle methods.
+ ACE_DLL local_dll;
+
+ ACE_SHLIB_HANDLE handle = dll.get_handle (1);
+ if (handle != ACE_SHLIB_INVALID_HANDLE)
+ {
+ if (local_dll.set_handle (handle) != 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_TEXT ("Error setting handle.\n")),
+ -1);
+ return 0;
+ }
+ ACE_ERROR_RETURN ((LM_ERROR,
+ ACE_TEXT ("Error getting handle.\n")),
+ -1);
+}
+int basic_test (ACE_DLL &dll)
+{
#if defined (__KCC)
/* With KCC, turning on close-on-destruction will cause problems
when libKCC tries to call dtors. */
@@ -74,9 +85,7 @@ ACE_TMAIN (int, ACE_TCHAR *[])
// TC f = (Hello_Factory) dll.symbol ("get_hello");
void *foo;
- ACE_TCHAR *cdecl_str = ACE::ldname (ACE_TEXT ("get_hello"));
- foo = dll.symbol (cdecl_str);
- delete[] cdecl_str;
+ foo = dll.symbol (ACE_TEXT ("get_hello"));
// Cast the void* to long first.
long tmp = ACE_reinterpret_cast (long, foo);
@@ -103,13 +112,36 @@ ACE_TMAIN (int, ACE_TCHAR *[])
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Result for malloc_info(): %s\n"), malloc_str));
ACE_OS_Memory::free (malloc_str);
+ return 0;
+}
+
+int
+ACE_TMAIN (int, ACE_TCHAR *[])
+{
+ ACE_START_TEST (ACE_TEXT ("DLL_Test"));
+
+// Protection against this test being run on platforms not supporting Dlls.
+#if defined (ACE_WIN32) || defined (ACE_HAS_SVR4_DYNAMIC_LINKING) || \
+ defined (__hpux)
+
+ ACE_DLL dll;
+
+ int retval = 0;
+
+ retval += basic_test (dll);
+
+ retval += handle_test (dll);
+
+ // Call close here so that any errors make it into the log.
+ dll.close ();
+
#else
ACE_ERROR ((LM_INFO,
ACE_TEXT ("Dynamically Linkable Libraries not supported on this platform\n")));
#endif /* ACE_WIN32 || ACE_HAS_SVR4_DYNAMIC_LINKING || __hpux */
ACE_END_TEST;
- return 0;
+ return retval == 0 ? 0 : 1;
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
diff --git a/tests/DLL_Test.h b/tests/DLL_Test.h
index 25b68fe2a0f..229c869853d 100644
--- a/tests/DLL_Test.h
+++ b/tests/DLL_Test.h
@@ -12,11 +12,15 @@
#define ACE_TESTS_DLL_TEST_H
#include "ace/Log_Msg.h"
+#include "ace/Trace.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+#undef ACE_TRACE
+#define ACE_TRACE(X) ACE_TRACE_IMPL(X)
+
/**
* @class Hello
*
@@ -26,7 +30,10 @@ class Hello
{
public:
/// Destructor
- virtual ~Hello (void) {}
+ virtual ~Hello (void)
+ {
+ ACE_TRACE ("Hello::~Hello");
+ }
/**
* @name Methods invoked by the test
diff --git a/tests/Framework_Component_DLL.cpp b/tests/Framework_Component_DLL.cpp
index 8f29b6461a3..a2292b1d1c4 100644
--- a/tests/Framework_Component_DLL.cpp
+++ b/tests/Framework_Component_DLL.cpp
@@ -1,5 +1,4 @@
// -*- C++ -*-
-
#include "Framework_Component_DLL.h"
#include "ace/Service_Config.h"
#include "ace/OS.h"
@@ -7,8 +6,7 @@
ACE_RCSID (tests,
Framework_Component_DLL,
"$Id$")
-
-
+
Simple_Service::Simple_Service (void)
{
FRAMEWORK_COMPONENT_DLL_TRACE ("Simple_Service::Simple_Service");
@@ -20,10 +18,10 @@ Simple_Service::~Simple_Service (void)
}
const ACE_TCHAR *
-Simple_Service::dll_name (void)
+Simple_Service::name (void)
{
FRAMEWORK_COMPONENT_DLL_TRACE ("Simple_Service::dll_name");
- return 0;
+ return ACE_TEXT ("Simple_Service");
}
/***************************************************************************/
diff --git a/tests/Framework_Component_DLL.h b/tests/Framework_Component_DLL.h
index 4662fb4276e..61b4c21410b 100644
--- a/tests/Framework_Component_DLL.h
+++ b/tests/Framework_Component_DLL.h
@@ -20,8 +20,8 @@
#ifndef ACE_TESTS_FRAMEWORK_COMPONENT_DLL_H
#define ACE_TESTS_FRAMEWORK_COMPONENT_DLL_H
-// Turn on tracing for this library
-#define FRAMEWORK_COMPONENT_DLL_NTRACE 0
+// Turn off tracing for this library
+#define FRAMEWORK_COMPONENT_DLL_NTRACE 1
#include "Framework_Component_DLL_Export.h"
#include "ace/Log_Msg.h"
@@ -36,7 +36,9 @@ public:
virtual ~Simple_Service (void);
- virtual const ACE_TCHAR *dll_name (void);
+ //virtual const ACE_TCHAR *dll_name (void);
+
+ virtual const ACE_TCHAR *name (void);
};
@@ -54,6 +56,6 @@ public:
};
typedef ACE_DLL_Singleton_T < FWCT_DLL_Singleton_Adapter_T <Simple_Service>,
- ACE_SYNCH_MUTEX > SS_SINGLETON;
+ ACE_SYNCH_MUTEX > SS_SINGLETON;
#endif /* ACE_TESTS_FRAMEWORK_COMPONENT_TEST_H */
diff --git a/tests/Framework_Component_Test.cpp b/tests/Framework_Component_Test.cpp
index 7215edeb14d..f92935d8e18 100644
--- a/tests/Framework_Component_Test.cpp
+++ b/tests/Framework_Component_Test.cpp
@@ -18,17 +18,23 @@
//
// ============================================================================
-//#include "Framework_Component_DLL.h"
#include "ace/Service_Config.h"
#include "ace/ARGV.h"
#include "tests/test_config.h"
+#include "ace/DLL_Manager.h"
ACE_RCSID(tests, Framework_Component_Test, "$Id$")
int
-ACE_TMAIN (int, ACE_TCHAR *[])
+run_test (u_long unload_mask = 0)
{
- ACE_START_TEST (ACE_TEXT("Framework_Component_Test"));
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Running test with mask = %s|%s\n"),
+ ACE_BIT_ENABLED(unload_mask, ACE_DLL_Manager_Ex::PER_DLL) == 0
+ ? ACE_TEXT ("PER_PROCESS") : ACE_TEXT ("PER_DLL"),
+ ACE_BIT_ENABLED(unload_mask, ACE_DLL_Manager_Ex::LAZY) == 0
+ ? ACE_TEXT ("EAGER") : ACE_TEXT ("LAZY")));
+
+ ACE_DLL_Manager::instance ()->unload_strategy (unload_mask);
// Now, let the ACE Service Configurator framework load our service from a
// dll, which contains a singleton.
@@ -43,13 +49,16 @@ ACE_TMAIN (int, ACE_TCHAR *[])
// Load it, should load a dll.
ACE_Service_Config::open (args.argc (), args.argv ());
+ // And unload the first one, should *not* unload the dll.
+ ACE_Service_Config::process_directive (ACE_TEXT ("remove Server_1"));
+
// Now load another service from the same library.
ACE_Service_Config::process_directive
(ACE_TEXT ("dynamic Server_2 Service_Object * "
"Framework_Component_DLL:_make_Server_2() 'xxx' "));
// And unload the first one, should *not* unload the dll.
- ACE_Service_Config::process_directive (ACE_TEXT ("remove Server_1"));
+ //ACE_Service_Config::process_directive (ACE_TEXT ("remove Server_1"));
// And unload the second service. Since the ACE_DLL_Handle will no longer
// have any references, the ACE_DLL_Manager will apply it's current unloading
@@ -58,6 +67,31 @@ ACE_TMAIN (int, ACE_TCHAR *[])
// dll loaded until program termination.
ACE_Service_Config::process_directive (ACE_TEXT ("remove Server_2"));
- ACE_END_TEST;
+ // Force unloading so we'll be ready for the next test.
+ ACE_DLL_Manager::instance ()->unload_strategy (ACE_DLL_Manager_Ex::DEFAULT);
+
return 0;
}
+
+int
+ACE_TMAIN (int, ACE_TCHAR *[])
+{
+ ACE_START_TEST (ACE_TEXT("Framework_Component_Test"));
+
+ int retval = 0;
+
+ // Use defaults, i.e., per process, eager unloading.
+ retval += run_test ();
+
+ // Per process, lazy unloading
+ retval += run_test (ACE_DLL_Manager_Ex::LAZY);
+
+ // Per dll, eager unloading
+ retval += run_test (ACE_DLL_Manager_Ex::PER_DLL);
+
+ // Per dll, lazy unloading.
+ retval += run_test (ACE_DLL_Manager_Ex::PER_DLL | ACE_DLL_Manager_Ex::LAZY);
+
+ ACE_END_TEST;
+ return retval == 0 ? 0 : -1;
+}
diff --git a/tests/Logging_Strategy_Test.cpp b/tests/Logging_Strategy_Test.cpp
index 90cdb112936..3cf371e4764 100644
--- a/tests/Logging_Strategy_Test.cpp
+++ b/tests/Logging_Strategy_Test.cpp
@@ -449,7 +449,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv [])
// though, and you may activate the logging strategy as described in
// the non-DLL section below under DLL environments as well.
-#if !defined (ACE_AS_STATIC_LIBS) && \
+#if !defined (ACE_HAS_STATIC_LIBS) && \
(defined (ACE_WIN32) || defined (ACE_HAS_SVR4_DYNAMIC_LINKING) || \
defined (__hpux))
// Platform support DLLs, and not configured to link statically
@@ -485,7 +485,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv [])
((LM_ERROR,
"Error initializing the ACE_Logging_Strategy.\n"),
1);
-#endif /* !ACE_AS_STATIC_LIBS && (ACE_WIN32 ||
+#endif /* !ACE_HAS_STATIC_LIBS && (ACE_WIN32 ||
ACE_HAS_SVR4_DYNAMIC_LINKING || __hpux) */
// launch a new Thread
@@ -506,6 +506,15 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv [])
// Wait for the thread to exit before we exit.
ACE_Thread_Manager::instance ()->wait ();
+
+#if !defined (ACE_HAS_STATIC_LIBS) && \
+ (defined (ACE_WIN32) || defined (ACE_HAS_SVR4_DYNAMIC_LINKING) || \
+ defined (__hpux))
+ // This insures that all messages get written to the log.
+ ACE_Service_Config::process_directive (ACE_TEXT ("remove Logger"));
+#endif /* !ACE_HAS_STATIC_LIBS && (ACE_WIN32 || ACE_HAS_SVR4_DYNAMIC_LINKING
+ || __hpux) */
+
ACE_END_TEST;
return 0;
}
diff --git a/tests/Makefile b/tests/Makefile
index 822aa831d3d..8355fa24fa5 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -10646,51 +10646,29 @@ realclean: clean
$(ACE_ROOT)/ace/ARGV.h
.obj/Framework_Component_Test.o .obj/Framework_Component_Test.so .shobj/Framework_Component_Test.o .shobj/Framework_Component_Test.so: Framework_Component_Test.cpp \
- Framework_Component_DLL.h Framework_Component_DLL_Export.h \
+ $(ACE_ROOT)/ace/Service_Config.h \
$(ACE_ROOT)/ace/pre.h \
$(ACE_ROOT)/ace/post.h \
$(ACE_ROOT)/ace/ace_wchar.h \
$(ACE_ROOT)/ace/ace_wchar.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/Basic_Types.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
$(ACE_ROOT)/ace/ACE_export.h \
- $(ACE_ROOT)/ace/OS_Errno.h \
- $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
- $(ACE_ROOT)/ace/streams.h \
- $(ACE_ROOT)/ace/Synch_T.h \
- $(ACE_ROOT)/ace/Synch.h \
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/OS_Dirent.h \
+ $(ACE_ROOT)/ace/OS_Export.h \
+ $(ACE_ROOT)/ace/OS_Errno.h \
$(ACE_ROOT)/ace/OS_String.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
$(ACE_ROOT)/ace/OS_Memory.h \
$(ACE_ROOT)/ace/OS_TLI.h \
$(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/Default_Constants.h \
+ $(ACE_ROOT)/ace/Global_Macros.h \
$(ACE_ROOT)/ace/Min_Max.h \
+ $(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Trace.h \
- $(ACE_ROOT)/ace/Synch_T.cpp \
- $(ACE_ROOT)/ace/Thread.h \
- $(ACE_ROOT)/ace/Thread_Adapter.h \
- $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
- $(ACE_ROOT)/ace/Synch_T.i \
- $(ACE_ROOT)/ace/Singleton.h \
- $(ACE_ROOT)/ace/Singleton.cpp \
- $(ACE_ROOT)/ace/Singleton.i \
- $(ACE_ROOT)/ace/Object_Manager.h \
- $(ACE_ROOT)/ace/Managed_Object.h \
- $(ACE_ROOT)/ace/Managed_Object.cpp \
- $(ACE_ROOT)/ace/Managed_Object.i \
- $(ACE_ROOT)/ace/Framework_Component.h \
- $(ACE_ROOT)/ace/Framework_Component_T.h \
- $(ACE_ROOT)/ace/Framework_Component_T.cpp \
- $(ACE_ROOT)/ace/Framework_Component_T.inl \
- $(ACE_ROOT)/ace/Service_Config.h \
- $(ACE_ROOT)/ace/Service_Types.h \
- $(ACE_ROOT)/ace/Service_Object.h \
- $(ACE_ROOT)/ace/Shared_Object.h \
$(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
$(ACE_ROOT)/ace/Event_Handler.h \
$(ACE_ROOT)/ace/DLL.h \
@@ -10706,6 +10684,16 @@ realclean: clean
$(ACE_ROOT)/ace/Sock_Connect.h \
$(ACE_ROOT)/ace/Sock_Connect.i \
$(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread_Adapter.h \
+ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \
+ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Synch_T.i \
$(ACE_ROOT)/ace/Signal.h \
$(ACE_ROOT)/ace/Unbounded_Queue.h \
$(ACE_ROOT)/ace/Node.h \
@@ -10748,6 +10736,18 @@ realclean: clean
$(ACE_ROOT)/ace/Timer_Queue_T.cpp \
$(ACE_ROOT)/ace/Timer_Queue_T.i \
$(ACE_ROOT)/ace/ARGV.h \
- test_config.h
+ test_config.h \
+ $(ACE_ROOT)/ace/Singleton.h \
+ $(ACE_ROOT)/ace/Singleton.cpp \
+ $(ACE_ROOT)/ace/Singleton.i \
+ $(ACE_ROOT)/ace/Object_Manager.h \
+ $(ACE_ROOT)/ace/Managed_Object.h \
+ $(ACE_ROOT)/ace/Managed_Object.cpp \
+ $(ACE_ROOT)/ace/Managed_Object.i \
+ $(ACE_ROOT)/ace/Framework_Component.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.h \
+ $(ACE_ROOT)/ace/Framework_Component_T.cpp \
+ $(ACE_ROOT)/ace/Framework_Component_T.inl \
+ $(ACE_ROOT)/ace/DLL_Manager.h
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
diff --git a/tests/Makefile.Framework_Component_DLL b/tests/Makefile.Framework_Component_DLL
index d0325cae936..cf76f0b5818 100644
--- a/tests/Makefile.Framework_Component_DLL
+++ b/tests/Makefile.Framework_Component_DLL
@@ -11,8 +11,7 @@
LIB = libFramework_Component_DLL.a
SHLIB = libFramework_Component_DLL.$(SOEXT)
FILES = Framework_Component_DLL
-LSRC = $(addsuffix .cpp,$(FILES))
-
+LSRC = $(addsuffix .cpp,$(FILES))
LIBS += $(ACELIB)
BUILD = $(VLIB) $(VSHLIB)