summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-07 10:57:21 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-07 10:57:21 +0000
commitc5c2804994e4c050b838c347d7de9da15ae273cc (patch)
treefbc674e1c3ff68d9092330a4009d99e32ad8f602
parentefccb9b98f848247a659e1115f9f94cf1a43f35d (diff)
downloadATCD-c5c2804994e4c050b838c347d7de9da15ae273cc.tar.gz
*** empty log message ***
-rw-r--r--ace/OS.i4
-rw-r--r--ace/Proactor.cpp613
-rw-r--r--ace/Proactor.h295
-rw-r--r--ace/Proactor.i56
-rw-r--r--ace/ace.mak1222
-rw-r--r--ace/ace.mdpbin76800 -> 75776 bytes
6 files changed, 1063 insertions, 1127 deletions
diff --git a/ace/OS.i b/ace/OS.i
index c445026bcc3..b35cdc44746 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -5050,7 +5050,7 @@ ACE_OS::write (ACE_HANDLE handle, const void *buf, size_t nbyte,
#endif /* ACE_WIN32 */
}
-ssize_t
+ACE_INLINE ssize_t
ACE_OS::pwrite (ACE_HANDLE handle,
const void *buf,
size_t nbyte,
@@ -5114,7 +5114,7 @@ ACE_OS::read (ACE_HANDLE handle, void *buf, size_t len,
#endif /* ACE_WIN32 */
}
-ssize_t
+ACE_INLINE ssize_t
ACE_OS::pread (ACE_HANDLE handle,
void *buf,
size_t nbyte,
diff --git a/ace/Proactor.cpp b/ace/Proactor.cpp
index 313f4086d9a..7a76cfa55f8 100644
--- a/ace/Proactor.cpp
+++ b/ace/Proactor.cpp
@@ -1,575 +1,180 @@
// Proactor.cpp
-// $Id$
+// $Id: Proactor.cpp,v
#define ACE_BUILD_DLL
#include "ace/Proactor.h"
-#include "ace/Timer_List.h"
+
+#if defined (ACE_WIN32)
+// This only works on Win32 platforms
+
+#include "ace/Timer_Queue.h"
+#include "ace/Log_Msg.h"
+#include "ace/Asynch_IO.h"
#if !defined (__ACE_INLINE__)
#include "ace/Proactor.i"
#endif /* __ACE_INLINE__ */
-class ACE_Overlapped_IO : public ACE_OVERLAPPED
- // = TITLE
- // A wrapper for Win32 OVERLAPPED.
- //
- // = DESCRIPTION
- // Acts as a magic cookie storing additional state associated
- // with overlapped I/O operations. ReadFile and WriteFile take
- // OVERLAPPED, so we pass in Overlapped_IO. OVERLAPPEDs are
- // returned through GetQueuedCompletionStatus. They are cast
- // back into Overlapped_IOs to get the handler_ etc.
-{
-public:
- // = Initialization and termination methods.
- ACE_Overlapped_IO (ACE_Reactor_Mask mask,
- ACE_Event_Handler *handler,
- ACE_Message_Block *message,
- ACE_Overlapped_File *file,
- ACE_HANDLE event_handle);
-
- ~ACE_Overlapped_IO (void);
- // Death.
-
- int dispatch (u_long bytes_transferred);
- // Callback the appropriate handle_* method on handler_.
-
- int initiate (u_long &bytes_transferred);
- // Call ReadFile or Writefile.
-
- operator ACE_OVERLAPPED * (void);
- // Return this.
-
- void re_init (void);
- // Reset the object to be reused. Calls get_message on the handler_
- // for a new message.
-
- ACE_Reactor_Mask mask_;
- // Reading or writing.
- ACE_Event_Handler *handler_;
- // The IO handler.
- ACE_Message_Block *message_;
- // The current message to send/recv.
- ACE_Overlapped_File *file_;
- // The optional file pointer to update.
-
-private:
- void init (void);
- // Reset everything.
-};
-
-ACE_Overlapped_IO::ACE_Overlapped_IO (ACE_Reactor_Mask mask,
- ACE_Event_Handler *handler,
- ACE_Message_Block *message,
- ACE_Overlapped_File *file,
- ACE_HANDLE event_handle)
- : mask_ (mask),
- handler_ (handler),
- message_ (message),
- file_ (file)
-{
- this->hEvent = event_handle;
- this->init ();
-}
-
-void
-ACE_Overlapped_IO::init (void)
-{
- if (file_ == 0)
- this->Offset = 0;
- else
- this->Offset = file_->offset ();
-
- this->Internal = 0;
- this->InternalHigh = 0;
- this->OffsetHigh = 0;
-}
-
-void
-ACE_Overlapped_IO::re_init (void)
-{
- this->message_ = this->handler_->get_message ();
-
- this->init ();
-}
-
-ACE_Overlapped_IO::~ACE_Overlapped_IO (void)
+ACE_Proactor::ACE_Proactor (size_t number_of_threads,
+ ACE_Timer_Queue *tq)
+ : completion_port_ (0), // This *MUST* be 0, *NOT* ACE_INVALID_HANDLE!!!!
+ number_of_threads_ (number_of_threads)
{
+ this->completion_port_ = ::CreateIoCompletionPort (INVALID_HANDLE_VALUE,
+ this->completion_port_,
+ 0,
+ this->number_of_threads_);
+ if (this->completion_port_ == 0)
+ ACE_ERROR ((LM_ERROR, "%p\n", "CreateIoCompletionPort"));
}
-int
-ACE_Overlapped_IO::dispatch (u_long bytes_transferred)
+ACE_Proactor::~ACE_Proactor (void)
{
- if (this->file_ != 0)
- // Move the file pointer forward.
- file_->lseek (bytes_transferred, SEEK_CUR);
-
- switch (this->mask_)
- {
- case ACE_Event_Handler::WRITE_MASK :
- // Update the message length to reflect what was sent.
- this->message_->rd_ptr (bytes_transferred);
- return handler_->handle_output_complete (this->message_,
- bytes_transferred);
-
- case ACE_Event_Handler::READ_MASK :
- // Update the message length to reflect what was received.
- this->message_->wr_ptr (bytes_transferred);
- return this->handler_->handle_input_complete (this->message_,
- bytes_transferred);
-
- default:
- return -1;
- }
+ this->close ();
}
-// When we port this to use POSIX async I/O, these calls will be
-// replace will generic ACE_OS calls.
-
-int
-ACE_Overlapped_IO::initiate (u_long &bytes_transferred)
+int
+ACE_Proactor::close (void)
{
-#if defined (ACE_WIN32)
- switch (this->mask_)
+ // Close the completion port
+ if (this->completion_port_ != 0)
{
- case ACE_Event_Handler::WRITE_MASK :
- // Try to write.
- return ::WriteFile (this->handler_->get_handle (),
- this->message_->rd_ptr (),
- this->message_->length (),
- &bytes_transferred,
- this);
-
- case ACE_Event_Handler::READ_MASK :
- // READ_MASK is set, so try to read.
- return ::ReadFile (this->handler_->get_handle (),
- this->message_->wr_ptr (),
- this->message_->size (),
- &bytes_transferred,
- this);
- default:
- return -1;
+ int result = ACE_OS::close (this->completion_port_);
+ this->completion_port_ = 0;
+ return result;
}
-#else
- bytes_transferred = bytes_transferred;
- ACE_NOTSUP_RETURN (-1);
-#endif
-}
-
-ACE_Overlapped_IO::operator ACE_OVERLAPPED * (void)
-{
- return (ACE_OVERLAPPED *) this;
+ else
+ return 0;
}
-ACE_Proactor::ACE_Proactor (size_t number_of_threads, ACE_Timer_Queue *tq)
- : timer_queue_ (tq),
- completion_port_ (0), // This *MUST* be 0, *NOT* ACE_INVALID_HANDLE!!!!
- number_of_threads_ (number_of_threads)
+int
+ACE_Proactor::register_handle (ACE_HANDLE handle,
+ const void *completion_key)
{
- if (this->timer_queue_ == 0)
- {
- ACE_NEW (this->timer_queue_, ACE_Timer_List);
- this->delete_timer_queue_ = 1;
- }
-
-#if defined (ACE_WIN32)
- // Create an IO completion port that is not associated with a file
- // handle. This will allow us to use GetQueuedCompletionStatus as a
- // timer mechanism only.
- ACE_HANDLE cp;
-
- cp = ::CreateIoCompletionPort (INVALID_HANDLE_VALUE,
- this->completion_port_,
- (u_long) 0, // 0 completion key
- this->number_of_threads_);
-
- if (cp != 0)
- // Success.
- this->completion_port_ = cp;
- else // Failure.
+ // No locking is needed here as no state changes
+ ACE_HANDLE cp = ::CreateIoCompletionPort (handle,
+ this->completion_port_,
+ (u_long) completion_key,
+ this->number_of_threads_);
+ if (cp == 0)
{
- int error = ACE_OS::last_error ();
+ errno = ::GetLastError ();
// If errno == ERROR_INVALID_PARAMETER, then this handle was
// already registered.
- if (error != ERROR_INVALID_PARAMETER)
- ACE_ERROR ((LM_ERROR,
- "%p CreateIoCompletionPort failed errno = %d.\n",
- "ACE_Proactor::initiate", error));
+ if (errno != ERROR_INVALID_PARAMETER)
+ ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "CreateIoCompletionPort"), -1);
}
-#endif
-}
-
-ACE_Proactor::~ACE_Proactor (void)
-{
- if (this->delete_timer_queue_)
- delete this->timer_queue_;
-}
-
-int
-ACE_Proactor::close (void)
-{
- if (this->completion_port_ != 0)
- ACE_OS::close (this->completion_port_);
-
- // @@ Should we call shared_event_.remove ()?
return 0;
}
-int
-ACE_Proactor::handle_signal (int, siginfo_t *, ucontext_t *)
+int
+ACE_Proactor::handle_events (ACE_Time_Value &wait_time)
{
- ACE_TRACE ("ACE_Proactor::handle_signal");
-
- ACE_Time_Value timeout (0, 0);
-
- // Perform a non-blocking "poll" for all the I/O events that have
- // completed in the I/O completion queue.
-
- int result;
-
- while ((result = this->handle_events (&timeout)) == 1)
- continue;
-
- // If our handle_events failed, we'll report a failure to the
- // ReactorEx.
- return result == -1 ? -1 : 0;
-}
-
-
-int
-ACE_Proactor::schedule_timer (ACE_Event_Handler *handler,
- const void *arg,
- const ACE_Time_Value &delta_time,
- const ACE_Time_Value &interval)
-{
- ACE_TRACE ("ACE_Proactor::schedule_timer");
-
- return this->timer_queue_->schedule
- (handler, arg, timer_queue_->gettimeofday () + delta_time, interval);
+ return 0;
}
-#define ACE_TIMEOUT_OCCURRED 258
-
-int
-ACE_Proactor::handle_events (ACE_Time_Value *max_wait_time)
+int
+ACE_Proactor::handle_events (void)
{
- // Stash the current time -- the destructor of this object will
- // automatically compute how much time elapsed since this method was
- // called.
- ACE_Countdown_Time countdown (max_wait_time);
-
- max_wait_time = timer_queue_->calculate_timeout (max_wait_time);
-
- ACE_Overlapped_IO *overlapped = 0;
+ OVERLAPPED *overlapped = 0;
u_long bytes_transferred = 0;
+ u_long completion_key = 0;
- int error = 0;
-#if defined (ACE_WIN32)
- ACE_HANDLE io_handle = ACE_INVALID_HANDLE;
- int timeout = max_wait_time == 0 ? INFINITE : max_wait_time->msec ();
-
- BOOL result = 0;
-
- // When we port this to use Posix async I/O, this call will be
- // replace will a generic ACE_OS call.
- result = ::GetQueuedCompletionStatus (completion_port_,
- &bytes_transferred,
- (u_long *) &io_handle,
- (ACE_OVERLAPPED **) &overlapped,
- timeout);
-
- // Check for a failed dequeue. This can happen either because
- // of problems with the IO completion port (in which case
- // overlapped == 0) or due to problems with the completion
- // operation (in which case overlapped != 0). In either case,
- // we'll stash the error value so that we can update errno
- // appropriate later on.
- if (result == FALSE)
- error = ACE_OS::last_error ();
-#endif /* ACE_WIN32 */
-
- // Check for any timers that can be handled before we dispatch the
- // dequeued event. Note that this is done irrespective of whether
- // an error occurred.
- this->timer_queue_->expire ();
-
- // @@ Need to make sure that if GetQueuedCompletionStatus fails due
- // to a time out that this information is propagated correctly to
- // the caller!
-
- // GetQueued returned because of a error or timer.
- if (error != 0 && overlapped == 0)
- {
- // @@ What's the WIN32 constant for 258?!?!?!
- if (error == ACE_TIMEOUT_OCCURRED)
- // Returning because of timeout.
- return 0;
- // Returning because of error.
- ACE_ERROR_RETURN ((LM_ERROR,
- "%p GetQueuedCompletionStatus failed errno = %d.\n",
- "ACE_Proactor::handle_events", error), -1);
- }
-
- // Dequeued a failed or successful operation. Dispatch the
- // Event_Handler. Note that GetQueuedCompletionStatus returns false
- // when operations fail, but they still need to be dispatched.
- int dispatch_result = this->dispatch (overlapped, bytes_transferred, error);
-
- // Return -1 (failure), or return 1. Remember that 0 is reserved
- // for timeouts only, so we have to turn dispatch_results to 1. So,
- // if this->dispatch() returns a 1 or 0, we return 1. Otherwise,
- // we return -1.
- return dispatch_result == -1 ? -1 : 1;
-}
-
-// Returns 0 or 1 on success, -1 on failure.
-int
-ACE_Proactor::dispatch (ACE_Overlapped_IO *overlapped,
- u_long bytes_transferred,
- int error)
-{
- // We propagate the error status to the callee by setting errno =
- // error (which is the value returned by ::GetLastError().
- errno = error;
+ // Get the next asynchronous operation that completes
+ BOOL result = ::GetQueuedCompletionStatus (this->completion_port_,
+ &bytes_transferred,
+ &completion_key,
+ &overlapped,
+ INFINITE);
- // Call back the Event_Handler and do what it wants based on the
- // return value.
- int dispatch_result = overlapped->dispatch (bytes_transferred);
- switch (dispatch_result)
+ if (result == FALSE && overlapped == 0)
+ ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "GetQueuedCompletionStatus"), -1);
+ else
{
- case 1: // Start another operation.
- // Reinitialize by getting a new message and resetting the
- // overlapped offset.
- overlapped->re_init ();
- return this->initiate (overlapped);
- case -1: // Handler is closing.
- overlapped->handler_->handle_close
- (overlapped->handler_->get_handle (), overlapped->mask_);
- // Fallthrough.
- default:
- // Handler succeeded, but does not want another operation
- // started.
-
- delete overlapped;
- return 0;
+ // Narrow result
+ ACE_Asynch_Result *asynch_result = (ACE_Asynch_Result *) overlapped;
+ // If errors happen, grab the error
+ if (result == FALSE)
+ errno = ::GetLastError ();
+
+ this->application_specific_code (asynch_result,
+ bytes_transferred,
+ result,
+ (void *) completion_key,
+ errno);
}
+ return 0;
}
-// Returns 0 or 1 on success, -1 on failure.
-int
-ACE_Proactor::initiate (ACE_Event_Handler *handler,
- ACE_Reactor_Mask mask,
- ACE_Message_Block *msg,
- ACE_Overlapped_File *file)
-{
- if (msg == 0)
- msg = handler->get_message ();
-
- // Create the state for this operation. This object "is-a"
- // OVERLAPPED structure, and holds other data and methods for this
- // operation.
- ACE_Overlapped_IO *overlapped = 0;
-
- ACE_NEW_RETURN (overlapped,
- ACE_Overlapped_IO (mask, handler, msg,
- file, this->get_handle ()),
- -1);
-
- // Tell the handler that *this* <Proactor> is dispatching it.
- handler->proactor (this);
- return this->initiate (overlapped);
-}
-
-// Returns 0 or 1 on success, -1 on failure.
-// Returns 1 when initiate succeeded immediately.
-int
-ACE_Proactor::initiate (ACE_Overlapped_IO *overlapped)
+void
+ACE_Proactor::application_specific_code (ACE_Asynch_Result *asynch_result,
+ u_long bytes_transferred,
+ int success,
+ const void *completion_key,
+ u_long error)
{
-#if defined (ACE_WIN32)
- u_long bytes_transferred = 0;
- ACE_HANDLE io_handle = overlapped->handler_->get_handle ();
- ACE_HANDLE cp = 0;
- cp = ::CreateIoCompletionPort (io_handle,
- this->completion_port_,
- (u_long) io_handle,
- this->number_of_threads_);
-
- if (cp != 0)
- // Success.
- this->completion_port_ = cp;
- else // Failure.
+ ACE_SEH_TRY
{
- int error = ACE_OS::last_error ();
- // If errno == ERROR_INVALID_PARAMETER, then this handle was
- // already registered.
- if (error != ERROR_INVALID_PARAMETER)
- ACE_ERROR_RETURN ((LM_ERROR,
- "%p CreateIoCompletionPort failed errno = %d.\n",
- "ACE_Proactor::initiate", error), -1);
+ // Call completion hook
+ asynch_result->complete (bytes_transferred,
+ success,
+ (void *) completion_key,
+ errno);
}
-
- // Initiate a WriteFile/ReadFile. If it succeeds, dispatch the
- // handler.
- int initiate_result = overlapped->initiate (bytes_transferred);
-
- if (initiate_result)
- // Return 1; the OVERLAPPED will still get queued.
- return 1;
-
- // If initiate failed, check for a bad error.
- int err = ACE_OS::last_error ();
- switch (err)
+ ACE_SEH_FINALLY
{
- case ERROR_HANDLE_EOF:
- case ERROR_NETNAME_DELETED:
- // The OVERLAPPED will *not* get queued for this case. Thus, we
- // have to dispatch immediately.
- return this->dispatch (overlapped, bytes_transferred, err);
-
- case ERROR_IO_PENDING:
- // The IO will complete proactively.
- return 0;
- default:
- // This is a *bad* error.
- ACE_ERROR ((LM_ERROR, "I/O error %d\n", err));
- return -1;
+ // This is crucial to prevent memory leaks
+ delete asynch_result;
}
-#else
- overlapped = overlapped;
- ACE_NOTSUP_RETURN (-1);
-#endif /* ACE_WIN32 */
-}
+}
-int
-ACE_Proactor::cancel_io (ACE_Event_Handler *handler)
+int
+ACE_Proactor::run_proactor_event_loop (void)
{
-#if defined (ACE_WIN32) && defined (ACE_HAS_CANCEL_IO)
- return ::CancelIO (handler->get_handle ()) ? -1 : 0;
-#else
- ACE_UNUSED_ARG(handler);
return 0;
-#endif /* ACE_WIN32 */
}
-// ************************************************************
-// ************************************************************
-
-ACE_Overlapped_File::ACE_Overlapped_File (const ACE_Overlapped_File &file)
- : offset_ (file.offset ()),
- file_size_ (0),
- handle_ (file.get_handle ()),
- delete_handle_ (0)
+int
+ACE_Proactor::run_event_loop (ACE_Time_Value &)
{
+ return 0;
}
-ACE_Overlapped_File::ACE_Overlapped_File (void)
- : offset_ (0),
- file_size_ (0),
- handle_ (ACE_INVALID_HANDLE),
- delete_handle_ (0)
+int
+ACE_Proactor::end_event_loop (void)
{
+ return 0;
}
-ACE_Overlapped_File::ACE_Overlapped_File (LPCTSTR file_name,
- int mode,
- int perms)
- : delete_handle_ (1)
+sig_atomic_t
+ACE_Proactor::event_loop_done (void)
{
- this->open (file_name, mode, perms);
+ return 0;
}
-ACE_Overlapped_File::~ACE_Overlapped_File (void)
+int
+ACE_Proactor::wake_up_dispatch_threads (void)
{
- this->close ();
+ return 0;
}
-void
-ACE_Overlapped_File::close (void)
+int
+ACE_Proactor::close_dispatch_threads (int)
{
- if (this->handle_ != ACE_INVALID_HANDLE
- && this->delete_handle_ != 0)
- {
- ACE_OS::close (this->handle_);
- this->handle_ = ACE_INVALID_HANDLE;
- }
+ return 0;
}
-int
-ACE_Overlapped_File::open (ACE_HANDLE handle)
+size_t
+ACE_Proactor::number_of_threads (void) const
{
- this->handle_ = handle;
- this->delete_handle_ = 0;
-
- if (this->handle_ == ACE_INVALID_HANDLE)
- return -1;
- else
- return 0;
+ return this->number_of_threads_;
}
-int
-ACE_Overlapped_File::open (LPCTSTR file_name,
- int access,
- int share,
- LPSECURITY_ATTRIBUTES security,
- int creation,
- int flags,
- ACE_HANDLE template_file)
+void
+ACE_Proactor::number_of_threads (size_t threads)
{
-#if defined (ACE_WIN32)
- if (file_name != 0)
- this->handle_ = ::CreateFile (file_name, access, share,
- security, creation, flags,
- template_file);
-
- if (this->handle_ == ACE_INVALID_HANDLE)
- {
- errno = ENOENT;
- return -1;
- }
- else
- {
- this->delete_handle_ = 1;
- return 0;
- }
-#else
- file_name = file_name;
- access = access;
- share = share;
- security = security;
- creation = creation;
- flags = flags;
- template_file = template_file;
- ACE_NOTSUP_RETURN (-1);
-#endif /* ACE_WIN32 */
+ this->number_of_threads_ = threads;
}
-off_t
-ACE_Overlapped_File::lseek (off_t offset,
- int whence)
-{
- switch (whence)
- {
- case SEEK_SET:
- this->offset_ = offset;
- break;
- case SEEK_CUR:
- this->offset_ += offset;
- break;
- case SEEK_END:
- if (handle_ == ACE_INVALID_HANDLE)
- {
- errno = ENFILE;
- return -1;
- }
- else
- this->offset_ = ACE_OS::filesize (handle_) + offset;
- break;
- default :
- errno = EINVAL;
- ACE_ERROR_RETURN ((LM_ERROR, "ACE_Overlapped_File::lseek"
- "Invalid whence = %d.\n"), -1);
- }
-
- return this->offset_;
-}
+#endif /* ACE_WIN32 */
diff --git a/ace/Proactor.h b/ace/Proactor.h
index 038d33a180a..0bcd65c12de 100644
--- a/ace/Proactor.h
+++ b/ace/Proactor.h
@@ -1,5 +1,5 @@
/* -*- C++ -*- */
-// $Id$
+// $Id: Proactor.h,v
// ============================================================================
//
@@ -10,262 +10,107 @@
// Proactor.h
//
// = AUTHOR
-// Doug Schmidt (schmidt@cs.wustl.edu),
-// Tim Harrison (harrison@cs.wustl.edu), and
-// Irfan Pyarali (ip1@cs.wustl.edu).
+// Irfan Pyarali (irfan@cs.wustl.edu)
+// Tim Harrison (harrison@cs.wustl.edu)
//
// ============================================================================
-#if !defined (ACE_Proactor_H)
-#define ACE_Proactor_H
+#if !defined (ACE_PROACTOR_H)
+#define ACE_PROACTOR_H
#include "ace/OS.h"
-#include "ace/Message_Block.h"
-#include "ace/Timer_Queue.h"
-#include "ace/Event_Handler.h"
-// Forward declaration.
-class ACE_Overlapped_File;
+#if defined (ACE_WIN32)
+// This only works on Win32 platforms
-// Cheshire cat declaration (meow).
-class ACE_Overlapped_IO;
+class ACE_Timer_Queue;
+class ACE_Asynch_Result;
-class ACE_Export ACE_Proactor : public ACE_Event_Handler
-// = TITLE
-// An abstraction for Proactive I/O.
-//
-// = DESCRIPTION
-//
-// The ACE_Proactor encapsulates Win32 overlapped I/O. The ACE_Proactor
-// is also an ACE_Event_Handler which can be registered with the
-// ACE_ReactorEx, as follows:
-//
-// int
-// main ()
-// {
-// // ...
-//
-// // Register Proactor with ReactorEx.
-// ACE_Service_Config::reactorEx ()->register_handler
-// (ACE_Service_Config::proactor ());
-//
-// // Demultiplex all ReactorEx and Proactor events from a single
-// // thread.
-// ACE_Service_Config::run_reactorEx_event_loop ();
-//
-// return 42;
-// }
-//
-// This makes it possible to seemlessly integrate the ACE_Proactor (which
-// handles only overlapped I/O) with other forms of Win32 HANDLE-based
-// synchronization (e.g., Mutexes, Semaphores, Threads, Processes, etc.).
+class ACE_Export ACE_Proactor
+ //
+ // = TITLE
+ //
+ // A Proactor for asynchronous I/O events.
+ //
+ // = DESCRIPTION
+ //
+ // A manager for the I/O completion port.
{
public:
- // = Initialization and termination methods.
+ ACE_Proactor (size_t number_of_threads = 0,
+ ACE_Timer_Queue *tq = 0);
+ // A do nothing constructor.
- ACE_Proactor (size_t number_of_threads = 0, ACE_Timer_Queue *tq = 0);
- // Initialize a proactor. <number_of_threads> is passed to
- // CreateIoCompletionPort.
+ virtual ~ACE_Proactor (void);
+ // Virtual destruction.
- ~ACE_Proactor (void);
- // Destruction deletes timer_queue_ if one wasn't passed in on
- // construction.
+ virtual int close (void);
+ // Close the IO completion port
- int close (void);
- // Close completion port.
+ virtual int register_handle (ACE_HANDLE handle,
+ const void *completion_key);
+ // This method adds the <handle> to the I/O completion port
- // = Event demultiplexing hooks inherited from Event_Handler.
- virtual int handle_signal (int, siginfo_t * = 0, ucontext_t * = 0);
- // Called back when used in the context of the ReactorEx.
+ virtual int handle_events (ACE_Time_Value &wait_time);
+ // Dispatch a single set of events. If <wait_time> elapses before
+ // any events occur, return.
- virtual ACE_HANDLE get_handle (void) const;
- // Returns the underlying Win32 Event HANDLE that is used to
- // integrate I/O completion ports with the ReactorEx.
+ virtual int handle_events (void);
+ // Block indefinitely until at least one event is dispatched.
- // = Event loop methods.
- virtual int handle_events (ACE_Time_Value *max_wait_time = 0);
- virtual int handle_events (ACE_Time_Value &max_wait_time);
- // Main event loop driver that blocks for <max_wait_time> before
- // returning (will return earlier if I/O or signal events occur).
- // Note that <max_wait_time> can be 0, in which case this method blocks
- // until I/O events or signals occur. handle_events just blocks
- // on GetQueuedCompletionStatus at completion_port_. When I/O
- // completions arrive, it calls back the Event_Handler associated
- // with completed I/O operation. Returns 0 if <max_wait_time> elapses
- // before an event occurs, 1 when if an event occured, and -1 on
- // failure.
+ // = Event loop management methods.
+ int run_proactor_event_loop (void);
+ // Run the event loop until the this->handle_events returns -1 or
+ // the this->end_event_loop is invoked.
- // = Communication method.
- virtual int initiate (ACE_Event_Handler *handler,
- ACE_Reactor_Mask mask = ACE_Event_Handler::WRITE_MASK,
- ACE_Message_Block *msg = 0,
- ACE_Overlapped_File *file = 0);
- // Invoke proactive I/O on <handler>. If <msg> == 0, the Proactor
- // will call handler::get_message to obtain an ACE_Message_Block
- // to send/recv according to <mask>. If <mask> ==
- // ACE_Event_Handler::WRITE_MASK, the Proactor calls WriteFile using
- // the <msg> and Event_Handler::get_handle. Returns 1 if the operation
- // succeeded immediately, 0 if the operation is pending (in which
- // case the <handler> will be called back), and -1 if an error
- // occurred. <file> represents the offset into the file to initiate
- // the operation with. When using the proactor for overlapped file
- // I/O, the user is responsible for maintaining the pointer to the
- // file. If you perform multiple initiates with the same or no
- // File_Pointer value, initiate will fill in the same file data into
- // multiple Message_Blocks. <file> is ignored for network I/O or if
- // <file> == 0. If <file> != 0 it is updated (via lseek) respective to
- // the operation initiated.
+ int run_event_loop (ACE_Time_Value &tv);
+ // Run the event loop until the this->handle_events returns -1, the
+ // this->end_event_loop is invoked, or <tv> expires.
- virtual int cancel_io (ACE_Event_Handler *handler);
- // Cancels all pending input and output (I/O) operations that were
- // issued by the calling thread for the specified <handler>. Does
- // not cancel I/O operations issued for the <handler> by other
- // threads. Returns 0 on success; -1 on failure.
+ int end_event_loop (void);
+ // Terminates a this->run_event_loop call.
- // = Timer management.
- virtual int schedule_timer (ACE_Event_Handler *,
- const void *arg,
- const ACE_Time_Value &delta,
- const ACE_Time_Value &interval = ACE_Time_Value::zero);
- // Schedule an <event_handler> that will expire after <delay> amount
- // of time. If it expires then <arg> is passed in as the value to
- // the <event_handler>'s <handle_timeout> callback method. If
- // <interval> is != to <ACE_Time_Value::zero> then it is used to
- // reschedule the <event_handler> automatically. This method
- // returns a <timer_id> that uniquely identifies the <event_handler>
- // in an internal list. This <timer_id> can be used to cancel an
- // <event_handler> before it expires. The cancellation ensures that
- // <timer_ids> are unique up to values of greater than 2 billion
- // timers. As long as timers don't stay around longer than this
- // there should be no problems with accidentally deleting the wrong
- // timer. Returns -1 on failure (which is guaranteed never to be a
- // valid <timer_id>.
+ sig_atomic_t event_loop_done (void);
+ // Report if the Proactor's event loop is finished.
- virtual int cancel_timer (ACE_Event_Handler *handler);
- // Cancel all <Event_Handlers> that match the address of
- // <Event_Handler>. Returns number of handler's cancelled.
+ int wake_up_dispatch_threads (void);
+ // Add wakeup dispatch threads (reinit).
- virtual int cancel_timer (int timer_id, const void **arg = 0);
- // Cancel the single <ACE_Event_Handler> that matches the <timer_id>
- // value (which was returned from the <schedule> method). If arg is
- // non-NULL then it will be set to point to the ``magic cookie''
- // argument passed in when the <Event_Handler> was registered. This
- // makes it possible to free up the memory and avoid memory leaks.
- // Returns 1 if cancellation succeeded and 0 if the <timer_id>
- // wasn't found.
+ int close_dispatch_threads (int wait);
+ // Close all dispatch threads.
+ size_t number_of_threads (void) const;
+ void number_of_threads (size_t threads);
+ // Number of thread used as a parameter to CreatIoCompletionPort
protected:
- ACE_Timer_Queue *timer_queue_;
- // Maintains the list of timers. Defined as a pointer to allow
- // overriding by derived classes...
-
- int delete_timer_queue_;
- // Keeps track of whether we should delete the timer queue (if we
- // didn't create it, then we don't delete it).
-
- virtual int initiate (ACE_Overlapped_IO *overlapped);
- // Helper to initiate.
-
- int dispatch (ACE_Overlapped_IO *overlapped,
- u_long bytes_transfered,
- int error);
- // Helper function which dispatches results to Event_Handlers.
+ void application_specific_code (ACE_Asynch_Result *asynch_result,
+ u_long bytes_transferred,
+ int success,
+ const void *completion_key,
+ u_long error);
+ // Protect against structured exceptions caused by user code when
+ // dispatching handles
ACE_HANDLE completion_port_;
- // The completion_port_ is where <handler> should tell a completed
- // I/O operation to queue up. All proactive I/O operation
- // completions queue up on this handle. This handle is set by the
- // <invoke> method.
-
size_t number_of_threads_;
- // Max threads that will be allowed to run in a completion port.
-
- ACE_Auto_Event shared_event_;
- // Win32 HANDLE associated with every operation that signals when
- // any operation completes (used to transparently integrate the
- // <ACE_Proactor> with the <ACE_ReactorEx>).
};
-class ACE_Export ACE_Overlapped_File
- // = TITLE
- // A wrapper for overlapped file I/O.
- //
- // = DESCRIPTION
- // ACE_Overlapped_File is place-holder for file I/O. When
- // performing overlapped I/O in win32, a file pointer is not
- // managed by the kernel. Instead, the user is responsible for
- // maintaining file pointers for all open files. This wrapper
- // provides an abstraction for a file pointer. The Proactor
- // updates Overlapped_File objects when overlapped I/O operations
- // complete. Eventually, this class may be integrated with
- // ACE_FILE_IO.
+#if defined (__ACE_INLINE__)
+#include "ace/Proactor.i"
+#endif /* __ACE_INLINE__ */
+
+#else /* NOT WIN32 */
+class ACE_Export ACE_Proactor
{
public:
- // = Initialization and termination methods.
- ACE_Overlapped_File (void);
- // Open must be called.
-
- ACE_Overlapped_File (const ACE_Overlapped_File &file);
- // Copy <file>.
-
- ACE_Overlapped_File (LPCTSTR file_name, int mode, int perms = 0);
- // Construction of an ACE_Overlapped_File. Calls open.
-
- ~ACE_Overlapped_File (void);
- // Destruction. Calls close.
-
- int open (LPCTSTR file_name,
- int access = GENERIC_READ,
- int share = FILE_SHARE_READ,
- LPSECURITY_ATTRIBUTES security = 0,
- int creation = OPEN_EXISTING,
- int flags = FILE_ATTRIBUTE_NORMAL,
- ACE_HANDLE template_file = ACE_INVALID_HANDLE);
- // Opens <file_name> according to <mode> and <perms>. This method
- // is equivalent to CreateFile. Returns 0 on success, -1 on failure
- // with errno == reason.
-
- int open (ACE_HANDLE handle);
- // Uses the given <handle>. Returns 0 on success, -1 on failure.
- // This will only return -1 when <handle> == ACE_INVALID_HANDLE.
-
- void close (void);
- // Closes the file if open. Can be called explicitly, or implicitly
- // through the destructor.
-
- off_t offset (void) const;
- // Return the current offset into the file.
-
- off_t size (void) const;
- // Return the current size of the file.
-
- off_t lseek (off_t offset, int whence);
- // If <whence> == SEEK_SET, then the file pointer is set to
- // <offset>. If <whence> == SEEK_CUR, then the file pointer is set
- // to its current location plus <offset>. If <whence> == SEEK_END,
- // the file pointer is set to the size of the file plus <offset>.
-
- ACE_HANDLE get_handle (void) const;
- // Get the handle to the file.
-
-protected:
- off_t offset_;
- // Current offset into the file.
-
- off_t file_size_;
- // Size of the file.
-
- ACE_HANDLE handle_;
- // Handle to the I/O device.
-
- int delete_handle_;
- // Keeps track of whether we need to delete the <handle_>.
+ ACE_Proactor (size_t number_of_threads = 0,
+ ACE_Timer_Queue *tq = 0) {}
+ virtual int handle_events (void) { return -1; }
+ virtual int handle_events (ACE_Time_Value &) { return -1; }
};
-#if defined (__ACE_INLINE__)
-#include "ace/Proactor.i"
-#endif /* __ACE_INLINE__ */
-#endif /* ACE_Proactor_H */
+#endif /* ACE_WIN32 */
+#endif /* ACE_PROACTOR_H */
diff --git a/ace/Proactor.i b/ace/Proactor.i
index 4262ee4699f..6318deb79a0 100644
--- a/ace/Proactor.i
+++ b/ace/Proactor.i
@@ -1,58 +1,2 @@
/* -*- C++ -*- */
// $Id$
-
-
-ACE_INLINE off_t
-ACE_Overlapped_File::offset (void) const
-{
- ACE_TRACE ("ACE_Overlapped_File::offset");
- return this->offset_;
-}
-
-ACE_INLINE off_t
-ACE_Overlapped_File::size (void) const
-{
- ACE_TRACE ("ACE_Overlapped_File::size");
- return ACE_OS::filesize (this->handle_);
-}
-
-ACE_INLINE ACE_HANDLE
-ACE_Overlapped_File::get_handle (void) const
-{
- ACE_TRACE ("ACE_Overlapped_File::get_handle");
- return this->handle_;
-}
-
-ACE_INLINE int
-ACE_Proactor::cancel_timer (ACE_Event_Handler *handler)
-{
- ACE_TRACE ("ACE_Proactor::cancel_timer");
- return this->timer_queue_->cancel (handler);
-}
-
-ACE_INLINE int
-ACE_Proactor::cancel_timer (int timer_id,
- const void **arg)
-{
- ACE_TRACE ("ACE_Proactor::cancel_timer");
- return this->timer_queue_->cancel (timer_id, arg);
-}
-
-ACE_INLINE ACE_HANDLE
-ACE_Proactor::get_handle (void) const
-{
- ACE_TRACE ("ACE_Proactor::get_handle");
-
-#if defined (ACE_WIN32)
- return this->shared_event_.handle ();
-#else
- return ACE_INVALID_HANDLE;
-#endif
-}
-
-ACE_INLINE int
-ACE_Proactor::handle_events (ACE_Time_Value &how_long)
-{
- return this->handle_events (&how_long);
-}
-
diff --git a/ace/ace.mak b/ace/ace.mak
index 237350f4c89..55ad562a218 100644
--- a/ace/ace.mak
+++ b/ace/ace.mak
@@ -31,9 +31,9 @@ NULL=nul
################################################################################
# Begin Project
# PROP Target_Last_Scanned "ace - Win32 Debug"
+MTL=mktyplib.exe
RSC=rc.exe
CPP=cl.exe
-MTL=mktyplib.exe
!IF "$(CFG)" == "ace - Win32 Release"
@@ -57,6 +57,7 @@ CLEAN :
-@erase "$(INTDIR)\Activation_Queue.obj"
-@erase "$(INTDIR)\Addr.obj"
-@erase "$(INTDIR)\ARGV.obj"
+ -@erase "$(INTDIR)\Asynch_IO.obj"
-@erase "$(INTDIR)\CORBA_Handler.obj"
-@erase "$(INTDIR)\Date_Time.obj"
-@erase "$(INTDIR)\DEV.obj"
@@ -212,6 +213,7 @@ LINK32_OBJS= \
"$(INTDIR)\Activation_Queue.obj" \
"$(INTDIR)\Addr.obj" \
"$(INTDIR)\ARGV.obj" \
+ "$(INTDIR)\Asynch_IO.obj" \
"$(INTDIR)\CORBA_Handler.obj" \
"$(INTDIR)\Date_Time.obj" \
"$(INTDIR)\DEV.obj" \
@@ -359,6 +361,7 @@ CLEAN :
-@erase "$(INTDIR)\Activation_Queue.obj"
-@erase "$(INTDIR)\Addr.obj"
-@erase "$(INTDIR)\ARGV.obj"
+ -@erase "$(INTDIR)\Asynch_IO.obj"
-@erase "$(INTDIR)\CORBA_Handler.obj"
-@erase "$(INTDIR)\Date_Time.obj"
-@erase "$(INTDIR)\DEV.obj"
@@ -518,6 +521,7 @@ LINK32_OBJS= \
"$(INTDIR)\Activation_Queue.obj" \
"$(INTDIR)\Addr.obj" \
"$(INTDIR)\ARGV.obj" \
+ "$(INTDIR)\Asynch_IO.obj" \
"$(INTDIR)\CORBA_Handler.obj" \
"$(INTDIR)\Date_Time.obj" \
"$(INTDIR)\DEV.obj" \
@@ -683,15 +687,14 @@ SOURCE=.\UPIPE_Stream.cpp
!IF "$(CFG)" == "ace - Win32 Release"
DEP_CPP_UPIPE=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -707,6 +710,7 @@ DEP_CPP_UPIPE=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -741,9 +745,11 @@ DEP_CPP_UPIPE=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -758,6 +764,7 @@ DEP_CPP_UPIPE=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -807,17 +814,14 @@ DEP_CPP_UPIPE=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_UPIPE=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -833,6 +837,7 @@ DEP_CPP_UPIPE=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -867,9 +872,11 @@ DEP_CPP_UPIPE=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -884,6 +891,7 @@ DEP_CPP_UPIPE=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -945,17 +953,72 @@ DEP_CPP_UPIPE_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
+ {$(INCLUDE)}"\.\Malloc.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Module.cpp"\
+ {$(INCLUDE)}"\.\Module.h"\
+ {$(INCLUDE)}"\.\Module.i"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
{$(INCLUDE)}"\.\SPIPE.h"\
{$(INCLUDE)}"\.\SPIPE.i"\
{$(INCLUDE)}"\.\SPIPE_Addr.h"\
@@ -964,23 +1027,50 @@ DEP_CPP_UPIPE_=\
{$(INCLUDE)}"\.\SPIPE_Stream.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
+ {$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Strategies.h"\
+ {$(INCLUDE)}"\.\Strategies_T.cpp"\
+ {$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
+ {$(INCLUDE)}"\.\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Stream_Modules.h"\
+ {$(INCLUDE)}"\.\Stream_Modules.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
{$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Task.h"\
+ {$(INCLUDE)}"\.\Task.i"\
+ {$(INCLUDE)}"\.\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Task_T.h"\
+ {$(INCLUDE)}"\.\Task_T.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Token.i"\
{$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\UPIPE_Addr.h"\
{$(INCLUDE)}"\.\UPIPE_Connector.h"\
{$(INCLUDE)}"\.\UPIPE_Connector.i"\
{$(INCLUDE)}"\.\UPIPE_Stream.h"\
+ {$(INCLUDE)}"\.\UPIPE_Stream.i"\
{$(INCLUDE)}"\.\ws2tcpip.h"\
@@ -990,17 +1080,14 @@ DEP_CPP_UPIPE_=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_UPIPE_=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -1016,6 +1103,7 @@ DEP_CPP_UPIPE_=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -1050,9 +1138,11 @@ DEP_CPP_UPIPE_=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -1069,6 +1159,7 @@ DEP_CPP_UPIPE_=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -1132,17 +1223,72 @@ DEP_CPP_UPIPE_A=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
+ {$(INCLUDE)}"\.\Malloc.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Module.cpp"\
+ {$(INCLUDE)}"\.\Module.h"\
+ {$(INCLUDE)}"\.\Module.i"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
{$(INCLUDE)}"\.\SPIPE.h"\
{$(INCLUDE)}"\.\SPIPE.i"\
{$(INCLUDE)}"\.\SPIPE_Acceptor.h"\
@@ -1152,25 +1298,50 @@ DEP_CPP_UPIPE_A=\
{$(INCLUDE)}"\.\SPIPE_Stream.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
+ {$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Strategies.h"\
+ {$(INCLUDE)}"\.\Strategies_T.cpp"\
+ {$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
+ {$(INCLUDE)}"\.\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Stream_Modules.h"\
+ {$(INCLUDE)}"\.\Stream_Modules.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
{$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Task.h"\
+ {$(INCLUDE)}"\.\Task.i"\
+ {$(INCLUDE)}"\.\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Task_T.h"\
+ {$(INCLUDE)}"\.\Task_T.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
{$(INCLUDE)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Token.i"\
{$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\UPIPE_Acceptor.h"\
{$(INCLUDE)}"\.\UPIPE_Acceptor.i"\
+ {$(INCLUDE)}"\.\UPIPE_Addr.h"\
{$(INCLUDE)}"\.\UPIPE_Stream.h"\
+ {$(INCLUDE)}"\.\UPIPE_Stream.i"\
{$(INCLUDE)}"\.\ws2tcpip.h"\
@@ -1180,17 +1351,14 @@ DEP_CPP_UPIPE_A=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_UPIPE_A=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -1206,6 +1374,7 @@ DEP_CPP_UPIPE_A=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -1240,9 +1409,11 @@ DEP_CPP_UPIPE_A=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -1260,6 +1431,7 @@ DEP_CPP_UPIPE_A=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -1320,6 +1492,7 @@ DEP_CPP_UNIX_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -1347,6 +1520,7 @@ SOURCE=.\Trace.cpp
DEP_CPP_TRACE=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -1371,17 +1545,14 @@ DEP_CPP_TRACE=\
SOURCE=.\Token_Request_Reply.cpp
DEP_CPP_TOKEN=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -1397,6 +1568,7 @@ DEP_CPP_TOKEN=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -1428,9 +1600,11 @@ DEP_CPP_TOKEN=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -1441,6 +1615,7 @@ DEP_CPP_TOKEN=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -1481,17 +1656,14 @@ DEP_CPP_TOKEN=\
SOURCE=.\Token_Manager.cpp
DEP_CPP_TOKEN_=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -1507,6 +1679,7 @@ DEP_CPP_TOKEN_=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -1538,9 +1711,11 @@ DEP_CPP_TOKEN_=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -1551,6 +1726,7 @@ DEP_CPP_TOKEN_=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -1591,17 +1767,14 @@ DEP_CPP_TOKEN_=\
SOURCE=.\Token_Collection.cpp
DEP_CPP_TOKEN_C=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -1617,6 +1790,7 @@ DEP_CPP_TOKEN_C=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -1648,9 +1822,11 @@ DEP_CPP_TOKEN_C=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -1661,6 +1837,7 @@ DEP_CPP_TOKEN_C=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -1703,6 +1880,7 @@ SOURCE=.\Token.cpp
DEP_CPP_TOKEN_CP=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -1745,6 +1923,7 @@ DEP_CPP_TLI_S=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -1780,6 +1959,7 @@ DEP_CPP_TLI_C=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Handle_Set.i"\
@@ -1819,6 +1999,7 @@ DEP_CPP_TLI_A=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -1857,6 +2038,7 @@ DEP_CPP_TLI_CP=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -1886,6 +2068,7 @@ SOURCE=.\Timer_Queue.cpp
DEP_CPP_TIMER=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -1927,6 +2110,7 @@ SOURCE=.\Time_Request_Reply.cpp
DEP_CPP_TIME_=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -1954,6 +2138,7 @@ SOURCE=.\Thread_Manager.cpp
DEP_CPP_THREA=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -1994,6 +2179,7 @@ SOURCE=.\Thread.cpp
DEP_CPP_THREAD=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -2019,11 +2205,9 @@ DEP_CPP_THREAD=\
SOURCE=.\System_Time.cpp
DEP_CPP_SYSTE=\
- "..\STL\Set.h"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -2031,6 +2215,7 @@ DEP_CPP_SYSTE=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -2042,7 +2227,9 @@ DEP_CPP_SYSTE=\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
@@ -2074,6 +2261,7 @@ SOURCE=.\Synch_Options.cpp
DEP_CPP_SYNCH=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -2100,6 +2288,7 @@ SOURCE=.\Synch.cpp
DEP_CPP_SYNCH_=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -2139,19 +2328,16 @@ SOURCE=.\Svc_Conf_y.cpp
!IF "$(CFG)" == "ace - Win32 Release"
DEP_CPP_SVC_C=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\ARGV.h"\
{$(INCLUDE)}"\.\ARGV.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -2167,6 +2353,7 @@ DEP_CPP_SVC_C=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -2206,9 +2393,11 @@ DEP_CPP_SVC_C=\
{$(INCLUDE)}"\.\Service_Record.h"\
{$(INCLUDE)}"\.\Service_Record.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -2219,12 +2408,15 @@ DEP_CPP_SVC_C=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
{$(INCLUDE)}"\.\Strategies_T.cpp"\
{$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
{$(INCLUDE)}"\.\Stream_Modules.cpp"\
{$(INCLUDE)}"\.\Stream_Modules.h"\
{$(INCLUDE)}"\.\Stream_Modules.i"\
@@ -2264,19 +2456,16 @@ DEP_CPP_SVC_C=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_SVC_C=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\ARGV.h"\
{$(INCLUDE)}"\.\ARGV.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -2292,6 +2481,7 @@ DEP_CPP_SVC_C=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -2331,9 +2521,11 @@ DEP_CPP_SVC_C=\
{$(INCLUDE)}"\.\Service_Record.h"\
{$(INCLUDE)}"\.\Service_Record.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -2344,6 +2536,7 @@ DEP_CPP_SVC_C=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -2399,17 +2592,14 @@ SOURCE=.\Svc_Conf_l.cpp
!IF "$(CFG)" == "ace - Win32 Release"
DEP_CPP_SVC_CO=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -2425,6 +2615,7 @@ DEP_CPP_SVC_CO=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -2441,6 +2632,9 @@ DEP_CPP_SVC_CO=\
{$(INCLUDE)}"\.\Message_Queue.cpp"\
{$(INCLUDE)}"\.\Message_Queue.h"\
{$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Module.cpp"\
+ {$(INCLUDE)}"\.\Module.h"\
+ {$(INCLUDE)}"\.\Module.i"\
{$(INCLUDE)}"\.\Obstack.h"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
@@ -2461,9 +2655,11 @@ DEP_CPP_SVC_CO=\
{$(INCLUDE)}"\.\Service_Record.h"\
{$(INCLUDE)}"\.\Service_Record.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -2474,12 +2670,18 @@ DEP_CPP_SVC_CO=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
{$(INCLUDE)}"\.\Strategies_T.cpp"\
{$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
+ {$(INCLUDE)}"\.\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Stream_Modules.h"\
+ {$(INCLUDE)}"\.\Stream_Modules.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
@@ -2492,6 +2694,11 @@ DEP_CPP_SVC_CO=\
{$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Task.h"\
+ {$(INCLUDE)}"\.\Task.i"\
+ {$(INCLUDE)}"\.\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Task_T.h"\
+ {$(INCLUDE)}"\.\Task_T.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
{$(INCLUDE)}"\.\Thread_Manager.h"\
@@ -2511,17 +2718,14 @@ DEP_CPP_SVC_CO=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_SVC_CO=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -2537,6 +2741,7 @@ DEP_CPP_SVC_CO=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -2576,9 +2781,11 @@ DEP_CPP_SVC_CO=\
{$(INCLUDE)}"\.\Service_Record.h"\
{$(INCLUDE)}"\.\Service_Record.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -2589,6 +2796,7 @@ DEP_CPP_SVC_CO=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -2643,6 +2851,7 @@ SOURCE=.\SV_Shared_Memory.cpp
DEP_CPP_SV_SH=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -2670,6 +2879,7 @@ SOURCE=.\SV_Semaphore_Simple.cpp
DEP_CPP_SV_SE=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -2697,6 +2907,7 @@ SOURCE=.\SV_Semaphore_Complex.cpp
DEP_CPP_SV_SEM=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -2726,6 +2937,7 @@ SOURCE=.\SV_Message_Queue.cpp
DEP_CPP_SV_ME=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -2755,6 +2967,7 @@ SOURCE=.\SV_Message.cpp
DEP_CPP_SV_MES=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -2780,17 +2993,14 @@ DEP_CPP_SV_MES=\
SOURCE=.\SString.cpp
DEP_CPP_SSTRI=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -2806,6 +3016,7 @@ DEP_CPP_SSTRI=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -2837,9 +3048,11 @@ DEP_CPP_SSTRI=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -2850,6 +3063,7 @@ DEP_CPP_SSTRI=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -2892,6 +3106,7 @@ DEP_CPP_SPIPE=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -2927,6 +3142,7 @@ DEP_CPP_SPIPE_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -2964,6 +3180,7 @@ DEP_CPP_SPIPE_A=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -2993,6 +3210,7 @@ DEP_CPP_SPIPE_AC=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -3029,6 +3247,7 @@ DEP_CPP_SPIPE_C=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -3062,6 +3281,7 @@ DEP_CPP_SOCK_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -3099,6 +3319,7 @@ DEP_CPP_SOCK_I=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -3132,6 +3353,7 @@ DEP_CPP_SOCK_D=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -3169,6 +3391,7 @@ DEP_CPP_SOCK_DG=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -3206,7 +3429,10 @@ DEP_CPP_SOCK_DGR=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
@@ -3222,6 +3448,17 @@ DEP_CPP_SOCK_DGR=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
{$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\ws2tcpip.h"\
@@ -3239,6 +3476,7 @@ DEP_CPP_SOCK_C=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Handle_Set.i"\
@@ -3281,6 +3519,7 @@ DEP_CPP_SOCK_CO=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -3316,6 +3555,7 @@ DEP_CPP_SOCK_A=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -3352,10 +3592,9 @@ DEP_CPP_SOCK_A=\
SOURCE=.\Signal.cpp
DEP_CPP_SIGNA=\
- "..\STL\Set.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -3366,7 +3605,9 @@ DEP_CPP_SIGNA=\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
@@ -3397,6 +3638,7 @@ SOURCE=.\Shared_Object.cpp
DEP_CPP_SHARE=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -3424,6 +3666,7 @@ SOURCE=.\Shared_Memory_SV.cpp
DEP_CPP_SHARED=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -3454,6 +3697,7 @@ SOURCE=.\Shared_Memory_MM.cpp
DEP_CPP_SHARED_=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -3487,38 +3731,118 @@ SOURCE=.\Service_Repository.cpp
DEP_CPP_SERVI=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
+ {$(INCLUDE)}"\.\Malloc.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Module.cpp"\
+ {$(INCLUDE)}"\.\Module.h"\
+ {$(INCLUDE)}"\.\Module.i"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Service_Record.h"\
{$(INCLUDE)}"\.\Service_Record.i"\
{$(INCLUDE)}"\.\Service_Repository.h"\
{$(INCLUDE)}"\.\Service_Repository.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
+ {$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
+ {$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Strategies.h"\
+ {$(INCLUDE)}"\.\Strategies_T.cpp"\
+ {$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
+ {$(INCLUDE)}"\.\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Stream_Modules.h"\
+ {$(INCLUDE)}"\.\Stream_Modules.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
{$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Task.h"\
+ {$(INCLUDE)}"\.\Task.i"\
+ {$(INCLUDE)}"\.\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Task_T.h"\
+ {$(INCLUDE)}"\.\Task_T.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Token.i"\
{$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\ws2tcpip.h"\
@@ -3529,17 +3853,14 @@ DEP_CPP_SERVI=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_SERVI=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -3555,6 +3876,7 @@ DEP_CPP_SERVI=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -3593,9 +3915,11 @@ DEP_CPP_SERVI=\
{$(INCLUDE)}"\.\Service_Repository.h"\
{$(INCLUDE)}"\.\Service_Repository.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -3606,6 +3930,7 @@ DEP_CPP_SERVI=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -3662,36 +3987,116 @@ SOURCE=.\Service_Record.cpp
DEP_CPP_SERVIC=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
+ {$(INCLUDE)}"\.\Malloc.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Module.cpp"\
+ {$(INCLUDE)}"\.\Module.h"\
+ {$(INCLUDE)}"\.\Module.i"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Service_Record.h"\
{$(INCLUDE)}"\.\Service_Record.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
+ {$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
+ {$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Strategies.h"\
+ {$(INCLUDE)}"\.\Strategies_T.cpp"\
+ {$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
+ {$(INCLUDE)}"\.\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Stream_Modules.h"\
+ {$(INCLUDE)}"\.\Stream_Modules.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
{$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Task.h"\
+ {$(INCLUDE)}"\.\Task.i"\
+ {$(INCLUDE)}"\.\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Task_T.h"\
+ {$(INCLUDE)}"\.\Task_T.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Token.i"\
{$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\ws2tcpip.h"\
@@ -3702,17 +4107,14 @@ DEP_CPP_SERVIC=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_SERVIC=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -3728,6 +4130,7 @@ DEP_CPP_SERVIC=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -3764,9 +4167,11 @@ DEP_CPP_SERVIC=\
{$(INCLUDE)}"\.\Service_Record.h"\
{$(INCLUDE)}"\.\Service_Record.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -3777,6 +4182,7 @@ DEP_CPP_SERVIC=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -3830,6 +4236,7 @@ SOURCE=.\Service_Object.cpp
DEP_CPP_SERVICE=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -3862,17 +4269,14 @@ SOURCE=.\Service_Manager.cpp
!IF "$(CFG)" == "ace - Win32 Release"
DEP_CPP_SERVICE_=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Get_Opt.h"\
@@ -3890,6 +4294,7 @@ DEP_CPP_SERVICE_=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -3906,6 +4311,9 @@ DEP_CPP_SERVICE_=\
{$(INCLUDE)}"\.\Message_Queue.cpp"\
{$(INCLUDE)}"\.\Message_Queue.h"\
{$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Module.cpp"\
+ {$(INCLUDE)}"\.\Module.h"\
+ {$(INCLUDE)}"\.\Module.i"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Pipe.h"\
@@ -3927,9 +4335,11 @@ DEP_CPP_SERVICE_=\
{$(INCLUDE)}"\.\Service_Repository.h"\
{$(INCLUDE)}"\.\Service_Repository.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -3942,12 +4352,18 @@ DEP_CPP_SERVICE_=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
{$(INCLUDE)}"\.\Strategies_T.cpp"\
{$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
+ {$(INCLUDE)}"\.\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Stream_Modules.h"\
+ {$(INCLUDE)}"\.\Stream_Modules.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
@@ -3959,6 +4375,11 @@ DEP_CPP_SERVICE_=\
{$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Task.h"\
+ {$(INCLUDE)}"\.\Task.i"\
+ {$(INCLUDE)}"\.\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Task_T.h"\
+ {$(INCLUDE)}"\.\Task_T.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
{$(INCLUDE)}"\.\Thread_Manager.h"\
@@ -3978,17 +4399,14 @@ DEP_CPP_SERVICE_=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_SERVICE_=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Get_Opt.h"\
@@ -4006,6 +4424,7 @@ DEP_CPP_SERVICE_=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -4046,9 +4465,11 @@ DEP_CPP_SERVICE_=\
{$(INCLUDE)}"\.\Service_Repository.h"\
{$(INCLUDE)}"\.\Service_Repository.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -4061,6 +4482,7 @@ DEP_CPP_SERVICE_=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -4112,17 +4534,14 @@ DEP_CPP_SERVICE_=\
SOURCE=.\Service_Main.cpp
DEP_CPP_SERVICE_M=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -4138,6 +4557,7 @@ DEP_CPP_SERVICE_M=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -4169,9 +4589,11 @@ DEP_CPP_SERVICE_M=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -4182,6 +4604,7 @@ DEP_CPP_SERVICE_M=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -4223,12 +4646,6 @@ SOURCE=.\Service_Config.cpp
!IF "$(CFG)" == "ace - Win32 Release"
DEP_CPP_SERVICE_C=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
@@ -4238,7 +4655,10 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\Auto_Ptr.cpp"\
{$(INCLUDE)}"\.\Auto_Ptr.h"\
{$(INCLUDE)}"\.\Auto_Ptr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Get_Opt.h"\
@@ -4256,6 +4676,7 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -4272,6 +4693,9 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\Message_Queue.cpp"\
{$(INCLUDE)}"\.\Message_Queue.h"\
{$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Module.cpp"\
+ {$(INCLUDE)}"\.\Module.h"\
+ {$(INCLUDE)}"\.\Module.i"\
{$(INCLUDE)}"\.\Obstack.h"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
@@ -4296,9 +4720,11 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\Service_Repository.h"\
{$(INCLUDE)}"\.\Service_Repository.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -4311,12 +4737,18 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
{$(INCLUDE)}"\.\Strategies_T.cpp"\
{$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
+ {$(INCLUDE)}"\.\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Stream_Modules.h"\
+ {$(INCLUDE)}"\.\Stream_Modules.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
@@ -4329,6 +4761,11 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Task.h"\
+ {$(INCLUDE)}"\.\Task.i"\
+ {$(INCLUDE)}"\.\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Task_T.h"\
+ {$(INCLUDE)}"\.\Task_T.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
{$(INCLUDE)}"\.\Thread_Manager.h"\
@@ -4348,12 +4785,6 @@ DEP_CPP_SERVICE_C=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_SERVICE_C=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
@@ -4363,7 +4794,10 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\Auto_Ptr.cpp"\
{$(INCLUDE)}"\.\Auto_Ptr.h"\
{$(INCLUDE)}"\.\Auto_Ptr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Get_Opt.h"\
@@ -4381,6 +4815,7 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -4424,9 +4859,11 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\Service_Repository.h"\
{$(INCLUDE)}"\.\Service_Repository.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -4439,6 +4876,7 @@ DEP_CPP_SERVICE_C=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -4491,17 +4929,14 @@ DEP_CPP_SERVICE_C=\
SOURCE=.\Remote_Tokens.cpp
DEP_CPP_REMOT=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -4517,6 +4952,7 @@ DEP_CPP_REMOT=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -4550,9 +4986,11 @@ DEP_CPP_REMOT=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\Singleton.cpp"\
{$(INCLUDE)}"\.\Singleton.h"\
@@ -4568,6 +5006,7 @@ DEP_CPP_REMOT=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -4608,17 +5047,14 @@ DEP_CPP_REMOT=\
SOURCE=.\Remote_Name_Space.cpp
DEP_CPP_REMOTE=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -4634,6 +5070,7 @@ DEP_CPP_REMOTE=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -4669,9 +5106,11 @@ DEP_CPP_REMOTE=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -4684,6 +5123,7 @@ DEP_CPP_REMOTE=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -4722,17 +5162,14 @@ DEP_CPP_REMOTE=\
SOURCE=.\Read_Buffer.cpp
DEP_CPP_READ_=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -4748,6 +5185,7 @@ DEP_CPP_READ_=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -4781,9 +5219,11 @@ DEP_CPP_READ_=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -4794,6 +5234,7 @@ DEP_CPP_READ_=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -4832,17 +5273,14 @@ DEP_CPP_READ_=\
SOURCE=.\Reactor.cpp
DEP_CPP_REACT=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -4858,6 +5296,7 @@ DEP_CPP_REACT=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -4889,9 +5328,11 @@ DEP_CPP_REACT=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -4906,6 +5347,7 @@ DEP_CPP_REACT=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -4947,6 +5389,7 @@ SOURCE=.\Profile_Timer.cpp
DEP_CPP_PROFI=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\High_Res_Timer.h"\
{$(INCLUDE)}"\.\High_Res_Timer.i"\
@@ -4977,6 +5420,7 @@ SOURCE=.\Process_Manager.cpp
DEP_CPP_PROCE=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -5019,6 +5463,7 @@ DEP_CPP_PIPE_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -5062,17 +5507,14 @@ SOURCE=.\Parse_Node.cpp
!IF "$(CFG)" == "ace - Win32 Release"
DEP_CPP_PARSE=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -5088,6 +5530,7 @@ DEP_CPP_PARSE=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -5128,9 +5571,11 @@ DEP_CPP_PARSE=\
{$(INCLUDE)}"\.\Service_Repository.h"\
{$(INCLUDE)}"\.\Service_Repository.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -5141,12 +5586,15 @@ DEP_CPP_PARSE=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
{$(INCLUDE)}"\.\Strategies_T.cpp"\
{$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\Stream.cpp"\
{$(INCLUDE)}"\.\Stream.h"\
+ {$(INCLUDE)}"\.\Stream.i"\
{$(INCLUDE)}"\.\Stream_Modules.cpp"\
{$(INCLUDE)}"\.\Stream_Modules.h"\
{$(INCLUDE)}"\.\Stream_Modules.i"\
@@ -5185,17 +5633,14 @@ DEP_CPP_PARSE=\
!ELSEIF "$(CFG)" == "ace - Win32 Debug"
DEP_CPP_PARSE=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -5211,6 +5656,7 @@ DEP_CPP_PARSE=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -5251,9 +5697,11 @@ DEP_CPP_PARSE=\
{$(INCLUDE)}"\.\Service_Repository.h"\
{$(INCLUDE)}"\.\Service_Repository.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -5264,6 +5712,7 @@ DEP_CPP_PARSE=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -5315,11 +5764,11 @@ DEP_CPP_PARSE=\
SOURCE=.\OS.cpp
DEP_CPP_OS_CP=\
- "..\STL\Set.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\ARGV.h"\
{$(INCLUDE)}"\.\ARGV.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -5332,6 +5781,7 @@ DEP_CPP_OS_CP=\
{$(INCLUDE)}"\.\Sched_Params.h"\
{$(INCLUDE)}"\.\Sched_Params.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
@@ -5362,6 +5812,7 @@ SOURCE=.\Obstack.cpp
DEP_CPP_OBSTA=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -5393,18 +5844,15 @@ DEP_CPP_NAMIN=\
"..\STL\function.h"\
"..\STL\iterator.h"\
"..\STL\pair.h"\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
"..\STL\vector.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Get_Opt.h"\
@@ -5427,6 +5875,7 @@ DEP_CPP_NAMIN=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -5465,9 +5914,11 @@ DEP_CPP_NAMIN=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -5480,6 +5931,7 @@ DEP_CPP_NAMIN=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -5522,17 +5974,14 @@ NODEP_CPP_NAMIN=\
SOURCE=.\Name_Space.cpp
DEP_CPP_NAME_=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -5548,6 +5997,7 @@ DEP_CPP_NAME_=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -5582,9 +6032,11 @@ DEP_CPP_NAME_=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -5597,6 +6049,7 @@ DEP_CPP_NAME_=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -5637,6 +6090,7 @@ SOURCE=.\Name_Request_Reply.cpp
DEP_CPP_NAME_R=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -5662,17 +6116,14 @@ DEP_CPP_NAME_R=\
SOURCE=.\Name_Proxy.cpp
DEP_CPP_NAME_P=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -5688,6 +6139,7 @@ DEP_CPP_NAME_P=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -5721,9 +6173,11 @@ DEP_CPP_NAME_P=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -5736,6 +6190,7 @@ DEP_CPP_NAME_P=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -5774,17 +6229,14 @@ DEP_CPP_NAME_P=\
SOURCE=.\Multiplexor.cpp
DEP_CPP_MULTI=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -5800,6 +6252,7 @@ DEP_CPP_MULTI=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -5836,9 +6289,11 @@ DEP_CPP_MULTI=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -5849,6 +6304,7 @@ DEP_CPP_MULTI=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -5895,17 +6351,14 @@ DEP_CPP_MULTI=\
SOURCE=.\Message_Block.cpp
DEP_CPP_MESSA=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -5921,6 +6374,7 @@ DEP_CPP_MESSA=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -5952,9 +6406,11 @@ DEP_CPP_MESSA=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -5965,6 +6421,7 @@ DEP_CPP_MESSA=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -6003,10 +6460,9 @@ DEP_CPP_MESSA=\
SOURCE=.\Memory_Pool.cpp
DEP_CPP_MEMOR=\
- "..\STL\Set.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -6021,7 +6477,9 @@ DEP_CPP_MEMOR=\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
@@ -6052,6 +6510,7 @@ SOURCE=.\Mem_Map.cpp
DEP_CPP_MEM_M=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -6077,11 +6536,9 @@ DEP_CPP_MEM_M=\
SOURCE=.\Malloc.cpp
DEP_CPP_MALLO=\
- "..\STL\Set.h"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -6089,6 +6546,7 @@ DEP_CPP_MALLO=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -6100,7 +6558,9 @@ DEP_CPP_MALLO=\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
@@ -6133,6 +6593,7 @@ DEP_CPP_LSOCK=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -6176,6 +6637,7 @@ DEP_CPP_LSOCK_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -6213,6 +6675,7 @@ DEP_CPP_LSOCK_C=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -6261,6 +6724,7 @@ DEP_CPP_LSOCK_CO=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -6300,6 +6764,7 @@ DEP_CPP_LSOCK_A=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -6348,6 +6813,7 @@ DEP_CPP_LSOCK_CP=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -6379,6 +6845,7 @@ SOURCE=.\Log_Record.cpp
DEP_CPP_LOG_R=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -6402,12 +6869,11 @@ DEP_CPP_LOG_R=\
SOURCE=.\Log_Msg.cpp
DEP_CPP_LOG_M=\
- "..\STL\Set.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -6426,7 +6892,9 @@ DEP_CPP_LOG_M=\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SPIPE.h"\
{$(INCLUDE)}"\.\SPIPE.i"\
@@ -6463,17 +6931,14 @@ DEP_CPP_LOG_M=\
SOURCE=.\Local_Tokens.cpp
DEP_CPP_LOCAL=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -6489,6 +6954,7 @@ DEP_CPP_LOCAL=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -6520,9 +6986,11 @@ DEP_CPP_LOCAL=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -6533,6 +7001,7 @@ DEP_CPP_LOCAL=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -6573,17 +7042,14 @@ DEP_CPP_LOCAL=\
SOURCE=.\Local_Name_Space.cpp
DEP_CPP_LOCAL_=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -6604,6 +7070,7 @@ DEP_CPP_LOCAL_=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -6639,9 +7106,11 @@ DEP_CPP_LOCAL_=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -6654,6 +7123,7 @@ DEP_CPP_LOCAL_=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -6694,6 +7164,7 @@ SOURCE=.\IPC_SAP.cpp
DEP_CPP_IPC_S=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -6721,6 +7192,7 @@ SOURCE=.\IO_SAP.cpp
DEP_CPP_IO_SA=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IO_SAP.h"\
{$(INCLUDE)}"\.\IO_SAP.i"\
@@ -6759,6 +7231,7 @@ DEP_CPP_INET_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
@@ -6786,6 +7259,7 @@ SOURCE=.\High_Res_Timer.cpp
DEP_CPP_HIGH_=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\High_Res_Timer.h"\
{$(INCLUDE)}"\.\High_Res_Timer.i"\
@@ -6813,6 +7287,7 @@ SOURCE=.\Handle_Set.cpp
DEP_CPP_HANDL=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Handle_Set.i"\
@@ -6840,6 +7315,7 @@ SOURCE=.\Get_Opt.cpp
DEP_CPP_GET_O=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Get_Opt.h"\
{$(INCLUDE)}"\.\Get_Opt.i"\
@@ -6869,6 +7345,7 @@ DEP_CPP_FILE_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FILE.h"\
{$(INCLUDE)}"\.\FILE.i"\
@@ -6904,6 +7381,7 @@ DEP_CPP_FILE_C=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FILE.h"\
{$(INCLUDE)}"\.\FILE.i"\
@@ -6941,6 +7419,7 @@ DEP_CPP_FILE_A=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FILE_Addr.h"\
{$(INCLUDE)}"\.\FILE_Addr.i"\
@@ -6970,6 +7449,7 @@ DEP_CPP_FILE_CP=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FILE.h"\
{$(INCLUDE)}"\.\FILE.i"\
@@ -7001,6 +7481,7 @@ SOURCE=.\FIFO_Send_Msg.cpp
DEP_CPP_FIFO_=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FIFO.h"\
{$(INCLUDE)}"\.\FIFO.i"\
@@ -7034,6 +7515,7 @@ SOURCE=.\FIFO_Send.cpp
DEP_CPP_FIFO_S=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FIFO.h"\
{$(INCLUDE)}"\.\FIFO.i"\
@@ -7065,6 +7547,7 @@ SOURCE=.\FIFO_Recv_Msg.cpp
DEP_CPP_FIFO_R=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FIFO.h"\
{$(INCLUDE)}"\.\FIFO.i"\
@@ -7098,6 +7581,7 @@ SOURCE=.\FIFO_Recv.cpp
DEP_CPP_FIFO_RE=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FIFO.h"\
{$(INCLUDE)}"\.\FIFO.i"\
@@ -7127,11 +7611,9 @@ DEP_CPP_FIFO_RE=\
SOURCE=.\Event_Handler.cpp
DEP_CPP_EVENT=\
- "..\STL\Set.h"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -7139,6 +7621,7 @@ DEP_CPP_EVENT=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -7152,7 +7635,9 @@ DEP_CPP_EVENT=\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
@@ -7183,6 +7668,7 @@ SOURCE=.\Dynamic.cpp
DEP_CPP_DYNAM=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Dynamic.h"\
{$(INCLUDE)}"\.\Dynamic.i"\
@@ -7210,6 +7696,7 @@ SOURCE=.\Dump.cpp
DEP_CPP_DUMP_=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Dump.h"\
{$(INCLUDE)}"\.\Dump_T.cpp"\
@@ -7253,6 +7740,7 @@ DEP_CPP_DEV_I=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\DEV.h"\
{$(INCLUDE)}"\.\DEV.i"\
@@ -7288,6 +7776,7 @@ DEP_CPP_DEV_C=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\DEV.h"\
{$(INCLUDE)}"\.\DEV.i"\
@@ -7325,6 +7814,7 @@ DEP_CPP_DEV_A=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\DEV_Addr.h"\
{$(INCLUDE)}"\.\DEV_Addr.i"\
@@ -7354,6 +7844,7 @@ DEP_CPP_DEV_CP=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\DEV.h"\
{$(INCLUDE)}"\.\DEV.i"\
@@ -7385,6 +7876,7 @@ SOURCE=.\Date_Time.cpp
DEP_CPP_DATE_=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Date_Time.h"\
{$(INCLUDE)}"\.\Date_Time.i"\
@@ -7410,19 +7902,16 @@ DEP_CPP_DATE_=\
SOURCE=.\CORBA_Handler.cpp
DEP_CPP_CORBA=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\CORBA_Handler.h"\
{$(INCLUDE)}"\.\CORBA_Handler.i"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -7438,6 +7927,7 @@ DEP_CPP_CORBA=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -7469,9 +7959,11 @@ DEP_CPP_CORBA=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -7482,6 +7974,7 @@ DEP_CPP_CORBA=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -7524,6 +8017,7 @@ DEP_CPP_ARGV_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\ARGV.h"\
{$(INCLUDE)}"\.\ARGV.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -7551,6 +8045,7 @@ DEP_CPP_ADDR_=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -7574,17 +8069,14 @@ DEP_CPP_ADDR_=\
SOURCE=.\ACE.cpp
DEP_CPP_ACE_C=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -7600,6 +8092,7 @@ DEP_CPP_ACE_C=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -7631,9 +8124,11 @@ DEP_CPP_ACE_C=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -7644,6 +8139,7 @@ DEP_CPP_ACE_C=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -7686,6 +8182,7 @@ DEP_CPP_SOCK_CP=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
@@ -7715,6 +8212,7 @@ SOURCE=.\FIFO.cpp
DEP_CPP_FIFO_C=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\FIFO.h"\
{$(INCLUDE)}"\.\FIFO.i"\
@@ -7742,119 +8240,39 @@ DEP_CPP_FIFO_C=\
SOURCE=.\Proactor.cpp
DEP_CPP_PROAC=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
- {$(INCLUDE)}"\.\AcceptorEx.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Asynch_IO.h"\
+ {$(INCLUDE)}"\.\Asynch_IO.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Dynamic.h"\
- {$(INCLUDE)}"\.\Dynamic.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
- {$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
- {$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
- {$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\Message_Block.h"\
- {$(INCLUDE)}"\.\Message_Block.i"\
- {$(INCLUDE)}"\.\Message_Queue.cpp"\
- {$(INCLUDE)}"\.\Message_Queue.h"\
- {$(INCLUDE)}"\.\Message_Queue.i"\
- {$(INCLUDE)}"\.\Module.cpp"\
- {$(INCLUDE)}"\.\Module.h"\
- {$(INCLUDE)}"\.\Module.i"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
{$(INCLUDE)}"\.\Proactor.h"\
{$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
- {$(INCLUDE)}"\.\Reactor.i"\
- {$(INCLUDE)}"\.\ReactorEx.h"\
- {$(INCLUDE)}"\.\ReactorEx.i"\
- {$(INCLUDE)}"\.\Service_Config.h"\
- {$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- {$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Strategies.h"\
- {$(INCLUDE)}"\.\Strategies_T.cpp"\
- {$(INCLUDE)}"\.\Strategies_T.h"\
- {$(INCLUDE)}"\.\Stream_Modules.cpp"\
- {$(INCLUDE)}"\.\Stream_Modules.h"\
- {$(INCLUDE)}"\.\Stream_Modules.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
- {$(INCLUDE)}"\.\Svc_Handler.cpp"\
- {$(INCLUDE)}"\.\Svc_Handler.h"\
- {$(INCLUDE)}"\.\Svc_Handler.i"\
{$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
{$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Task.h"\
- {$(INCLUDE)}"\.\Task.i"\
- {$(INCLUDE)}"\.\Task_T.cpp"\
- {$(INCLUDE)}"\.\Task_T.h"\
- {$(INCLUDE)}"\.\Task_T.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Timer_List.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
{$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\ws2tcpip.h"\
@@ -7868,17 +8286,14 @@ DEP_CPP_PROAC=\
SOURCE=.\ReactorEx.cpp
DEP_CPP_REACTO=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -7894,6 +8309,7 @@ DEP_CPP_REACTO=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -7925,9 +8341,11 @@ DEP_CPP_REACTO=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -7938,6 +8356,7 @@ DEP_CPP_REACTO=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -7977,17 +8396,14 @@ DEP_CPP_REACTO=\
SOURCE=.\Token_Invariants.cpp
DEP_CPP_TOKEN_I=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -8003,6 +8419,7 @@ DEP_CPP_TOKEN_I=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -8034,9 +8451,11 @@ DEP_CPP_TOKEN_I=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -8047,6 +8466,7 @@ DEP_CPP_TOKEN_I=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -8087,11 +8507,11 @@ DEP_CPP_TOKEN_I=\
SOURCE=.\Process.cpp
DEP_CPP_PROCES=\
- ".\E\Process.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\ARGV.h"\
{$(INCLUDE)}"\.\ARGV.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -8099,6 +8519,7 @@ DEP_CPP_PROCES=\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Process.h"\
{$(INCLUDE)}"\.\Process.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
@@ -8120,6 +8541,7 @@ DEP_CPP_TTY_I=\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\DEV.h"\
{$(INCLUDE)}"\.\DEV.i"\
@@ -8154,18 +8576,15 @@ DEP_CPP_TTY_I=\
SOURCE=.\Activation_Queue.cpp
DEP_CPP_ACTIV=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Activation_Queue.h"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -8181,6 +8600,7 @@ DEP_CPP_ACTIV=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -8213,9 +8633,11 @@ DEP_CPP_ACTIV=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -8226,6 +8648,7 @@ DEP_CPP_ACTIV=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -8266,6 +8689,7 @@ SOURCE=.\Method_Object.cpp
DEP_CPP_METHO=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -8300,6 +8724,7 @@ DEP_CPP_REGIS=\
"..\STL\vector.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -8328,17 +8753,14 @@ NODEP_CPP_REGIS=\
SOURCE=.\Task.cpp
DEP_CPP_TASK_=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -8354,6 +8776,7 @@ DEP_CPP_TASK_=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -8388,9 +8811,11 @@ DEP_CPP_TASK_=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -8401,6 +8826,7 @@ DEP_CPP_TASK_=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -8447,17 +8873,14 @@ DEP_CPP_TASK_=\
SOURCE=.\Strategies.cpp
DEP_CPP_STRAT=\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -8473,6 +8896,7 @@ DEP_CPP_STRAT=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -8504,9 +8928,11 @@ DEP_CPP_STRAT=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -8517,6 +8943,7 @@ DEP_CPP_STRAT=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -8562,18 +8989,15 @@ DEP_CPP_REGIST=\
"..\STL\function.h"\
"..\STL\iterator.h"\
"..\STL\pair.h"\
- "..\STL\Set.h"\
- "..\STL\Stack.h"\
"..\STL\vector.h"\
- ".\Dispatcher.h"\
- ".\Dispatcher.i"\
- ".\E\Malloc.h"\
- ".\E\Signal.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
@@ -8589,6 +9013,7 @@ DEP_CPP_REGIST=\
{$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
{$(INCLUDE)}"\.\Malloc.i"\
{$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
@@ -8626,9 +9051,11 @@ DEP_CPP_REGIST=\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
{$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
@@ -8641,6 +9068,7 @@ DEP_CPP_REGIST=\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
{$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
{$(INCLUDE)}"\.\Stack.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Strategies.h"\
@@ -8685,6 +9113,7 @@ SOURCE=.\Timer_List.cpp
DEP_CPP_TIMER_=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -8725,9 +9154,9 @@ DEP_CPP_TIMER_=\
SOURCE=.\Timer_Heap.cpp
DEP_CPP_TIMER_H=\
- "..\STL\Set.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Event_Handler.i"\
@@ -8738,6 +9167,7 @@ DEP_CPP_TIMER_H=\
{$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
{$(INCLUDE)}"\.\Set.i"\
{$(INCLUDE)}"\.\SString.h"\
{$(INCLUDE)}"\.\SString.i"\
@@ -8772,6 +9202,7 @@ SOURCE=.\Sched_Params.cpp
DEP_CPP_SCHED=\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
@@ -8792,6 +9223,117 @@ DEP_CPP_SCHED=\
# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\Asynch_IO.cpp
+DEP_CPP_ASYNC=\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Asynch_IO.h"\
+ {$(INCLUDE)}"\.\Asynch_IO.i"\
+ {$(INCLUDE)}"\.\config-win32-common.h"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Dispatcher.h"\
+ {$(INCLUDE)}"\.\Dispatcher.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Malloc.h"\
+ {$(INCLUDE)}"\.\Malloc.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Set.h"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\Signal.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SString.h"\
+ {$(INCLUDE)}"\.\SString.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Stack.h"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Strategies.h"\
+ {$(INCLUDE)}"\.\Strategies_T.cpp"\
+ {$(INCLUDE)}"\.\Strategies_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Token.i"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\ws2tcpip.h"\
+
+
+"$(INTDIR)\Asynch_IO.obj" : $(SOURCE) $(DEP_CPP_ASYNC) "$(INTDIR)"
+
+
+# End Source File
# End Target
# End Project
################################################################################
diff --git a/ace/ace.mdp b/ace/ace.mdp
index bbac37c7dca..c9a72393ae6 100644
--- a/ace/ace.mdp
+++ b/ace/ace.mdp
Binary files differ