summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-29 12:13:10 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-29 12:13:10 +0000
commitc58830a8ae5bb549b8ea15b31cf16403eb03c363 (patch)
treec25c98634a7145d2dd10e7379ce05c407d5f9860
parent59de0d81f1793f5d033d73af6d3c402b6185388c (diff)
downloadATCD-c58830a8ae5bb549b8ea15b31cf16403eb03c363.tar.gz
Integrated TP_Reactor
-rw-r--r--ace/Reactor.cpp33
-rw-r--r--ace/TP_Reactor.cpp206
-rw-r--r--ace/TP_Reactor.h156
-rw-r--r--ace/TP_Reactor.i3
-rw-r--r--ace/ace_ce_dll.dsp15228
-rw-r--r--ace/ace_dll.dsp23
6 files changed, 14382 insertions, 1267 deletions
diff --git a/ace/Reactor.cpp b/ace/Reactor.cpp
index eff03e4ebdc..798892ef5e8 100644
--- a/ace/Reactor.cpp
+++ b/ace/Reactor.cpp
@@ -10,6 +10,7 @@
# include "ace/Msg_WFMO_Reactor.h"
#endif /* !ACE_HAS_WINCE */
#include "ace/Select_Reactor.h"
+#include "ace/TP_Reactor.h"
#include "ace/Object_Manager.h"
#if !defined (__ACE_INLINE__)
@@ -29,22 +30,22 @@ ACE_Reactor::ACE_Reactor (ACE_Reactor_Impl *impl,
if (this->implementation () == 0)
{
-#if !defined (ACE_WIN32) || !defined (ACE_HAS_WINSOCK2) || (ACE_HAS_WINSOCK2 == 0) || defined (ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL)
- ACE_NEW (impl,
- ACE_Select_Reactor);
-#elif defined (ACE_USE_MSG_WFMO_REACTOR_FOR_REACTOR_IMPL)
- // We are on Win32 and we have winsock and
- // ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL is not defined.
- ACE_NEW (impl,
- ACE_Msg_WFMO_Reactor);
-#else
- ACE_NEW (impl,
- ACE_WFMO_Reactor);
-#endif /* !defined (ACE_WIN32)
- || !defined (ACE_HAS_WINSOCK2)
- || (ACE_HAS_WINSOCK2 == 0)
- || defined (ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL) */
-
+#if !defined (ACE_WIN32) \
+ || !defined (ACE_HAS_WINSOCK2) || (ACE_HAS_WINSOCK2 == 0) \
+ || defined (ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL) \
+ || defined (ACE_USE_TP_REACTOR_FOR_REACTOR_IMPL)
+ #if defined (ACE_USE_TP_REACTOR_FOR_REACTOR_IMPL)
+ ACE_NEW (impl, ACE_TP_Reactor);
+ #else
+ ACE_NEW (impl, ACE_Select_Reactor);
+ #endif /* ACE_USE_TP_REACTOR_FOR_REACTOR_IMPL */
+#else /* We are on Win32 and we have winsock and ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL is not defined */
+ #if defined (ACE_USE_MSG_WFMO_REACTOR_FOR_REACTOR_IMPL)
+ ACE_NEW (impl, ACE_Msg_WFMO_Reactor);
+ #else
+ ACE_NEW (impl, ACE_WFMO_Reactor);
+ #endif /* ACE_USE_MSG_WFMO_REACTOR_FOR_REACTOR_IMPL */
+#endif /* !defined (ACE_WIN32) || !defined (ACE_HAS_WINSOCK2) || (ACE_HAS_WINSOCK2 == 0) || defined (ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL) */
this->implementation (impl);
this->delete_implementation_ = 1;
}
diff --git a/ace/TP_Reactor.cpp b/ace/TP_Reactor.cpp
new file mode 100644
index 00000000000..aa4c00cc9f6
--- /dev/null
+++ b/ace/TP_Reactor.cpp
@@ -0,0 +1,206 @@
+// $Id$
+
+#define ACE_BUILD_DLL
+
+#include "ace/TP_Reactor.h"
+#include "ace/Reactor.h"
+
+#if !defined (__ACE_INLINE__)
+#include "ace/TP_Reactor.i"
+#endif /* __ACE_INLINE__ */
+
+ACE_ALLOC_HOOK_DEFINE (ACE_TP_Reactor)
+
+ACE_TP_Reactor::ACE_TP_Reactor (ACE_Sig_Handler *sh,
+ ACE_Timer_Queue *tq)
+ : ACE_Select_Reactor (sh, tq)
+{
+ ACE_TRACE ("ACE_TP_Reactor::ACE_TP_Reactor");
+ this->supress_notify_renew (1);
+}
+
+ACE_TP_Reactor::ACE_TP_Reactor (size_t size,
+ int rs,
+ ACE_Sig_Handler *sh,
+ ACE_Timer_Queue *tq)
+ : ACE_Select_Reactor (size, rs, sh, tq)
+{
+ ACE_TRACE ("ACE_TP_Reactor::ACE_TP_Reactor");
+ this->supress_notify_renew (1);
+}
+
+// Dispatches a single event handler
+int
+ACE_TP_Reactor::notify_handle (ACE_EH_Dispatch_Info &dispatch_info)
+{
+ ACE_TRACE ("ACE_TP_Reactor::notify_handle");
+
+ ACE_HANDLE handle = dispatch_info.handle_;
+ ACE_Event_Handler *event_handler = dispatch_info.event_handler_;
+ ACE_Reactor_Mask mask = dispatch_info.mask_;
+ ACE_EH_PTMF callback = dispatch_info.callback_;
+
+ // Check for removed handlers.
+ if (event_handler == 0)
+ return -1;
+
+ // Upcall
+ int status = (event_handler->*callback) (handle);
+
+ // If negative, remove from Reactor
+ if (status < 0)
+ return this->remove_handler (handle, mask);
+
+ // If positive, reschedule in Reactor
+ else if (status > 0)
+ this->ready_ops (handle, mask, ACE_Reactor::SET_MASK);
+
+ // assert (status >= 0);
+ // resume in Reactor
+ return this->resume_handler (handle);
+}
+
+// Overwrites ACE_Select_Reactor::dispatch_io_set() to *not* dispatch
+// any event handlers. The information of one activated event handler
+// is stored away, so that the event handler can be dispatch later.
+int
+ACE_TP_Reactor::dispatch_io_set (int number_of_active_handles,
+ int& number_dispatched,
+ int mask,
+ ACE_Handle_Set& dispatch_mask,
+ ACE_Handle_Set& ready_mask,
+ ACE_EH_PTMF callback)
+{
+ ACE_HANDLE handle;
+
+ ACE_Handle_Set_Iterator handle_iter (dispatch_mask);
+
+ while ((handle = handle_iter ()) != ACE_INVALID_HANDLE
+ && number_dispatched < number_of_active_handles
+ && this->state_changed_ == 0)
+ {
+ // ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("ACE_TP_Reactor::dispatching\n")));
+ number_dispatched++;
+
+ // Remember this info
+ this->dispatch_info_.set (handle,
+ this->handler_rep_.find (handle),
+ mask,
+ callback);
+
+ // One is enough
+ break;
+ }
+
+ if (number_dispatched > 0 && this->state_changed_)
+ {
+ return -1;
+ }
+
+ return 0;
+}
+
+int
+ACE_TP_Reactor::handle_events (ACE_Time_Value *max_wait_time)
+{
+ ACE_TRACE ("ACE_TP_Reactor::handle_events");
+
+ // Stash the current time -- the destructor of this object will
+ // automatically compute how much time elpased since this method was
+ // called.
+ ACE_Countdown_Time countdown (max_wait_time);
+
+ // The order of these events is very subtle, modify with care.
+
+ // Try to grab the lock. If someone if already there, don't wake
+ // them up, just queue up in the thread pool.
+ int result = 0;
+ ACE_MT (result = this->token_.acquire_read (&ACE_TP_Reactor::no_op_sleep_hook));
+ if (result == -1)
+ return -1;
+
+ // We got the lock, lets handle some events. Note: this method will
+ // *not* dispatch any handlers. It will dispatch timeouts and
+ // signals.
+ result = this->handle_events_i (max_wait_time);
+ if (result == -1)
+ {
+ ACE_MT (this->token_.release ());
+ return -1;
+ }
+
+ // If there is any event handler that is ready to be dispatched, the
+ // dispatch information is recorded in this->dispatch_info_.
+ ACE_EH_Dispatch_Info dispatch_info;
+ if (this->dispatch_info_.dispatch ())
+ {
+ // Copy dispatch_info_ to the stack, as other threads can change
+ // dispatch_info_ after we release the lock.
+ dispatch_info = this->dispatch_info_;
+
+ // Reset dispatch_info_ so that we don't trip over it again.
+ this->dispatch_info_.reset ();
+
+ // Suspend the handler so that other thread don't start
+ // dispatching it.
+ result = this->suspend_i (dispatch_info.handle_);
+ if (result == -1)
+ {
+ ACE_MT (this->token_.release ());
+ return -1;
+ }
+ }
+
+ // Release the lock. Others threads can start waiting.
+ ACE_MT (this->token_.release ());
+
+ // If there was an event handler ready, dispatch it.
+ if (dispatch_info.dispatch ())
+ return this->notify_handle (dispatch_info);
+ else
+ return result;
+}
+
+void
+ACE_TP_Reactor::no_op_sleep_hook (void *)
+{
+}
+
+
+ACE_EH_Dispatch_Info::ACE_EH_Dispatch_Info (void)
+{
+ this->reset ();
+}
+
+void
+ACE_EH_Dispatch_Info::set (ACE_HANDLE handle,
+ ACE_Event_Handler *event_handler,
+ ACE_Reactor_Mask mask,
+ ACE_EH_PTMF callback)
+{
+ this->dispatch_ = 1;
+
+ this->handle_ = handle;
+ this->event_handler_ = event_handler;
+ this->mask_ = mask;
+ this->callback_ = callback;
+}
+
+void
+ACE_EH_Dispatch_Info::reset (void)
+{
+ this->dispatch_ = 0;
+
+ this->handle_ = ACE_INVALID_HANDLE;
+ this->event_handler_ = 0;
+ this->mask_ = ACE_Event_Handler::NULL_MASK;
+ this->callback_ = 0;
+}
+
+int
+ACE_EH_Dispatch_Info::dispatch (void) const
+{
+ return this->dispatch_;
+}
+
+
diff --git a/ace/TP_Reactor.h b/ace/TP_Reactor.h
new file mode 100644
index 00000000000..11d02955290
--- /dev/null
+++ b/ace/TP_Reactor.h
@@ -0,0 +1,156 @@
+/* -*- C++ -*- */
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// ace
+//
+// = FILENAME
+// TP_Reactor.h
+//
+// = AUTHOR
+// Irfan Pyarali
+//
+// ============================================================================
+
+#if !defined (ACE_TP_REACTOR_H)
+#define ACE_TP_REACTOR_H
+
+#include "ace/Select_Reactor.h"
+
+class ACE_Export ACE_EH_Dispatch_Info
+{
+ // = TITLE
+ //
+ // This structure contains information of the activated event
+ // handler.
+public:
+
+ ACE_EH_Dispatch_Info (void);
+
+ void set (ACE_HANDLE handle,
+ ACE_Event_Handler *event_handler,
+ ACE_Reactor_Mask mask,
+ ACE_EH_PTMF callback);
+
+ void reset (void);
+
+ int dispatch (void) const;
+
+ ACE_HANDLE handle_;
+ ACE_Event_Handler *event_handler_;
+ ACE_Reactor_Mask mask_;
+ ACE_EH_PTMF callback_;
+
+ int dispatch_;
+};
+
+class ACE_Export ACE_TP_Reactor : public ACE_Select_Reactor
+{
+ // = TITLE
+ //
+ // Specialization of Select Reactor to support thread-pool based
+ // event dispatching.
+ //
+ // = DESCRIPTION
+ //
+ // One of the short comings of the Select_Reactor in ACE is that
+ // it did not support a thread pool based event dispatching
+ // model, similar to the one in WFMO_Reactor. In
+ // Select_Reactor, only thread can be blocked in handle_events()
+ // at any given time.
+ //
+ // A new Reactor has been added to ACE that removes this
+ // short-coming. TP_Reactor is a specialization of Select
+ // Reactor to support thread-pool based event dispatching. This
+ // Reactor takes advantage of the fact that events reported by
+ // select() are persistent if not acted upon immediately. It
+ // works by remembering the event handler that just got
+ // activated, releasing the internal lock (so that some other
+ // thread can start waiting in the event loop) and then
+ // dispatching the event handler outside the context of the
+ // Reactor lock.
+ //
+ // This Reactor is best suited for situations when the callbacks
+ // to event handlers can take arbitrarily long and/or a number
+ // of threads are available to run the event loops.
+ //
+ // Note that callback code in Event Handlers
+ // (e.g. Event_Handler::handle_input) does not have to be
+ // modified or made thread-safe for this Reactor. This is
+ // because an activated Event Handler is suspended in the
+ // Reactor before the upcall is made and resumed after the
+ // upcall completes. Therefore, one Event Handler cannot be
+ // called by multiple threads simultaneously.
+public:
+
+ // = Initialization and termination methods.
+
+ ACE_TP_Reactor (ACE_Sig_Handler * = 0,
+ ACE_Timer_Queue * = 0);
+ // Initialize <ACE_TP_Reactor> with the default size.
+
+ ACE_TP_Reactor (size_t size,
+ int restart = 0,
+ ACE_Sig_Handler * = 0,
+ ACE_Timer_Queue * = 0);
+ // Initialize <ACE_TP_Reactor> with size <size>.
+
+ // = Event loop drivers.
+
+ virtual int handle_events (ACE_Time_Value *max_wait_time = 0);
+ // This event loop driver that blocks for <max_wait_time> before
+ // returning. It will return earlier if timer events, I/O events,
+ // or signal events occur. Note that <max_wait_time> can be 0, in
+ // which case this method blocks indefinitely until events occur.
+ //
+ // <max_wait_time> is decremented to reflect how much time this call
+ // took. For instance, if a time value of 3 seconds is passed to
+ // handle_events and an event occurs after 2 seconds,
+ // <max_wait_time> will equal 1 second. This can be used if an
+ // application wishes to handle events for some fixed amount of
+ // time.
+ //
+ // Returns the total number of <ACE_Event_Handler>s that were
+ // dispatched, 0 if the <max_wait_time> elapsed without dispatching
+ // any handlers, or -1 if something goes wrong.
+
+ static void no_op_sleep_hook (void *);
+ // Called from handle events
+
+ ACE_ALLOC_HOOK_DECLARE;
+ // Declare the dynamic allocation hooks.
+
+protected:
+ // = Internal methods that do the actual work.
+
+ virtual int dispatch_io_set (int number_of_active_handles,
+ int& number_dispatched,
+ int mask,
+ ACE_Handle_Set& dispatch_mask,
+ ACE_Handle_Set& ready_mask,
+ ACE_EH_PTMF callback);
+ // Overwrites ACE_Select_Reactor::dispatch_io_set() to *not*
+ // dispatch any event handlers. The information of one activated
+ // event handler is stored away, so that the event handler can be
+ // dispatch later.
+
+ virtual int notify_handle (ACE_EH_Dispatch_Info &dispatch_info);
+ // Notify the appropriate <callback> in the context of the <eh>
+ // associated with <handle> that a particular event has occurred.
+
+ ACE_EH_Dispatch_Info dispatch_info_;
+ // Dispatch information of the activated event handler
+
+private:
+ ACE_TP_Reactor (const ACE_TP_Reactor &);
+ ACE_TP_Reactor &operator = (const ACE_TP_Reactor &);
+ // Deny access since member-wise won't work...
+};
+
+#if defined (__ACE_INLINE__)
+#include "ace/TP_Reactor.i"
+#endif /* __ACE_INLINE__ */
+
+#endif /* ACE_TP_REACTOR_H */
diff --git a/ace/TP_Reactor.i b/ace/TP_Reactor.i
new file mode 100644
index 00000000000..f4f84bd4f2e
--- /dev/null
+++ b/ace/TP_Reactor.i
@@ -0,0 +1,3 @@
+/* -*- C++ -*- */
+// $Id$
+
diff --git a/ace/ace_ce_dll.dsp b/ace/ace_ce_dll.dsp
index d834537404a..cb805a6c8e6 100644
--- a/ace/ace_ce_dll.dsp
+++ b/ace/ace_ce_dll.dsp
@@ -254,6 +254,92 @@ SOURCE=.\ACE.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_ACE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_ACE_C=\
@@ -344,6 +430,92 @@ DEP_CPP_ACE_C=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_ACE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_ACE_C=\
@@ -357,6 +529,7 @@ DEP_CPP_ACE_C=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -383,6 +556,7 @@ DEP_CPP_ACE_C=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -432,6 +606,92 @@ DEP_CPP_ACE_C=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_ACE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_ACE_C=\
@@ -445,6 +705,7 @@ DEP_CPP_ACE_C=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -471,6 +732,7 @@ DEP_CPP_ACE_C=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -527,6 +789,116 @@ SOURCE=.\Activation_Queue.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_ACTIV=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Activation_Queue.h"\
+ ".\Activation_Queue.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Method_Object.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_ACTIV=\
@@ -641,6 +1013,116 @@ DEP_CPP_ACTIV=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_ACTIV=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Activation_Queue.h"\
+ ".\Activation_Queue.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Method_Object.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_ACTIV=\
@@ -654,6 +1136,7 @@ DEP_CPP_ACTIV=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -679,6 +1162,7 @@ DEP_CPP_ACTIV=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -691,9 +1175,11 @@ DEP_CPP_ACTIV=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Method_Object.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
@@ -751,6 +1237,116 @@ DEP_CPP_ACTIV=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_ACTIV=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Activation_Queue.h"\
+ ".\Activation_Queue.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Method_Object.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_ACTIV=\
@@ -764,6 +1360,7 @@ DEP_CPP_ACTIV=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -789,6 +1386,7 @@ DEP_CPP_ACTIV=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -801,9 +1399,11 @@ DEP_CPP_ACTIV=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Method_Object.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
@@ -868,6 +1468,43 @@ SOURCE=.\Addr.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_ADDR_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_ADDR_=\
@@ -909,6 +1546,43 @@ DEP_CPP_ADDR_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_ADDR_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_ADDR_=\
@@ -916,12 +1590,137 @@ DEP_CPP_ADDR_=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_ADDR_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_ADDR_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\ARGV.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_ARGV_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -942,6 +1741,7 @@ DEP_CPP_ADDR_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -977,21 +1777,20 @@ DEP_CPP_ADDR_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_ADDR_=\
+DEP_CPP_ARGV_=\
".\ACE.h"\
".\ACE.i"\
- ".\Addr.h"\
- ".\Addr.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -1012,6 +1811,7 @@ DEP_CPP_ADDR_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -1047,16 +1847,7 @@ DEP_CPP_ADDR_=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\ARGV.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_ARGV_=\
".\ACE.h"\
@@ -1126,8 +1917,6 @@ DEP_CPP_ARGV_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_ARGV_=\
@@ -1141,6 +1930,7 @@ DEP_CPP_ARGV_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -1161,6 +1951,7 @@ DEP_CPP_ARGV_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -1198,6 +1989,74 @@ DEP_CPP_ARGV_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_ARGV_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_ARGV_=\
@@ -1211,6 +2070,7 @@ DEP_CPP_ARGV_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -1231,6 +2091,7 @@ DEP_CPP_ARGV_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -1275,6 +2136,43 @@ SOURCE=..\ace/Array.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_ARRAY=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_ARRAY=\
@@ -1316,6 +2214,43 @@ DEP_CPP_ARRAY=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_ARRAY=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_ARRAY=\
@@ -1323,12 +2258,139 @@ DEP_CPP_ARRAY=\
".\ACE.i"\
".\Array.h"\
".\Array.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_ARRAY=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_ARRAY=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Asynch_IO.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_ASYNC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -1341,7 +2403,13 @@ DEP_CPP_ARRAY=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1349,6 +2417,7 @@ DEP_CPP_ARRAY=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -1359,10 +2428,23 @@ DEP_CPP_ARRAY=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -1372,6 +2454,7 @@ DEP_CPP_ARRAY=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -1380,25 +2463,41 @@ DEP_CPP_ARRAY=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_ARRAY=\
+DEP_CPP_ASYNC=\
".\ACE.h"\
".\ACE.i"\
- ".\Array.h"\
- ".\Array.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -1411,7 +2510,13 @@ DEP_CPP_ARRAY=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1419,6 +2524,7 @@ DEP_CPP_ARRAY=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -1429,10 +2535,23 @@ DEP_CPP_ARRAY=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -1442,6 +2561,7 @@ DEP_CPP_ARRAY=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -1450,20 +2570,26 @@ DEP_CPP_ARRAY=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Asynch_IO.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_ASYNC=\
".\ACE.h"\
@@ -1570,8 +2696,6 @@ DEP_CPP_ASYNC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_ASYNC=\
@@ -1587,6 +2711,7 @@ DEP_CPP_ASYNC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -1613,6 +2738,7 @@ DEP_CPP_ASYNC=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -1679,6 +2805,111 @@ DEP_CPP_ASYNC=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_ASYNC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_ASYNC=\
@@ -1694,6 +2925,7 @@ DEP_CPP_ASYNC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -1720,6 +2952,7 @@ DEP_CPP_ASYNC=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -1793,6 +3026,41 @@ SOURCE=.\Basic_Types.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_BASIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_BASIC=\
@@ -1832,53 +3100,194 @@ DEP_CPP_BASIC=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_BASIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_BASIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_BASIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_BASIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Dump.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_DUMP_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
+ ".\Dump.h"\
+ ".\Dump_T.cpp"\
+ ".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -1898,11 +3307,9 @@ DEP_CPP_BASIC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_BASIC=\
+DEP_CPP_DUMP_=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -1911,42 +3318,30 @@ DEP_CPP_BASIC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
+ ".\Dump.h"\
+ ".\Dump_T.cpp"\
+ ".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -1966,16 +3361,7 @@ DEP_CPP_BASIC=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Dump.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_DUMP_=\
".\ACE.h"\
@@ -2029,8 +3415,6 @@ DEP_CPP_DUMP_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_DUMP_=\
@@ -2042,45 +3426,30 @@ DEP_CPP_DUMP_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Dump.h"\
".\Dump_T.cpp"\
".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -2102,6 +3471,58 @@ DEP_CPP_DUMP_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_DUMP_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dump.h"\
+ ".\Dump_T.cpp"\
+ ".\Dump_T.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_DUMP_=\
@@ -2113,45 +3534,30 @@ DEP_CPP_DUMP_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Dump.h"\
".\Dump_T.cpp"\
".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -2180,6 +3586,43 @@ SOURCE=.\Dynamic.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_DYNAM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_DYNAM=\
@@ -2221,17 +3664,179 @@ DEP_CPP_DYNAM=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_DYNAM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_DYNAM=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_DYNAM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_DYNAM=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Event_Handler.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_EVENT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -2239,8 +3844,6 @@ DEP_CPP_DYNAM=\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
- ".\Dynamic.h"\
- ".\Dynamic.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -2254,6 +3857,7 @@ DEP_CPP_DYNAM=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -2264,6 +3868,8 @@ DEP_CPP_DYNAM=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -2289,11 +3895,9 @@ DEP_CPP_DYNAM=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_DYNAM=\
+DEP_CPP_EVENT=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -2302,6 +3906,7 @@ DEP_CPP_DYNAM=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -2309,8 +3914,6 @@ DEP_CPP_DYNAM=\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
- ".\Dynamic.h"\
- ".\Dynamic.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -2324,6 +3927,7 @@ DEP_CPP_DYNAM=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -2334,6 +3938,8 @@ DEP_CPP_DYNAM=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -2359,16 +3965,7 @@ DEP_CPP_DYNAM=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Event_Handler.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_EVENT=\
".\ACE.h"\
@@ -2438,8 +4035,6 @@ DEP_CPP_EVENT=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_EVENT=\
@@ -2451,6 +4046,7 @@ DEP_CPP_EVENT=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -2471,6 +4067,7 @@ DEP_CPP_EVENT=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -2510,6 +4107,74 @@ DEP_CPP_EVENT=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_EVENT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_EVENT=\
@@ -2521,6 +4186,7 @@ DEP_CPP_EVENT=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -2541,6 +4207,7 @@ DEP_CPP_EVENT=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -2587,6 +4254,43 @@ SOURCE=.\Get_Opt.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_GET_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_GET_O=\
@@ -2628,29 +4332,58 @@ DEP_CPP_GET_O=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_GET_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_GET_O=\
".\ACE.h"\
".\ACE.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\inc_user_config.h"\
@@ -2659,68 +4392,76 @@ DEP_CPP_GET_O=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_GET_O=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_GET_O=\
".\ACE.h"\
".\ACE.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\inc_user_config.h"\
@@ -2729,39 +4470,18 @@ DEP_CPP_GET_O=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -2775,6 +4495,43 @@ SOURCE=.\Handle_Set.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_HANDL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_HANDL=\
@@ -2816,57 +4573,205 @@ DEP_CPP_HANDL=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_HANDL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_HANDL=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_HANDL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_HANDL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\High_Res_Timer.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_HIGH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
@@ -2884,11 +4789,9 @@ DEP_CPP_HANDL=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_HANDL=\
+DEP_CPP_HIGH_=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -2897,46 +4800,33 @@ DEP_CPP_HANDL=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
@@ -2954,16 +4844,7 @@ DEP_CPP_HANDL=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\High_Res_Timer.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_HIGH_=\
".\ACE.h"\
@@ -3018,8 +4899,6 @@ DEP_CPP_HIGH_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_HIGH_=\
@@ -3031,18 +4910,13 @@ DEP_CPP_HIGH_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -3051,26 +4925,18 @@ DEP_CPP_HIGH_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
@@ -3090,6 +4956,59 @@ DEP_CPP_HIGH_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_HIGH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_HIGH_=\
@@ -3101,18 +5020,13 @@ DEP_CPP_HIGH_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -3121,26 +5035,18 @@ DEP_CPP_HIGH_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
@@ -3167,6 +5073,45 @@ SOURCE=.\INET_Addr.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_INET_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_INET_=\
@@ -3210,6 +5155,45 @@ DEP_CPP_INET_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_INET_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_INET_=\
@@ -3217,24 +5201,16 @@ DEP_CPP_INET_=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -3243,45 +5219,63 @@ DEP_CPP_INET_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_INET_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_INET_=\
@@ -3289,24 +5283,16 @@ DEP_CPP_INET_=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -3315,39 +5301,18 @@ DEP_CPP_INET_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -3380,6 +5345,43 @@ SOURCE=.\IO_SAP.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_IO_SA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_IO_SA=\
@@ -3421,29 +5423,58 @@ DEP_CPP_IO_SA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_IO_SA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_IO_SA=\
".\ACE.h"\
".\ACE.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
@@ -3452,68 +5483,76 @@ DEP_CPP_IO_SA=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_IO_SA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_IO_SA=\
".\ACE.h"\
".\ACE.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
@@ -3522,39 +5561,18 @@ DEP_CPP_IO_SA=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -3568,6 +5586,43 @@ SOURCE=.\IPC_SAP.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_IPC_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_IPC_S=\
@@ -3609,17 +5664,179 @@ DEP_CPP_IPC_S=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_IPC_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_IPC_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_IPC_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_IPC_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Local_Tokens.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_LOCAL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -3632,22 +5849,28 @@ DEP_CPP_IPC_S=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
- ".\IPC_SAP.h"\
- ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
@@ -3656,6 +5879,15 @@ DEP_CPP_IPC_S=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -3665,23 +5897,30 @@ DEP_CPP_IPC_S=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_IPC_S=\
+DEP_CPP_LOCAL=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -3690,6 +5929,7 @@ DEP_CPP_IPC_S=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -3702,22 +5942,28 @@ DEP_CPP_IPC_S=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
- ".\IPC_SAP.h"\
- ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
@@ -3726,6 +5972,15 @@ DEP_CPP_IPC_S=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -3735,28 +5990,28 @@ DEP_CPP_IPC_S=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Local_Tokens.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_LOCAL=\
".\ACE.h"\
@@ -3849,8 +6104,6 @@ DEP_CPP_LOCAL=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_LOCAL=\
@@ -3862,6 +6115,7 @@ DEP_CPP_LOCAL=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -3886,6 +6140,7 @@ DEP_CPP_LOCAL=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -3944,6 +6199,97 @@ DEP_CPP_LOCAL=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_LOCAL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_LOCAL=\
@@ -3955,6 +6301,7 @@ DEP_CPP_LOCAL=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -3979,6 +6326,7 @@ DEP_CPP_LOCAL=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4044,6 +6392,97 @@ SOURCE=.\Log_Msg.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_LOG_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_LOG_M=\
@@ -4139,6 +6578,97 @@ DEP_CPP_LOG_M=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_LOG_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_LOG_M=\
@@ -4152,6 +6682,7 @@ DEP_CPP_LOG_M=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -4176,6 +6707,7 @@ DEP_CPP_LOG_M=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4232,6 +6764,97 @@ DEP_CPP_LOG_M=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_LOG_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_LOG_M=\
@@ -4245,6 +6868,7 @@ DEP_CPP_LOG_M=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -4269,6 +6893,7 @@ DEP_CPP_LOG_M=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4332,6 +6957,41 @@ SOURCE=.\Log_Record.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_LOG_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_LOG_R=\
@@ -4371,17 +7031,171 @@ DEP_CPP_LOG_R=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_LOG_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_LOG_R=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_LOG_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_LOG_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Malloc.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_MALLO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -4402,6 +7216,7 @@ DEP_CPP_LOG_R=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4437,11 +7252,9 @@ DEP_CPP_LOG_R=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_LOG_R=\
+DEP_CPP_MALLO=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -4450,6 +7263,7 @@ DEP_CPP_LOG_R=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -4470,6 +7284,7 @@ DEP_CPP_LOG_R=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4505,16 +7320,7 @@ DEP_CPP_LOG_R=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Malloc.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_MALLO=\
".\ACE.h"\
@@ -4582,8 +7388,6 @@ DEP_CPP_MALLO=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_MALLO=\
@@ -4595,6 +7399,7 @@ DEP_CPP_MALLO=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -4615,6 +7420,7 @@ DEP_CPP_MALLO=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4652,6 +7458,72 @@ DEP_CPP_MALLO=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_MALLO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_MALLO=\
@@ -4663,6 +7535,7 @@ DEP_CPP_MALLO=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -4683,6 +7556,7 @@ DEP_CPP_MALLO=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4727,6 +7601,43 @@ SOURCE=.\Mem_Map.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_MEM_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_MEM_M=\
@@ -4768,17 +7679,179 @@ DEP_CPP_MEM_M=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_MEM_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_MEM_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_MEM_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_MEM_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Memory_Pool.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_MEMOR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -4799,6 +7872,7 @@ DEP_CPP_MEM_M=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4834,11 +7908,9 @@ DEP_CPP_MEM_M=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_MEM_M=\
+DEP_CPP_MEMOR=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -4847,6 +7919,7 @@ DEP_CPP_MEM_M=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -4867,6 +7940,7 @@ DEP_CPP_MEM_M=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -4902,16 +7976,7 @@ DEP_CPP_MEM_M=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Memory_Pool.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_MEMOR=\
".\ACE.h"\
@@ -4979,8 +8044,6 @@ DEP_CPP_MEMOR=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_MEMOR=\
@@ -4992,6 +8055,7 @@ DEP_CPP_MEMOR=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5012,6 +8076,7 @@ DEP_CPP_MEMOR=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -5049,6 +8114,72 @@ DEP_CPP_MEMOR=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_MEMOR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_MEMOR=\
@@ -5060,6 +8191,7 @@ DEP_CPP_MEMOR=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5080,6 +8212,7 @@ DEP_CPP_MEMOR=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -5124,6 +8257,74 @@ SOURCE=.\Message_Block.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_MESSA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_MESSA=\
@@ -5196,6 +8397,74 @@ DEP_CPP_MESSA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_MESSA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_MESSA=\
@@ -5207,6 +8476,7 @@ DEP_CPP_MESSA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5227,6 +8497,7 @@ DEP_CPP_MESSA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -5266,6 +8537,74 @@ DEP_CPP_MESSA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_MESSA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_MESSA=\
@@ -5277,6 +8616,7 @@ DEP_CPP_MESSA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5297,6 +8637,7 @@ DEP_CPP_MESSA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -5343,6 +8684,42 @@ SOURCE=.\Method_Object.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_METHO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Method_Object.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_METHO=\
@@ -5383,17 +8760,180 @@ DEP_CPP_METHO=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_METHO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Method_Object.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_METHO=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Method_Object.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_METHO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Method_Object.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_METHO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Method_Object.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Object_Manager.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_OBJEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Array.cpp"\
+ ".\Array.h"\
+ ".\Array.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5406,31 +8946,67 @@ DEP_CPP_METHO=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
- ".\Method_Object.h"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -5438,31 +9014,45 @@ DEP_CPP_METHO=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_METHO=\
+DEP_CPP_OBJEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Array.cpp"\
+ ".\Array.h"\
+ ".\Array.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5475,31 +9065,67 @@ DEP_CPP_METHO=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
- ".\Method_Object.h"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -5507,28 +9133,29 @@ DEP_CPP_METHO=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Object_Manager.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_OBJEC=\
".\ACE.h"\
@@ -5647,8 +9274,6 @@ DEP_CPP_OBJEC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_OBJEC=\
@@ -5665,6 +9290,7 @@ DEP_CPP_OBJEC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5693,6 +9319,7 @@ DEP_CPP_OBJEC=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -5768,6 +9395,123 @@ DEP_CPP_OBJEC=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_OBJEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Array.cpp"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_OBJEC=\
@@ -5784,6 +9528,7 @@ DEP_CPP_OBJEC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5812,6 +9557,7 @@ DEP_CPP_OBJEC=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -5894,6 +9640,74 @@ SOURCE=.\Obstack.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_OBSTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_OBSTA=\
@@ -5966,6 +9780,74 @@ DEP_CPP_OBSTA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_OBSTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_OBSTA=\
@@ -5977,6 +9859,7 @@ DEP_CPP_OBSTA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -5997,6 +9880,7 @@ DEP_CPP_OBSTA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -6036,6 +9920,74 @@ DEP_CPP_OBSTA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_OBSTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_OBSTA=\
@@ -6047,6 +9999,7 @@ DEP_CPP_OBSTA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -6067,6 +10020,7 @@ DEP_CPP_OBSTA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -6113,6 +10067,131 @@ SOURCE=.\OS.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_OS_CP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Array.cpp"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_OS_CP=\
@@ -6242,6 +10321,131 @@ DEP_CPP_OS_CP=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_OS_CP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Array.cpp"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_OS_CP=\
@@ -6258,6 +10462,7 @@ DEP_CPP_OS_CP=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -6283,6 +10488,7 @@ DEP_CPP_OS_CP=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -6295,9 +10501,11 @@ DEP_CPP_OS_CP=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -6367,6 +10575,131 @@ DEP_CPP_OS_CP=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_OS_CP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Array.cpp"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_OS_CP=\
@@ -6383,6 +10716,7 @@ DEP_CPP_OS_CP=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -6408,6 +10742,7 @@ DEP_CPP_OS_CP=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -6420,9 +10755,11 @@ DEP_CPP_OS_CP=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -6499,6 +10836,126 @@ SOURCE=.\Parse_Node.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_PARSE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_PARSE=\
@@ -6623,6 +11080,126 @@ DEP_CPP_PARSE=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_PARSE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_PARSE=\
@@ -6634,6 +11211,7 @@ DEP_CPP_PARSE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -6659,6 +11237,7 @@ DEP_CPP_PARSE=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -6671,9 +11250,11 @@ DEP_CPP_PARSE=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -6743,6 +11324,126 @@ DEP_CPP_PARSE=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_PARSE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_PARSE=\
@@ -6754,6 +11455,7 @@ DEP_CPP_PARSE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -6779,6 +11481,7 @@ DEP_CPP_PARSE=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -6791,9 +11494,11 @@ DEP_CPP_PARSE=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -6870,6 +11575,60 @@ SOURCE=.\Pipe.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_PIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_PIPE_=\
@@ -6928,6 +11687,60 @@ DEP_CPP_PIPE_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_PIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_PIPE_=\
@@ -6935,12 +11748,188 @@ DEP_CPP_PIPE_=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_PIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_PIPE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Process.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_PROCE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -6954,17 +11943,14 @@ DEP_CPP_PIPE_=\
".\Free_List.h"\
".\Free_List.i"\
".\inc_user_config.h"\
- ".\INET_Addr.h"\
- ".\INET_Addr.i"\
".\iosfwd.h"\
- ".\IPC_SAP.h"\
- ".\IPC_SAP.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -6979,20 +11965,10 @@ DEP_CPP_PIPE_=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Pipe.h"\
- ".\Pipe.i"\
+ ".\Process.h"\
+ ".\Process.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SOCK.h"\
- ".\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- ".\SOCK_IO.h"\
- ".\SOCK_IO.i"\
- ".\SOCK_Stream.h"\
- ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -7008,26 +11984,24 @@ DEP_CPP_PIPE_=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
- ".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_PIPE_=\
+DEP_CPP_PROCE=\
".\ACE.h"\
".\ACE.i"\
- ".\Addr.h"\
- ".\Addr.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -7041,17 +12015,14 @@ DEP_CPP_PIPE_=\
".\Free_List.h"\
".\Free_List.i"\
".\inc_user_config.h"\
- ".\INET_Addr.h"\
- ".\INET_Addr.i"\
".\iosfwd.h"\
- ".\IPC_SAP.h"\
- ".\IPC_SAP.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -7066,20 +12037,10 @@ DEP_CPP_PIPE_=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Pipe.h"\
- ".\Pipe.i"\
+ ".\Process.h"\
+ ".\Process.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SOCK.h"\
- ".\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- ".\SOCK_IO.h"\
- ".\SOCK_IO.i"\
- ".\SOCK_Stream.h"\
- ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -7095,21 +12056,11 @@ DEP_CPP_PIPE_=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
- ".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Process.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_PROCE=\
".\ACE.h"\
@@ -7181,8 +12132,6 @@ DEP_CPP_PROCE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_PROCE=\
@@ -7196,6 +12145,7 @@ DEP_CPP_PROCE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -7216,6 +12166,7 @@ DEP_CPP_PROCE=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -7255,6 +12206,76 @@ DEP_CPP_PROCE=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_PROCE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_PROCE=\
@@ -7268,6 +12289,7 @@ DEP_CPP_PROCE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -7288,6 +12310,7 @@ DEP_CPP_PROCE=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -7334,6 +12357,59 @@ SOURCE=.\Process_Manager.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_PROCES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Process_Manager.h"\
+ ".\Process_Manager.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_PROCES=\
@@ -7391,6 +12467,59 @@ DEP_CPP_PROCES=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_PROCES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Process_Manager.h"\
+ ".\Process_Manager.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_PROCES=\
@@ -7402,36 +12531,23 @@ DEP_CPP_PROCES=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -7440,8 +12556,6 @@ DEP_CPP_PROCES=\
".\Process.i"\
".\Process_Manager.h"\
".\Process_Manager.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -7463,6 +12577,59 @@ DEP_CPP_PROCES=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_PROCES=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Process_Manager.h"\
+ ".\Process_Manager.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_PROCES=\
@@ -7474,36 +12641,23 @@ DEP_CPP_PROCES=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -7512,8 +12666,6 @@ DEP_CPP_PROCES=\
".\Process.i"\
".\Process_Manager.h"\
".\Process_Manager.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -7542,6 +12694,46 @@ SOURCE=.\Profile_Timer.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_PROFI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_PROFI=\
@@ -7586,17 +12778,191 @@ DEP_CPP_PROFI=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_PROFI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_PROFI=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_PROFI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_PROFI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Reactor.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_REACT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -7609,59 +12975,109 @@ DEP_CPP_PROFI=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\High_Res_Timer.h"\
- ".\High_Res_Timer.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Msg_WFMO_Reactor.h"\
+ ".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Profile_Timer.h"\
- ".\Profile_Timer.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
- ".\Time_Value.h"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_PROFI=\
+DEP_CPP_REACT=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -7670,6 +13086,7 @@ DEP_CPP_PROFI=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -7682,64 +13099,107 @@ DEP_CPP_PROFI=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\High_Res_Timer.h"\
- ".\High_Res_Timer.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Msg_WFMO_Reactor.h"\
+ ".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Profile_Timer.h"\
- ".\Profile_Timer.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
- ".\Time_Value.h"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Reactor.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_REACT=\
".\ACE.h"\
@@ -7855,14 +13315,14 @@ DEP_CPP_REACT=\
".\Timer_Queue_T.i"\
".\Token.h"\
".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
".\Trace.h"\
".\WFMO_Reactor.h"\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_REACT=\
@@ -7874,6 +13334,7 @@ DEP_CPP_REACT=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -7901,6 +13362,7 @@ DEP_CPP_REACT=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -7916,9 +13378,11 @@ DEP_CPP_REACT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Msg_WFMO_Reactor.h"\
".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
@@ -7975,6 +13439,8 @@ DEP_CPP_REACT=\
".\Timer_Queue_T.i"\
".\Token.h"\
".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
".\Trace.h"\
".\WFMO_Reactor.h"\
".\WFMO_Reactor.i"\
@@ -7983,6 +13449,128 @@ DEP_CPP_REACT=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_REACT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Msg_WFMO_Reactor.h"\
+ ".\Msg_WFMO_Reactor.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_REACT=\
@@ -7994,6 +13582,7 @@ DEP_CPP_REACT=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -8021,6 +13610,7 @@ DEP_CPP_REACT=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -8036,9 +13626,11 @@ DEP_CPP_REACT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Msg_WFMO_Reactor.h"\
".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
@@ -8095,6 +13687,8 @@ DEP_CPP_REACT=\
".\Timer_Queue_T.i"\
".\Token.h"\
".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
".\Trace.h"\
".\WFMO_Reactor.h"\
".\WFMO_Reactor.i"\
@@ -8110,6 +13704,43 @@ SOURCE=.\Sched_Params.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SCHED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SCHED=\
@@ -8151,17 +13782,181 @@ DEP_CPP_SCHED=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SCHED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SCHED=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_SCHED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_SCHED=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Select_Reactor.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SELEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -8174,20 +13969,32 @@ DEP_CPP_SCHED=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
@@ -8196,10 +14003,31 @@ DEP_CPP_SCHED=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Sched_Params.h"\
- ".\Sched_Params.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -8207,31 +14035,45 @@ DEP_CPP_SCHED=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_SCHED=\
+DEP_CPP_SELEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -8244,20 +14086,32 @@ DEP_CPP_SCHED=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
@@ -8266,10 +14120,31 @@ DEP_CPP_SCHED=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Sched_Params.h"\
- ".\Sched_Params.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -8277,28 +14152,32 @@ DEP_CPP_SCHED=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Select_Reactor.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_SELEC=\
".\ACE.h"\
@@ -8415,8 +14294,6 @@ DEP_CPP_SELEC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SELEC=\
@@ -8430,6 +14307,7 @@ DEP_CPP_SELEC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -8458,6 +14336,7 @@ DEP_CPP_SELEC=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -8534,6 +14413,121 @@ DEP_CPP_SELEC=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SELEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SELEC=\
@@ -8547,6 +14541,7 @@ DEP_CPP_SELEC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -8575,6 +14570,7 @@ DEP_CPP_SELEC=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -8658,6 +14654,135 @@ SOURCE=.\Service_Config.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SERVI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SERVI=\
@@ -8791,6 +14916,135 @@ DEP_CPP_SERVI=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SERVI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SERVI=\
@@ -8808,6 +15062,7 @@ DEP_CPP_SERVI=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -8838,6 +15093,7 @@ DEP_CPP_SERVI=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -8922,6 +15178,135 @@ DEP_CPP_SERVI=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SERVI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SERVI=\
@@ -8939,6 +15324,7 @@ DEP_CPP_SERVI=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -8969,6 +15355,7 @@ DEP_CPP_SERVI=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -9060,8 +15447,6 @@ SOURCE=.\Service_Manager.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-
DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
@@ -9188,9 +15573,7 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SERVIC=\
".\ACE.h"\
@@ -9203,6 +15586,7 @@ DEP_CPP_SERVIC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -9234,6 +15618,7 @@ DEP_CPP_SERVIC=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -9246,9 +15631,11 @@ DEP_CPP_SERVIC=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -9314,9 +15701,7 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_SERVIC=\
".\ACE.h"\
@@ -9329,6 +15714,7 @@ DEP_CPP_SERVIC=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -9360,6 +15746,7 @@ DEP_CPP_SERVIC=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -9372,9 +15759,11 @@ DEP_CPP_SERVIC=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -9440,20 +15829,13 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Service_Object.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
-DEP_CPP_SERVICE=\
+DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
@@ -9465,60 +15847,130 @@ DEP_CPP_SERVICE=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
".\Service_Object.h"\
".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
".\Service_Types.h"\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-DEP_CPP_SERVICE=\
+DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -9531,14 +15983,26 @@ DEP_CPP_SERVICE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -9549,50 +16013,92 @@ DEP_CPP_SERVICE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
".\Service_Object.h"\
".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
".\Service_Types.h"\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
-DEP_CPP_SERVICE=\
+DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -9605,14 +16111,26 @@ DEP_CPP_SERVICE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Get_Opt.h"\
+ ".\Get_Opt.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -9623,18 +16141,408 @@ DEP_CPP_SERVICE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
".\Service_Object.h"\
".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
".\Service_Types.h"\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Service_Object.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_SERVICE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -9663,6 +16571,63 @@ SOURCE=.\Service_Repository.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SERVICE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SERVICE_=\
@@ -9724,6 +16689,63 @@ DEP_CPP_SERVICE_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SERVICE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SERVICE_=\
@@ -9735,6 +16757,191 @@ DEP_CPP_SERVICE_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_SERVICE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_SERVICE_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Service_Types.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SERVICE_T=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -9747,7 +16954,12 @@ DEP_CPP_SERVICE_=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9755,6 +16967,7 @@ DEP_CPP_SERVICE_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -9765,10 +16978,25 @@ DEP_CPP_SERVICE_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Repository.h"\
@@ -9781,28 +17009,54 @@ DEP_CPP_SERVICE_=\
".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_SERVICE_=\
+DEP_CPP_SERVICE_T=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -9811,6 +17065,7 @@ DEP_CPP_SERVICE_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -9823,7 +17078,12 @@ DEP_CPP_SERVICE_=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9831,6 +17091,7 @@ DEP_CPP_SERVICE_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -9841,10 +17102,25 @@ DEP_CPP_SERVICE_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Repository.h"\
@@ -9857,33 +17133,52 @@ DEP_CPP_SERVICE_=\
".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Service_Types.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
@@ -10007,8 +17302,6 @@ DEP_CPP_SERVICE_T=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SERVICE_T=\
@@ -10020,6 +17313,7 @@ DEP_CPP_SERVICE_T=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -10045,6 +17339,7 @@ DEP_CPP_SERVICE_T=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -10057,9 +17352,11 @@ DEP_CPP_SERVICE_T=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -10131,6 +17428,128 @@ DEP_CPP_SERVICE_T=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SERVICE_T=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SERVICE_T=\
@@ -10142,6 +17561,7 @@ DEP_CPP_SERVICE_T=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -10167,6 +17587,7 @@ DEP_CPP_SERVICE_T=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -10179,9 +17600,11 @@ DEP_CPP_SERVICE_T=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -10260,6 +17683,43 @@ SOURCE=.\Shared_Object.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SHARE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SHARE=\
@@ -10301,17 +17761,179 @@ DEP_CPP_SHARE=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SHARE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SHARE=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_SHARE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_SHARE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Signal.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SIGNA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -10332,6 +17954,7 @@ DEP_CPP_SHARE=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -10346,8 +17969,6 @@ DEP_CPP_SHARE=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -10369,11 +17990,9 @@ DEP_CPP_SHARE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_SHARE=\
+DEP_CPP_SIGNA=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -10382,6 +18001,7 @@ DEP_CPP_SHARE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -10402,6 +18022,7 @@ DEP_CPP_SHARE=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -10416,8 +18037,6 @@ DEP_CPP_SHARE=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -10439,16 +18058,7 @@ DEP_CPP_SHARE=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Signal.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_SIGNA=\
".\ACE.h"\
@@ -10516,8 +18126,6 @@ DEP_CPP_SIGNA=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SIGNA=\
@@ -10529,6 +18137,7 @@ DEP_CPP_SIGNA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -10549,6 +18158,7 @@ DEP_CPP_SIGNA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -10586,6 +18196,72 @@ DEP_CPP_SIGNA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SIGNA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SIGNA=\
@@ -10597,6 +18273,7 @@ DEP_CPP_SIGNA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -10617,6 +18294,7 @@ DEP_CPP_SIGNA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -10661,6 +18339,47 @@ SOURCE=.\SOCK.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_=\
@@ -10706,6 +18425,47 @@ DEP_CPP_SOCK_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_=\
@@ -10713,25 +18473,158 @@ DEP_CPP_SOCK_=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_SOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_SOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\SOCK_Acceptor.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SOCK_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -10739,26 +18632,22 @@ DEP_CPP_SOCK_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -10774,15 +18663,14 @@ DEP_CPP_SOCK_=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_SOCK_=\
+DEP_CPP_SOCK_A=\
".\ACE.h"\
".\ACE.i"\
".\Addr.h"\
@@ -10793,19 +18681,16 @@ DEP_CPP_SOCK_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -10813,26 +18698,22 @@ DEP_CPP_SOCK_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -10848,20 +18729,12 @@ DEP_CPP_SOCK_=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\SOCK_Acceptor.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_A=\
".\ACE.h"\
@@ -10927,8 +18800,6 @@ DEP_CPP_SOCK_A=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_A=\
@@ -10942,18 +18813,13 @@ DEP_CPP_SOCK_A=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -10964,24 +18830,14 @@ DEP_CPP_SOCK_A=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -11012,6 +18868,70 @@ DEP_CPP_SOCK_A=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SOCK_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SOCK_A=\
@@ -11025,18 +18945,13 @@ DEP_CPP_SOCK_A=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -11047,24 +18962,14 @@ DEP_CPP_SOCK_A=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -11102,6 +19007,51 @@ SOURCE=.\SOCK_CODgram.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_C=\
@@ -11151,6 +19101,51 @@ DEP_CPP_SOCK_C=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_C=\
@@ -11158,24 +19153,16 @@ DEP_CPP_SOCK_C=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -11184,24 +19171,14 @@ DEP_CPP_SOCK_C=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_CODgram.h"\
@@ -11211,24 +19188,58 @@ DEP_CPP_SOCK_C=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SOCK_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SOCK_C=\
@@ -11236,24 +19247,16 @@ DEP_CPP_SOCK_C=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -11262,24 +19265,14 @@ DEP_CPP_SOCK_C=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_CODgram.h"\
@@ -11289,18 +19282,7 @@ DEP_CPP_SOCK_C=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -11314,6 +19296,58 @@ SOURCE=.\SOCK_Connector.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_CO=\
@@ -11370,6 +19404,58 @@ DEP_CPP_SOCK_CO=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_CO=\
@@ -11377,24 +19463,16 @@ DEP_CPP_SOCK_CO=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -11407,24 +19485,14 @@ DEP_CPP_SOCK_CO=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -11436,18 +19504,7 @@ DEP_CPP_SOCK_CO=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -11455,6 +19512,58 @@ DEP_CPP_SOCK_CO=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SOCK_CO=\
@@ -11462,24 +19571,16 @@ DEP_CPP_SOCK_CO=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -11492,24 +19593,14 @@ DEP_CPP_SOCK_CO=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -11521,6 +19612,64 @@ DEP_CPP_SOCK_CO=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\SOCK_Dgram.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
@@ -11533,20 +19682,10 @@ DEP_CPP_SOCK_CO=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
- ".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\SOCK_Dgram.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_D=\
@@ -11610,6 +19749,65 @@ DEP_CPP_SOCK_D=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_D=\
@@ -11623,18 +19821,13 @@ DEP_CPP_SOCK_D=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -11645,24 +19838,14 @@ DEP_CPP_SOCK_D=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -11688,6 +19871,65 @@ DEP_CPP_SOCK_D=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SOCK_D=\
@@ -11701,18 +19943,13 @@ DEP_CPP_SOCK_D=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -11723,24 +19960,14 @@ DEP_CPP_SOCK_D=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -11773,6 +20000,53 @@ SOURCE=.\SOCK_Dgram_Bcast.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SOCK_DG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Bcast.h"\
+ ".\SOCK_Dgram_Bcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_DG=\
@@ -11824,6 +20098,53 @@ DEP_CPP_SOCK_DG=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SOCK_DG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Bcast.h"\
+ ".\SOCK_Dgram_Bcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_DG=\
@@ -11831,24 +20152,16 @@ DEP_CPP_SOCK_DG=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -11859,24 +20172,14 @@ DEP_CPP_SOCK_DG=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -11886,24 +20189,60 @@ DEP_CPP_SOCK_DG=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SOCK_DG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Bcast.h"\
+ ".\SOCK_Dgram_Bcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SOCK_DG=\
@@ -11911,24 +20250,16 @@ DEP_CPP_SOCK_DG=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -11939,24 +20270,14 @@ DEP_CPP_SOCK_DG=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -11966,18 +20287,7 @@ DEP_CPP_SOCK_DG=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -11991,6 +20301,53 @@ SOURCE=.\SOCK_Dgram_Mcast.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SOCK_DGR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Mcast.h"\
+ ".\SOCK_Dgram_Mcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_DGR=\
@@ -12042,6 +20399,53 @@ DEP_CPP_SOCK_DGR=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SOCK_DGR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Mcast.h"\
+ ".\SOCK_Dgram_Mcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_DGR=\
@@ -12049,24 +20453,16 @@ DEP_CPP_SOCK_DGR=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -12077,24 +20473,14 @@ DEP_CPP_SOCK_DGR=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -12104,24 +20490,60 @@ DEP_CPP_SOCK_DGR=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SOCK_DGR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Mcast.h"\
+ ".\SOCK_Dgram_Mcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SOCK_DGR=\
@@ -12129,24 +20551,16 @@ DEP_CPP_SOCK_DGR=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -12157,24 +20571,14 @@ DEP_CPP_SOCK_DGR=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -12184,18 +20588,7 @@ DEP_CPP_SOCK_DGR=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -12209,6 +20602,49 @@ SOURCE=.\SOCK_IO.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SOCK_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_I=\
@@ -12256,6 +20692,49 @@ DEP_CPP_SOCK_I=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SOCK_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_I=\
@@ -12263,24 +20742,16 @@ DEP_CPP_SOCK_I=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -12289,24 +20760,14 @@ DEP_CPP_SOCK_I=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
@@ -12314,24 +20775,56 @@ DEP_CPP_SOCK_I=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SOCK_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SOCK_I=\
@@ -12339,24 +20832,16 @@ DEP_CPP_SOCK_I=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
- ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -12365,24 +20850,14 @@ DEP_CPP_SOCK_I=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
+ ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Signal.h"\
- ".\Signal.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
@@ -12390,18 +20865,7 @@ DEP_CPP_SOCK_I=\
".\SString.h"\
".\SString.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
".\sys_conf.h"\
- ".\Thread.h"\
- ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -12415,6 +20879,53 @@ SOURCE=.\SOCK_Stream.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_S=\
@@ -12466,6 +20977,53 @@ DEP_CPP_SOCK_S=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_S=\
@@ -12473,12 +21031,165 @@ DEP_CPP_SOCK_S=\
".\ACE.i"\
".\Addr.h"\
".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_SOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_SOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\SString.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SSTRI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -12491,18 +21202,17 @@ DEP_CPP_SOCK_S=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
- ".\INET_Addr.h"\
- ".\INET_Addr.i"\
".\iosfwd.h"\
- ".\IPC_SAP.h"\
- ".\IPC_SAP.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -12517,14 +21227,17 @@ DEP_CPP_SOCK_S=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SOCK.h"\
- ".\SOCK.i"\
- ".\SOCK_IO.h"\
- ".\SOCK_IO.i"\
- ".\SOCK_Stream.h"\
- ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -12532,6 +21245,7 @@ DEP_CPP_SOCK_S=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -12540,25 +21254,26 @@ DEP_CPP_SOCK_S=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_SOCK_S=\
+DEP_CPP_SSTRI=\
".\ACE.h"\
".\ACE.i"\
- ".\Addr.h"\
- ".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -12571,18 +21286,17 @@ DEP_CPP_SOCK_S=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
- ".\INET_Addr.h"\
- ".\INET_Addr.i"\
".\iosfwd.h"\
- ".\IPC_SAP.h"\
- ".\IPC_SAP.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -12597,14 +21311,17 @@ DEP_CPP_SOCK_S=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SOCK.h"\
- ".\SOCK.i"\
- ".\SOCK_IO.h"\
- ".\SOCK_IO.i"\
- ".\SOCK_Stream.h"\
- ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -12612,6 +21329,7 @@ DEP_CPP_SOCK_S=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -12620,20 +21338,15 @@ DEP_CPP_SOCK_S=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\SString.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_SSTRI=\
".\ACE.h"\
@@ -12717,8 +21430,6 @@ DEP_CPP_SSTRI=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SSTRI=\
@@ -12730,6 +21441,7 @@ DEP_CPP_SSTRI=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -12752,6 +21464,7 @@ DEP_CPP_SSTRI=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -12803,6 +21516,88 @@ DEP_CPP_SSTRI=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SSTRI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SSTRI=\
@@ -12814,6 +21609,7 @@ DEP_CPP_SSTRI=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -12836,6 +21632,7 @@ DEP_CPP_SSTRI=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -12894,6 +21691,43 @@ SOURCE=.\Stats.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_STATS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_STATS=\
@@ -12935,12 +21769,160 @@ DEP_CPP_STATS=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_STATS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_STATS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_STATS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+DEP_CPP_STATS=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Stats.h"\
+ ".\Stats.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ENDIF
# End Source File
@@ -12950,6 +21932,113 @@ SOURCE=.\Strategies.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_STRAT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_STRAT=\
@@ -13061,6 +22150,113 @@ DEP_CPP_STRAT=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_STRAT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_STRAT=\
@@ -13072,6 +22268,7 @@ DEP_CPP_STRAT=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -13097,6 +22294,7 @@ DEP_CPP_STRAT=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -13109,9 +22307,11 @@ DEP_CPP_STRAT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -13168,6 +22368,113 @@ DEP_CPP_STRAT=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_STRAT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_STRAT=\
@@ -13179,6 +22486,7 @@ DEP_CPP_STRAT=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -13204,6 +22512,7 @@ DEP_CPP_STRAT=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -13216,9 +22525,11 @@ DEP_CPP_STRAT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -13282,6 +22593,95 @@ SOURCE=.\Svc_Conf_l.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SVC_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SVC_C=\
@@ -13375,6 +22775,95 @@ DEP_CPP_SVC_C=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SVC_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SVC_C=\
@@ -13386,6 +22875,7 @@ DEP_CPP_SVC_C=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -13408,6 +22898,7 @@ DEP_CPP_SVC_C=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -13466,6 +22957,95 @@ DEP_CPP_SVC_C=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SVC_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SVC_C=\
@@ -13477,6 +23057,7 @@ DEP_CPP_SVC_C=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -13499,6 +23080,7 @@ DEP_CPP_SVC_C=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -13564,8 +23146,6 @@ SOURCE=.\Svc_Conf_y.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-
DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
@@ -13695,9 +23275,7 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SVC_CO=\
".\ACE.h"\
@@ -13710,6 +23288,7 @@ DEP_CPP_SVC_CO=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -13735,6 +23314,7 @@ DEP_CPP_SVC_CO=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -13747,9 +23327,11 @@ DEP_CPP_SVC_CO=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -13824,9 +23406,7 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_SVC_CO=\
".\ACE.h"\
@@ -13839,6 +23419,7 @@ DEP_CPP_SVC_CO=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -13864,6 +23445,7 @@ DEP_CPP_SVC_CO=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -13876,9 +23458,11 @@ DEP_CPP_SVC_CO=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -13953,20 +23537,13 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Synch.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
-DEP_CPP_SYNCH=\
+DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
@@ -13978,54 +23555,133 @@ DEP_CPP_SYNCH=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-DEP_CPP_SYNCH=\
+DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14038,7 +23694,12 @@ DEP_CPP_SYNCH=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14046,6 +23707,7 @@ DEP_CPP_SYNCH=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -14056,44 +23718,101 @@ DEP_CPP_SYNCH=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
-DEP_CPP_SYNCH=\
+DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14106,7 +23825,12 @@ DEP_CPP_SYNCH=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14114,6 +23838,7 @@ DEP_CPP_SYNCH=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -14124,14 +23849,383 @@ DEP_CPP_SYNCH=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\Parse_Node.h"\
+ ".\Parse_Node.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf.h"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Synch.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
@@ -14158,6 +24252,43 @@ SOURCE=.\Synch_Options.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SYNCH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SYNCH_=\
@@ -14199,17 +24330,179 @@ DEP_CPP_SYNCH_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SYNCH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SYNCH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_SYNCH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_SYNCH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\System_Time.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_SYSTE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14230,6 +24523,7 @@ DEP_CPP_SYNCH_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -14255,23 +24549,20 @@ DEP_CPP_SYNCH_=\
".\SV_Semaphore_Simple.i"\
".\Synch.h"\
".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
+ ".\System_Time.h"\
".\Thread.h"\
".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_SYNCH_=\
+DEP_CPP_SYSTE=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -14280,6 +24571,7 @@ DEP_CPP_SYNCH_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14300,6 +24592,7 @@ DEP_CPP_SYNCH_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -14325,28 +24618,18 @@ DEP_CPP_SYNCH_=\
".\SV_Semaphore_Simple.i"\
".\Synch.h"\
".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
+ ".\System_Time.h"\
".\Thread.h"\
".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\System_Time.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_SYSTE=\
".\ACE.h"\
@@ -14415,8 +24698,6 @@ DEP_CPP_SYSTE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_SYSTE=\
@@ -14428,6 +24709,7 @@ DEP_CPP_SYSTE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14448,6 +24730,7 @@ DEP_CPP_SYSTE=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -14486,6 +24769,73 @@ DEP_CPP_SYSTE=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SYSTE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\System_Time.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_SYSTE=\
@@ -14497,6 +24847,7 @@ DEP_CPP_SYSTE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14517,6 +24868,7 @@ DEP_CPP_SYSTE=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -14562,6 +24914,124 @@ SOURCE=.\Task.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_TASK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_TASK_=\
@@ -14684,6 +25154,124 @@ DEP_CPP_TASK_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_TASK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_TASK_=\
@@ -14695,6 +25283,7 @@ DEP_CPP_TASK_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14720,6 +25309,7 @@ DEP_CPP_TASK_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -14732,9 +25322,11 @@ DEP_CPP_TASK_=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -14802,6 +25394,124 @@ DEP_CPP_TASK_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_TASK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_TASK_=\
@@ -14813,6 +25523,7 @@ DEP_CPP_TASK_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14838,6 +25549,7 @@ DEP_CPP_TASK_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -14850,9 +25562,11 @@ DEP_CPP_TASK_=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -14927,6 +25641,43 @@ SOURCE=.\Thread.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_THREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_THREA=\
@@ -14968,17 +25719,179 @@ DEP_CPP_THREA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_THREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_THREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_THREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_THREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Thread_Manager.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_THREAD=\
+ ".\ACE.h"\
+ ".\ACE.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -14986,6 +25899,8 @@ DEP_CPP_THREA=\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -14999,6 +25914,7 @@ DEP_CPP_THREA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -15015,6 +25931,9 @@ DEP_CPP_THREA=\
".\OS.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -15030,15 +25949,15 @@ DEP_CPP_THREA=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_THREA=\
+DEP_CPP_THREAD=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -15047,6 +25966,7 @@ DEP_CPP_THREA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15054,6 +25974,8 @@ DEP_CPP_THREA=\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -15067,6 +25989,7 @@ DEP_CPP_THREA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -15083,6 +26006,9 @@ DEP_CPP_THREA=\
".\OS.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -15098,20 +26024,13 @@ DEP_CPP_THREA=\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Thread_Manager.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_THREAD=\
".\ACE.h"\
@@ -15186,8 +26105,6 @@ DEP_CPP_THREAD=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_THREAD=\
@@ -15199,6 +26116,7 @@ DEP_CPP_THREAD=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15221,6 +26139,7 @@ DEP_CPP_THREAD=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -15263,6 +26182,79 @@ DEP_CPP_THREAD=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_THREAD=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_THREAD=\
@@ -15274,6 +26266,7 @@ DEP_CPP_THREAD=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15296,6 +26289,7 @@ DEP_CPP_THREAD=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -15345,6 +26339,57 @@ SOURCE=.\Token.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_TOKEN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_TOKEN=\
@@ -15400,6 +26445,57 @@ DEP_CPP_TOKEN=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_TOKEN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_TOKEN=\
@@ -15411,6 +26507,173 @@ DEP_CPP_TOKEN=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_TOKEN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_TOKEN=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Token_Manager.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_TOKEN_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15423,20 +26686,28 @@ DEP_CPP_TOKEN=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
@@ -15445,6 +26716,15 @@ DEP_CPP_TOKEN=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -15454,25 +26734,30 @@ DEP_CPP_TOKEN=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
- ".\Token.h"\
- ".\Token.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_TOKEN=\
+DEP_CPP_TOKEN_=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -15481,6 +26766,7 @@ DEP_CPP_TOKEN=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15493,20 +26779,28 @@ DEP_CPP_TOKEN=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
@@ -15515,6 +26809,15 @@ DEP_CPP_TOKEN=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -15524,30 +26827,28 @@ DEP_CPP_TOKEN=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
- ".\Token.h"\
- ".\Token.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Token_Manager.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
DEP_CPP_TOKEN_=\
".\ACE.h"\
@@ -15640,8 +26941,6 @@ DEP_CPP_TOKEN_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_TOKEN_=\
@@ -15653,6 +26952,7 @@ DEP_CPP_TOKEN_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15677,6 +26977,7 @@ DEP_CPP_TOKEN_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -15735,6 +27036,97 @@ DEP_CPP_TOKEN_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_TOKEN_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_TOKEN_=\
@@ -15746,6 +27138,7 @@ DEP_CPP_TOKEN_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15770,6 +27163,7 @@ DEP_CPP_TOKEN_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -15831,15 +27225,113 @@ DEP_CPP_TOKEN_=\
# End Source File
# Begin Source File
-SOURCE=.\Trace.cpp
+SOURCE=.\TP_Reactor.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_TP_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-DEP_CPP_TRACE=\
+DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
+ ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
@@ -15850,34 +27342,191 @@ DEP_CPP_TRACE=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
".\Trace.h"\
- ".\Trace.i"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_TP_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
-DEP_CPP_TRACE=\
+DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -15886,6 +27535,7 @@ DEP_CPP_TRACE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15898,20 +27548,28 @@ DEP_CPP_TRACE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
@@ -15920,6 +27578,19 @@ DEP_CPP_TRACE=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -15929,24 +27600,131 @@ DEP_CPP_TRACE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
".\Trace.h"\
- ".\Trace.i"\
".\ws2tcpip.h"\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_TP_RE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
-DEP_CPP_TRACE=\
+DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
".\Atomic_Op.i"\
@@ -15955,6 +27733,7 @@ DEP_CPP_TRACE=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -15967,20 +27746,28 @@ DEP_CPP_TRACE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
".\Memory_Pool.h"\
@@ -15989,6 +27776,19 @@ DEP_CPP_TRACE=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
".\SString.h"\
@@ -15998,14 +27798,259 @@ DEP_CPP_TRACE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
".\Synch.h"\
".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
".\Synch_T.cpp"\
".\Synch_T.h"\
".\Synch_T.i"\
".\sys_conf.h"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\TP_Reactor.h"\
+ ".\TP_Reactor.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Trace.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc_Base.h"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
".\Trace.h"\
".\Trace.i"\
".\ws2tcpip.h"\
@@ -16020,6 +28065,116 @@ SOURCE=.\WFMO_Reactor.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_WFMO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_WFMO_=\
@@ -16134,6 +28289,116 @@ DEP_CPP_WFMO_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_WFMO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_WFMO_=\
@@ -16145,6 +28410,7 @@ DEP_CPP_WFMO_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -16170,6 +28436,7 @@ DEP_CPP_WFMO_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -16182,9 +28449,11 @@ DEP_CPP_WFMO_=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -16244,6 +28513,116 @@ DEP_CPP_WFMO_=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_WFMO_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_WFMO_=\
@@ -16255,6 +28634,7 @@ DEP_CPP_WFMO_=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -16280,6 +28660,7 @@ DEP_CPP_WFMO_=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -16292,9 +28673,11 @@ DEP_CPP_WFMO_=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
- ".\Message_Queue.cpp"\
".\Message_Queue.h"\
".\Message_Queue.i"\
+ ".\Message_Queue_T.cpp"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -16361,6 +28744,119 @@ SOURCE=.\XtReactor.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_XTREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+ ".\XtReactor.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_XTREA=\
@@ -16478,6 +28974,119 @@ DEP_CPP_XTREA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_XTREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+ ".\XtReactor.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
DEP_CPP_XTREA=\
@@ -16491,6 +29100,7 @@ DEP_CPP_XTREA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -16519,6 +29129,7 @@ DEP_CPP_XTREA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
@@ -16593,6 +29204,119 @@ DEP_CPP_XTREA=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_XTREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+ ".\XtReactor.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
DEP_CPP_XTREA=\
@@ -16606,6 +29330,7 @@ DEP_CPP_XTREA=\
".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
@@ -16634,6 +29359,7 @@ DEP_CPP_XTREA=\
".\Log_Record.i"\
".\Malloc.h"\
".\Malloc.i"\
+ ".\Malloc_Base.h"\
".\Malloc_T.cpp"\
".\Malloc_T.h"\
".\Malloc_T.i"\
diff --git a/ace/ace_dll.dsp b/ace/ace_dll.dsp
index 14af0e1f482..a9539fef32d 100644
--- a/ace/ace_dll.dsp
+++ b/ace/ace_dll.dsp
@@ -11249,6 +11249,29 @@ NODEP_CPP_TOKEN_R=\
# End Source File
# Begin Source File
+SOURCE=.\TP_Reactor.cpp
+
+!IF "$(CFG)" == "ACE dynamic library - Win32 Debug"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Release"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Unicode Debug"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Unicode Release"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Debug"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Release"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Debug"
+
+!ELSEIF "$(CFG)" == "ACE dynamic library - Win32 Alpha Unicode Release"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=.\Trace.cpp
!IF "$(CFG)" == "ACE dynamic library - Win32 Debug"