diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-12-10 08:45:20 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-12-10 08:45:20 +0000 |
commit | 7db29418e44bdce4e3df96493b852118cdd82a4a (patch) | |
tree | 4e7c3861e67804fbca3da1d49652aa036f0edf31 | |
parent | 3d462be371ad3548e4d2d68abf4f95372e7c529f (diff) | |
download | ATCD-7db29418e44bdce4e3df96493b852118cdd82a4a.tar.gz |
*** empty log message ***
48 files changed, 3752 insertions, 11368 deletions
diff --git a/ChangeLog-96b b/ChangeLog-96b index be5946fa115..e2147294ef6 100644 --- a/ChangeLog-96b +++ b/ChangeLog-96b @@ -1,3 +1,104 @@ +Mon Dec 9 02:06:48 1996 Irfan Pyarali <irfan@flamenco.cs.wustl.edu> + + * ace/SString: Made accessors return const references. + + * ace/OS.h: Added macro ACE_WIDE_STRING which allows the + conversion of char* to wchar_t* when UNICODE is turned on. + + * ace: Added/Fixed UNICODE behavior of the following: + + /* Local_Name_Space */ + ACE_Local_Name_Space_T::context_file_ + + /* ACE */ + ACE::basename + + /* Token */ + ACE_Token::ACE_Token + + /* Synch */ + ACE_File_Lock::ACE_File_Lock + + /* SPIPE_Addr */ + ACE_SPIPE_Addr::addr_to_string + ACE_SPIPE_Addr::set + + /* FILE_Addr */ + ACE_FILE_Addr::addr_to_string + + /* DEV_Addr */ + ACE_DEV_Addr::addr_to_string + + /* Addr */ + ACE_Addr::addr_to_string + ACE_Addr::string_to_addr + Note: These two were removed from the base class since they are + not common to all Address classes. + + /* Malloc */ + ACE_Allocator_Adapter::ACE_Allocator_Adapter + ACE_Malloc::ACE_Malloc + + /* Process */ + ACE_Process::start + + /* Shared_Memory_MM */ + ACE_Shared_Memory_MM::ACE_Shared_Memory_MM + ACE_Shared_Memory_MM::open + + /* Proactor */ + ACE_Overlapped_File::ACE_Overlapped_File + ACE_Overlapped_File::open + + /* Log_msg */ + ACE_Log_Msg::open + + /* Naming_Context */ + ACE_Name_Options::namespace_dir + ACE_Name_Options::process_dir + ACE_Name_Options::database + + /* Registry */ + ACE_Predefined_Naming_Contexts::connect + ACE_Predefined_Naming_Contexts::is_local_host + + /* SString */ + ACE_CString::ACE_CString + + /* Mem_Map */ + ACE_Mem_Map::ACE_Mem_Map + ACE_Mem_Map::map + + /* Service_Config */ + ACE_Service_Config::logger_key_ + + /* System_Time */ + ACE_System_Time::ACE_System_Time + + /* Memory_Pool */ + ACE_Sbrk_Memory_Pool::ACE_Sbrk_Memory_Pool + ACE_Shared_Memory_Pool::ACE_Shared_Memory_Pool + ACE_Local_Memory_Pool::ACE_Local_Memory_Pool + ACE_MMAP_Memory_Pool::ACE_MMAP_Memory_Pool + ACE_Lite_MMAP_Memory_Pool::ACE_Lite_MMAP_Memory_Pool + + /* OS */ + ACE_OS::strstr + ACE_OS::strdup + ACE_OS::hostname + ACE_OS::open + ACE_OS::unlink + ACE_OS::dlopen + ACE_OS::dlsym + ACE_OS::cuserid + ACE_OS::fork_exec + ACE_OS::sprintf + ACE_OS::access + ACE_OS::fopen + ACE_OS::getenv + ACE_OS::system + + Sun Dec 8 19:00:45 1996 Tim H. Harrison <harrison@lambada.cs.wustl.edu> * ace/Reactor.cpp (handle_events): Updated this method to use the diff --git a/ace/ACE.cpp b/ace/ACE.cpp index 0efc72db3f4..1a99e4ef648 100644 --- a/ace/ACE.cpp +++ b/ace/ACE.cpp @@ -212,7 +212,7 @@ const char * ACE::basename (const char *pathname, char delim) { ACE_TRACE ("ACE::basename"); - const char *temp = ::strrchr (pathname, delim); + const char *temp = ACE_OS::strrchr (pathname, delim); if (temp == 0) return pathname; @@ -220,6 +220,20 @@ ACE::basename (const char *pathname, char delim) return temp + 1; } +#if defined (ACE_HAS_UNICODE) +const wchar_t * +ACE::basename (const wchar_t *pathname, wchar_t delim) +{ + ACE_TRACE ("ACE::basename"); + const wchar_t *temp = ACE_OS::strrchr (pathname, delim); + + if (temp == 0) + return pathname; + else + return temp + 1; +} +#endif /* ACE_HAS_UNICODE */ + // Miscellaneous static methods used throughout ACE. ssize_t diff --git a/ace/ACE.h b/ace/ACE.h index e9441a3b44b..b6d095972f6 100644 --- a/ace/ACE.h +++ b/ace/ACE.h @@ -231,6 +231,11 @@ public: static const char *basename (const char *pathname, char delim); // Returns the "basename" of a <pathname>. +#if defined (ACE_HAS_UNICODE) + static const wchar_t *basename (const wchar_t *pathname, wchar_t delim); + // Returns the "basename" of a <pathname>. +#endif /* ACE_HAS_UNICODE */ + static char *timestamp (char date_and_time[], int time_len); // Returns the current timestamp in the form // "hour:minute:second:microsecond." The month, day, and year are diff --git a/ace/Addr.h b/ace/Addr.h index 3108674edc3..7b76d325b28 100644 --- a/ace/Addr.h +++ b/ace/Addr.h @@ -53,12 +53,6 @@ public: virtual void set_addr (void *, int len); // Set a pointer to the address. - virtual int addr_to_string (char addr[], size_t) const; - // Transform the current address into string format. - - virtual int string_to_addr (const char addr[]); - // Transform the string into the current addressing format. - // = Equality/inequality tests virtual int operator == (const ACE_Addr &sap) const; // Check for address equality. diff --git a/ace/Addr.i b/ace/Addr.i index 30ce46a1f62..da89a01ed17 100644 --- a/ace/Addr.i +++ b/ace/Addr.i @@ -16,22 +16,6 @@ ACE_Addr::set_addr (void *, int) { } -// Transform the current address into string format. - -ACE_INLINE int -ACE_Addr::addr_to_string (char [], size_t) const -{ - return -1; -} - -// Transform the string into the current addressing format. - -ACE_INLINE int -ACE_Addr::string_to_addr (const char []) -{ - return -1; -} - ACE_INLINE int ACE_Addr::operator == (const ACE_Addr &sap) const { diff --git a/ace/DEV_Addr.h b/ace/DEV_Addr.h index 1a00dc166f9..5dd960831f6 100644 --- a/ace/DEV_Addr.h +++ b/ace/DEV_Addr.h @@ -45,7 +45,7 @@ public: virtual void *get_addr (void) const; // Return a pointer to the address. - virtual int addr_to_string (char addr[], size_t) const; + virtual int addr_to_string (LPTSTR addr, size_t) const; // Transform the current address into string format. virtual int operator == (const ACE_Addr &SAP) const; diff --git a/ace/DEV_Addr.i b/ace/DEV_Addr.i index 4507b0da782..70efc566c6e 100644 --- a/ace/DEV_Addr.i +++ b/ace/DEV_Addr.i @@ -1,6 +1,7 @@ /* -*- C++ -*- */ // $Id$ +#include "ace/SString.h" ACE_INLINE void ACE_DEV_Addr::set (LPCTSTR devname) @@ -14,7 +15,7 @@ ACE_DEV_Addr::set (LPCTSTR devname) // Transform the current address into string format. ACE_INLINE int -ACE_DEV_Addr::addr_to_string (char s[], size_t len) const +ACE_DEV_Addr::addr_to_string (LPTSTR s, size_t len) const { ACE_TRACE ("ACE_DEV_Addr::addr_to_string"); diff --git a/ace/FILE_Addr.h b/ace/FILE_Addr.h index 978ea3e0608..dcfd2dbef7b 100644 --- a/ace/FILE_Addr.h +++ b/ace/FILE_Addr.h @@ -45,7 +45,7 @@ public: virtual void *get_addr (void) const; // Return a pointer to the address. - virtual int addr_to_string (char addr[], size_t) const; + virtual int addr_to_string (LPTSTR addr, size_t) const; // Transform the current address into string format. virtual int operator == (const ACE_Addr &SAP) const; diff --git a/ace/FILE_Addr.i b/ace/FILE_Addr.i index c6237feac46..735496c9ff7 100644 --- a/ace/FILE_Addr.i +++ b/ace/FILE_Addr.i @@ -5,6 +5,10 @@ // Do nothing constructor. +// Transform the current address into string format. + +#include "ace/SString.h" + ACE_INLINE ACE_FILE_Addr::ACE_FILE_Addr (void) : ACE_Addr (AF_FILE, sizeof this->filename_) @@ -49,10 +53,10 @@ ACE_FILE_Addr::ACE_FILE_Addr (LPCTSTR filename) this->set (filename); } -// Transform the current address into string format. +// Transform the current address into string format. ACE_INLINE int -ACE_FILE_Addr::addr_to_string (char s[], size_t len) const +ACE_FILE_Addr::addr_to_string (LPTSTR s, size_t len) const { ACE_OS::strncpy (s, this->filename_, len); return 0; diff --git a/ace/Local_Name_Space.cpp b/ace/Local_Name_Space.cpp index 945b0b999bb..2cf194b6f6c 100644 --- a/ace/Local_Name_Space.cpp +++ b/ace/Local_Name_Space.cpp @@ -45,7 +45,7 @@ ACE_NS_String::ACE_NS_String (void) ACE_NS_String::ACE_NS_String (const ACE_WString &s) : len_ ((s.length () + 1) * sizeof (ACE_USHORT16)), - rep_ (s.fast_rep ()) + rep_ ((ACE_USHORT16 *) s.fast_rep ()) { ACE_TRACE ("ACE_NS_String::ACE_NS_String"); } diff --git a/ace/Local_Name_Space_T.cpp b/ace/Local_Name_Space_T.cpp index 753737296b1..034750bdd26 100644 --- a/ace/Local_Name_Space_T.cpp +++ b/ace/Local_Name_Space_T.cpp @@ -362,7 +362,7 @@ ACE_Local_Name_Space<ACE_MEM_POOL_2, LOCK>::create_manager_i (void) { ACE_TRACE ("ACE_Local_Name_Space::create_manager"); // Get directory name - const char *dir = this->name_options_->namespace_dir (); + LPCTSTR dir = this->name_options_->namespace_dir (); // Use process name as the file name. size_t len = ACE_OS::strlen (dir); diff --git a/ace/Local_Name_Space_T.h b/ace/Local_Name_Space_T.h index 2cc52f516d7..6745738e044 100644 --- a/ace/Local_Name_Space_T.h +++ b/ace/Local_Name_Space_T.h @@ -209,7 +209,7 @@ private: ACE_Name_Options *name_options_; // Keep track of the options such as database name etc - char context_file_[MAXNAMELEN]; + TCHAR context_file_[MAXNAMELEN]; // Name of the file used as the backing store. LOCK lock_; diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp index 63ca298d269..e0bbef3abfe 100644 --- a/ace/Log_Msg.cpp +++ b/ace/Log_Msg.cpp @@ -299,7 +299,7 @@ ACE_Log_Msg::ACE_Log_Msg (void) int ACE_Log_Msg::open (const char *prog_name, u_long flags, - const char *logger_key) + LPCTSTR logger_key) { ACE_TRACE ("ACE_Log_Msg::open"); ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, *lock_, -1)); diff --git a/ace/Log_Msg.h b/ace/Log_Msg.h index 71d1d98e204..03ac2050b58 100644 --- a/ace/Log_Msg.h +++ b/ace/Log_Msg.h @@ -124,7 +124,7 @@ public: int open (const char *prog_name, u_long options_flags = ACE_Log_Msg::STDERR, - const char *logger_key = 0); + LPCTSTR logger_key = 0); // Initialize the ACE error handling facility. <prog_name> is the // name of the executable program. <flags> are a bitwise-or of // options flags passed to the Logger (see the enum above for the valid diff --git a/ace/Malloc_T.cpp b/ace/Malloc_T.cpp index 139e0f624be..3685c4a42ac 100644 --- a/ace/Malloc_T.cpp +++ b/ace/Malloc_T.cpp @@ -14,7 +14,7 @@ ACE_ALLOC_HOOK_DEFINE(ACE_Malloc) template <class MALLOC> -ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter (const char *pool_name) +ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter (LPCTSTR pool_name) : allocator_ (pool_name) { ACE_TRACE ("ACE_Allocator_Adapter<MALLOC>::ACE_Allocator_Adapter"); @@ -150,7 +150,7 @@ ACE_Malloc<ACE_MEM_POOL_2, LOCK>::open (void) } template <ACE_MEM_POOL_1, class LOCK> -ACE_Malloc<ACE_MEM_POOL_2, LOCK>::ACE_Malloc (const char *pool_name) +ACE_Malloc<ACE_MEM_POOL_2, LOCK>::ACE_Malloc (LPCTSTR pool_name) : memory_pool_ (pool_name), lock_ (pool_name == 0 ? 0 : ACE::basename (pool_name, ACE_DIRECTORY_SEPARATOR_CHAR)) @@ -160,8 +160,8 @@ ACE_Malloc<ACE_MEM_POOL_2, LOCK>::ACE_Malloc (const char *pool_name) } template <ACE_MEM_POOL_1, class LOCK> -ACE_Malloc<ACE_MEM_POOL_2, LOCK>::ACE_Malloc (const char *pool_name, - const char *lock_name, +ACE_Malloc<ACE_MEM_POOL_2, LOCK>::ACE_Malloc (LPCTSTR pool_name, + LPCTSTR lock_name, const ACE_MEM_POOL_OPTIONS *options) : memory_pool_ (pool_name, options), lock_ (lock_name) @@ -172,8 +172,8 @@ ACE_Malloc<ACE_MEM_POOL_2, LOCK>::ACE_Malloc (const char *pool_name, #if !defined (ACE_HAS_TEMPLATE_TYPEDEFS) template <ACE_MEM_POOL_1, class LOCK> -ACE_Malloc<ACE_MEM_POOL_2, LOCK>::ACE_Malloc (const char *pool_name, - const char *lock_name, +ACE_Malloc<ACE_MEM_POOL_2, LOCK>::ACE_Malloc (LPCTSTR pool_name, + LPCTSTR lock_name, const void *options) : memory_pool_ (pool_name, (const ACE_MEM_POOL_OPTIONS *) options), lock_ (lock_name) @@ -376,7 +376,7 @@ ACE_Malloc<ACE_MEM_POOL_2, LOCK>::shared_find (const char *name) template <ACE_MEM_POOL_1, class LOCK> int ACE_Malloc<ACE_MEM_POOL_2, LOCK>::shared_bind (const char *name, - void *pointer) + void *pointer) { // Combine the two allocations into one to avoid overhead... ACE_Name_Node *new_node = (ACE_Name_Node *) diff --git a/ace/Malloc_T.h b/ace/Malloc_T.h index a36b0b006c6..71fd12c5652 100644 --- a/ace/Malloc_T.h +++ b/ace/Malloc_T.h @@ -40,10 +40,10 @@ public: #endif /* ACE_HAS_TEMPLATE_TYPEDEFS */ // = Initialization. - ACE_Allocator_Adapter (const char *pool_name = 0); + ACE_Allocator_Adapter (LPCTSTR pool_name = 0); - ACE_Allocator_Adapter (const char *pool_name, - const char *lock_name, + ACE_Allocator_Adapter (LPCTSTR pool_name, + LPCTSTR lock_name, MEMORY_POOL_OPTIONS options = 0) : allocator_ (pool_name, lock_name, options) { @@ -157,14 +157,14 @@ public: typedef ACE_MEM_POOL_OPTIONS MEMORY_POOL_OPTIONS; // = Initialization and termination methods. - ACE_Malloc (const char *pool_name = 0); + ACE_Malloc (LPCTSTR pool_name = 0); // Initialize ACE_Malloc. This constructor passes <pool_name> to // initialize the memory pool, and uses <ACE::basename> to // automatically extract out the name used for the underlying lock // name (if necessary). - ACE_Malloc (const char *pool_name, - const char *lock_name, + ACE_Malloc (LPCTSTR pool_name, + LPCTSTR lock_name, const ACE_MEM_POOL_OPTIONS *options = 0); // Initialize ACE_Malloc. This constructor passes <pool_name> to // initialize the memory pool, and uses <lock_name> to automatically @@ -173,8 +173,8 @@ public: // initialize the underlying memory pool. #if !defined (ACE_HAS_TEMPLATE_TYPEDEFS) - ACE_Malloc (const char *pool_name, - const char *lock_name, + ACE_Malloc (LPCTSTR pool_name, + LPCTSTR lock_name, const void *options = 0); // This is necessary to work around template bugs with certain C++ // compilers. diff --git a/ace/Mem_Map.cpp b/ace/Mem_Map.cpp index 4e41dd06f01..2da6892070c 100644 --- a/ace/Mem_Map.cpp +++ b/ace/Mem_Map.cpp @@ -133,7 +133,7 @@ ACE_Mem_Map::open (LPCTSTR file_name, } int -ACE_Mem_Map::map (const char file_name[], +ACE_Mem_Map::map (LPCTSTR file_name, int len, int flags, int mode, @@ -164,7 +164,7 @@ ACE_Mem_Map::ACE_Mem_Map (void) // Map a file specified by FILE_NAME. -ACE_Mem_Map::ACE_Mem_Map (const char file_name[], +ACE_Mem_Map::ACE_Mem_Map (LPCTSTR file_name, int len, int flags, int mode, diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp index dc4cd4ffb4d..cf28cd28656 100644 --- a/ace/Memory_Pool.cpp +++ b/ace/Memory_Pool.cpp @@ -16,7 +16,7 @@ ACE_Local_Memory_Pool::dump (void) const ACE_TRACE ("ACE_Local_Memory_Pool::dump"); } -ACE_Local_Memory_Pool::ACE_Local_Memory_Pool (const char *, +ACE_Local_Memory_Pool::ACE_Local_Memory_Pool (LPCTSTR , const OPTIONS *) { ACE_TRACE ("ACE_Local_Memory_Pool::ACE_Local_Memory_Pool"); @@ -101,7 +101,7 @@ ACE_MMAP_Memory_Pool::protect (void *addr, size_t len, int prot) return ACE_OS::mprotect (addr, len, prot); } -ACE_MMAP_Memory_Pool::ACE_MMAP_Memory_Pool (const char *backing_store_name, +ACE_MMAP_Memory_Pool::ACE_MMAP_Memory_Pool (LPCTSTR backing_store_name, const OPTIONS *options) : base_addr_ (0), flags_ (MAP_SHARED), @@ -275,7 +275,7 @@ ACE_MMAP_Memory_Pool::remap (void *addr) return this->map_file (current_file_offset); } -ACE_MMAP_Memory_Pool_Options::ACE_MMAP_Memory_Pool_Options (const char *base_addr, +ACE_MMAP_Memory_Pool_Options::ACE_MMAP_Memory_Pool_Options (char *base_addr, int use_fixed_addr, int write_each_page) : base_addr_ (base_addr), @@ -330,7 +330,7 @@ ACE_MMAP_Memory_Pool::handle_signal (int signum, siginfo_t *siginfo, ucontext_t ACE_ALLOC_HOOK_DEFINE(ACE_Lite_MMAP_Memory_Pool) -ACE_Lite_MMAP_Memory_Pool::ACE_Lite_MMAP_Memory_Pool (const char *backing_store_name, +ACE_Lite_MMAP_Memory_Pool::ACE_Lite_MMAP_Memory_Pool (LPCTSTR backing_store_name, const OPTIONS *options) : ACE_MMAP_Memory_Pool (backing_store_name, options) { @@ -378,7 +378,7 @@ ACE_Sbrk_Memory_Pool::dump (void) const ACE_TRACE ("ACE_Sbrk_Memory_Pool::dump"); } -ACE_Sbrk_Memory_Pool::ACE_Sbrk_Memory_Pool (const char *, +ACE_Sbrk_Memory_Pool::ACE_Sbrk_Memory_Pool (LPCTSTR , const OPTIONS *) { ACE_TRACE ("ACE_Sbrk_Memory_Pool::ACE_Sbrk_Memory_Pool"); @@ -388,7 +388,7 @@ ACE_Sbrk_Memory_Pool::ACE_Sbrk_Memory_Pool (const char *, #if !defined (ACE_LACKS_SYSV_SHMEM) ACE_ALLOC_HOOK_DEFINE(ACE_Shared_Memory_Pool) -ACE_Shared_Memory_Pool_Options::ACE_Shared_Memory_Pool_Options (const char *base_addr, +ACE_Shared_Memory_Pool_Options::ACE_Shared_Memory_Pool_Options (char *base_addr, size_t max_segments, size_t file_perms) : base_addr_ (base_addr), @@ -493,7 +493,7 @@ ACE_Shared_Memory_Pool::handle_signal (int , siginfo_t *siginfo, ucontext_t *) return 0; } -ACE_Shared_Memory_Pool::ACE_Shared_Memory_Pool (const char *backing_store_name, +ACE_Shared_Memory_Pool::ACE_Shared_Memory_Pool (LPCTSTR backing_store_name, const OPTIONS *options) : base_addr_ (0), file_perms_ (ACE_DEFAULT_FILE_PERMS), diff --git a/ace/Memory_Pool.h b/ace/Memory_Pool.h index bd60596415d..22f26c129cf 100644 --- a/ace/Memory_Pool.h +++ b/ace/Memory_Pool.h @@ -43,7 +43,7 @@ class ACE_Export ACE_Sbrk_Memory_Pool public: typedef ACE_Sbrk_Memory_Pool_Options OPTIONS; - ACE_Sbrk_Memory_Pool (const char *backing_store_name = 0, + ACE_Sbrk_Memory_Pool (LPCTSTR backing_store_name = 0, const OPTIONS *options = 0); // Initialize the pool. @@ -104,11 +104,11 @@ class ACE_Export ACE_Shared_Memory_Pool_Options { public: // = Initialization method. - ACE_Shared_Memory_Pool_Options (const char *base_addr = ACE_DEFAULT_BASE_ADDR, + ACE_Shared_Memory_Pool_Options (char *base_addr = ACE_DEFAULT_BASE_ADDR, size_t max_segments = ACE_DEFAULT_MAX_SEGMENTS, size_t file_perms = ACE_DEFAULT_FILE_PERMS); - const char *base_addr_; + char *base_addr_; // Base address of the memory-mapped backing store. size_t max_segments_; @@ -127,7 +127,7 @@ class ACE_Export ACE_Shared_Memory_Pool : public ACE_Event_Handler public: typedef ACE_Shared_Memory_Pool_Options OPTIONS; - ACE_Shared_Memory_Pool (const char *backing_store_name = 0, + ACE_Shared_Memory_Pool (LPCTSTR backing_store_name = 0, const OPTIONS *options = 0); // Initialize the pool. @@ -237,7 +237,7 @@ class ACE_Export ACE_Local_Memory_Pool public: typedef ACE_Local_Memory_Pool_Options OPTIONS; - ACE_Local_Memory_Pool (const char *backing_store_name = 0, + ACE_Local_Memory_Pool (LPCTSTR backing_store_name = 0, const OPTIONS *options = 0); // Initialize the pool. @@ -295,11 +295,11 @@ class ACE_Export ACE_MMAP_Memory_Pool_Options { public: // = Initialization method. - ACE_MMAP_Memory_Pool_Options (const char *base_addr = ACE_DEFAULT_BASE_ADDR, + ACE_MMAP_Memory_Pool_Options (char *base_addr = ACE_DEFAULT_BASE_ADDR, int use_fixed_addr = 1, int write_each_page = 1); - const char *base_addr_; + char *base_addr_; // Base address of the memory-mapped backing store. int use_fixed_addr_; @@ -320,7 +320,7 @@ public: // = Initialization and termination methods. - ACE_MMAP_Memory_Pool (const char *backing_store_name = 0, + ACE_MMAP_Memory_Pool (LPCTSTR backing_store_name = 0, const OPTIONS *options = 0); // Initialize the pool. @@ -406,7 +406,7 @@ protected: // Should we write a byte to each page to forceably allocate memory // for this backing store? - char backing_store_name_[MAXPATHLEN]; + TCHAR backing_store_name_[MAXPATHLEN]; // Name of the backing store where the shared memory pool is kept. }; @@ -425,7 +425,7 @@ class ACE_Export ACE_Lite_MMAP_Memory_Pool : public ACE_MMAP_Memory_Pool public: // = Initialization and termination methods. - ACE_Lite_MMAP_Memory_Pool (const char *backing_store_name = 0, + ACE_Lite_MMAP_Memory_Pool (LPCTSTR backing_store_name = 0, const OPTIONS *options = 0); // Initialize the pool. diff --git a/ace/Naming_Context.cpp b/ace/Naming_Context.cpp index ae4b4e1673b..6f0e0b07c26 100644 --- a/ace/Naming_Context.cpp +++ b/ace/Naming_Context.cpp @@ -375,17 +375,17 @@ ACE_Name_Options::nameserver_port (void) } void -ACE_Name_Options::namespace_dir (const char *dir) +ACE_Name_Options::namespace_dir (LPCTSTR dir) { ACE_TRACE ("ACE_Name_Options::namespace_dir"); this->namespace_dir_ = ACE_OS::strdup (dir); } void -ACE_Name_Options::process_name (const char *pname) +ACE_Name_Options::process_name (LPCTSTR pname) { ACE_TRACE ("ACE_Name_Options::process_name"); - const char *t = ACE::basename (pname, ACE_DIRECTORY_SEPARATOR_CHAR); + LPCTSTR t = ACE::basename (pname, ACE_DIRECTORY_SEPARATOR_CHAR); this->process_name_ = ACE_OS::strdup (t); } @@ -403,7 +403,7 @@ ACE_Name_Options::nameserver_host (void) return this->nameserver_host_; } -const char * +LPCTSTR ACE_Name_Options::database (void) { ACE_TRACE ("ACE_Name_Options::database"); @@ -411,7 +411,7 @@ ACE_Name_Options::database (void) } void -ACE_Name_Options::database (const char *db) +ACE_Name_Options::database (LPCTSTR db) { ACE_TRACE ("ACE_Name_Options::database"); if (this->database_ != 0) @@ -447,14 +447,14 @@ ACE_Name_Options::context (ACE_Naming_Context::Context_Scope_Type context) this->context_ = context; } -const char * +LPCTSTR ACE_Name_Options::process_name (void) { ACE_TRACE ("ACE_Name_Options::process_name"); return this->process_name_; } -const char * +LPCTSTR ACE_Name_Options::namespace_dir (void) { ACE_TRACE ("ACE_Name_Options::namespace_dir"); @@ -480,7 +480,7 @@ ACE_Name_Options::parse_args (int argc, char *argv[]) { ACE_TRACE ("ACE_Name_Options::parse_args"); ACE_LOG_MSG->open (argv[0]); - this->process_name (argv[0]); + this->process_name (ACE_WIDE_STRING (argv[0])); // Default is to use the PROC_LOCAL context... this->context (ACE_Naming_Context::PROC_LOCAL); @@ -512,16 +512,16 @@ ACE_Name_Options::parse_args (int argc, char *argv[]) this->nameserver_host (get_opt.optarg); break; case 'l': - this->namespace_dir (get_opt.optarg); + this->namespace_dir (ACE_WIDE_STRING (get_opt.optarg)); break; case 'P': - this->process_name (get_opt.optarg); + this->process_name (ACE_WIDE_STRING (get_opt.optarg)); break; case 'p': this->nameserver_port (ACE_OS::atoi (get_opt.optarg)); break; case 's': - this->database (get_opt.optarg); + this->database (ACE_WIDE_STRING (get_opt.optarg)); break; case 'b': this->base_address ((char *) ACE_OS::atoi (get_opt.optarg)); diff --git a/ace/Naming_Context.h b/ace/Naming_Context.h index 4198b786f63..27cb8ab0b5f 100644 --- a/ace/Naming_Context.h +++ b/ace/Naming_Context.h @@ -264,16 +264,16 @@ public: const char *nameserver_host (void); // = Set/Get name space directory - void namespace_dir (const char *dir); - const char *namespace_dir (void); + void namespace_dir (LPCTSTR dir); + LPCTSTR namespace_dir (void); // = Set/Get process name - void process_name (const char *dir); - const char *process_name (void); + void process_name (LPCTSTR dir); + LPCTSTR process_name (void); // = Set/Get database name - void database (const char *db); - const char *database (void); + void database (LPCTSTR); + LPCTSTR database (void); // = Set/Get base address of the underlying allocator void base_address (char *address); @@ -298,13 +298,13 @@ private: const char *nameserver_host_; // Hostname of nameserver. - const char *namespace_dir_; + LPCTSTR namespace_dir_; // Directory to hold name_bindings. - const char *process_name_; + LPCTSTR process_name_; // Name of this process. - const char *database_; + LPCTSTR database_; // Name of the database that stores the name/value/type bindings. char *base_address_; diff --git a/ace/OS.cpp b/ace/OS.cpp index fcaf0342a2a..fa64734f528 100644 --- a/ace/OS.cpp +++ b/ace/OS.cpp @@ -1151,7 +1151,7 @@ ACE_OS::fork_exec (char *argv[]) #if defined (ACE_WIN32) ACE_ARGV argv_buf (argv); - char *buf = argv_buf.buf (); + LPTSTR buf = (LPTSTR) ACE_WIDE_STRING (argv_buf.buf ()); if (buf != 0) { @@ -1024,12 +1024,12 @@ typedef void (*ACE_SignalHandlerV)(...); #include /**/ <sys/timeb.h> // The following 3 defines are used by the ACE Name Server... -#define ACE_DEFAULT_NAMESPACE_DIR "C:\\temp" +#define ACE_DEFAULT_NAMESPACE_DIR __TEXT ("C:\\temp") #define ACE_DEFAULT_LOCALNAME "\\localnames" #define ACE_DEFAULT_GLOBALNAME "\\globalnames" // Used for ACE_MMAP_Memory_Pool -#define ACE_DEFAULT_BACKING_STORE "C:\\temp\\ace-malloc-XXXXXX" +#define ACE_DEFAULT_BACKING_STORE __TEXT ("C:\\temp\\ace-malloc-XXXXXX") // Used for logging #define ACE_DEFAULT_LOGFILE "C:\\temp\\logfile" @@ -1056,11 +1056,11 @@ typedef void (*ACE_SignalHandlerV)(...); #define ACE_DEV_NULL "nul" // Define the pathname separator characters for Win32 (ugh). -#define ACE_DIRECTORY_SEPARATOR_STR "\\" -#define ACE_DIRECTORY_SEPARATOR_CHAR '\\' +#define ACE_DIRECTORY_SEPARATOR_STR __TEXT ("\\") +#define ACE_DIRECTORY_SEPARATOR_CHAR __TEXT ('\\') #define ACE_LD_SEARCH_PATH "PATH" #define ACE_LD_SEARCH_PATH_SEPARATOR_STR ";" -#define ACE_LOGGER_KEY "\\temp\\server_daemon" +#define ACE_LOGGER_KEY __TEXT ("\\temp\\server_daemon") #define ACE_DLL_SUFFIX ".dll" // This will help until we figure out everything: @@ -1784,9 +1784,15 @@ typedef void *(*ACE_THR_C_FUNC)(void *); #endif /* MAP_FAILED */ #if defined (ACE_HAS_CHARPTR_DL) -typedef LPTSTR ACE_DL_TYPE; +typedef char * ACE_DL_TYPE; +#if defined (ACE_HAS_UNICODE) +typedef wchar_t * ACE_WIDE_DL_TYPE; +#endif /* ACE_HAS_UNICODE */ #else -typedef LPCTSTR ACE_DL_TYPE; +typedef const char * ACE_DL_TYPE; +#if defined (ACE_HAS_UNICODE) +typedef const wchar_t * ACE_WIDE_DL_TYPE; +#endif /* ACE_HAS_UNICODE */ #endif /* ACE_HAS_CHARPTR_DL */ #if !defined (ACE_HAS_SIGINFO_T) @@ -1888,7 +1894,7 @@ public: #endif /* ACE_WIN32 && ACE_HAS_WTHREADS */ // = A set of wrappers for determining config info. - static char *cuserid (char *user, size_t maxlen = 32); + static LPTSTR cuserid (LPTSTR user, size_t maxlen = 32); static int uname (struct utsname *name); static long sysinfo (int cmd, char *buf, long count); static int hostname (char *name, size_t maxnamelen); @@ -2046,7 +2052,7 @@ public: static int isastream (ACE_HANDLE handle); static int isatty (ACE_HANDLE handle); static off_t lseek (ACE_HANDLE handle, off_t offset, int whence); - static ACE_HANDLE open (LPCTSTR filename, int mode, int perms = 0); + static ACE_HANDLE open (const char *filename, int mode, int perms = 0); static int putmsg (ACE_HANDLE handle, const struct strbuf *ctl, const struct strbuf *data, int flags); static putpmsg (ACE_HANDLE handle, const struct strbuf *ctl, const @@ -2226,13 +2232,29 @@ public: static wchar_t *strrchr (const wchar_t *s, int c); static int strcmp (const wchar_t *s, const wchar_t *t); static wchar_t *strcpy (wchar_t *s, const wchar_t *t); -// static wchar_t *strstr (const wchar_t *s, const wchar_t *t); -// static wchar_t *strdup (const wchar_t *s); static size_t strlen (const wchar_t *s); static int strncmp (const wchar_t *s, const wchar_t *t, size_t len); static wchar_t *strncpy (wchar_t *s, const wchar_t *t, size_t len); static wchar_t *strtok (wchar_t *s, const wchar_t *tokens); static long strtol (const wchar_t *s, wchar_t **ptr, int base); + //static int isspace (wint_t c); + +#if defined (ACE_WIN32) + static wchar_t *strstr (const wchar_t *s, const wchar_t *t); + static wchar_t *strdup (const wchar_t *s); + static int sprintf (wchar_t *buf, const char *format, ...); + static int sprintf (wchar_t *buf, const wchar_t *format, ...); + + static int access (const wchar_t *path, int amode); + static FILE *fopen (const wchar_t *filename, const wchar_t *mode); + static wchar_t *getenv (const wchar_t *symbol); + static int system (const wchar_t *s); + static int hostname (wchar_t *name, size_t maxnamelen); + static ACE_HANDLE open (const wchar_t *filename, int mode, int perms = 0); + static int unlink (const wchar_t *path); + static void *dlopen (ACE_WIDE_DL_TYPE filename, int mode); + +#endif /* ACE_WIN32 */ #endif /* ACE_HAS_UNICODE */ // = A set of wrappers for TLI. @@ -2373,6 +2395,15 @@ private: if (POINTER == 0) { errno = ENOMEM; return; } \ } while (0) +#include "ace/SString.h" + +#if defined (UNICODE) +#define ACE_WIDE_STRING(ASCII) \ +ACE_WString (ASCII).fast_rep () +#else +#define ACE_WIDE_STRING(ASCII) ASCII +#endif /* UNICODE */ + #if defined (ACE_HAS_INLINED_OSCALLS) #if defined (ACE_INLINE) #undef ACE_INLINE @@ -621,8 +621,8 @@ ACE_OS::unlink (const char *path) #endif /* VXWORKS */ } -ACE_INLINE char * -ACE_OS::cuserid (char *user, size_t maxlen) +ACE_INLINE LPTSTR +ACE_OS::cuserid (LPTSTR user, size_t maxlen) { // ACE_TRACE ("ACE_OS::cuserid"); #if defined (VXWORKS) @@ -3967,11 +3967,11 @@ ACE_OS::uname (struct utsname *name) } ACE_INLINE int -ACE_OS::hostname (char name[], size_t maxnamelen) +ACE_OS::hostname (char *name, size_t maxnamelen) { // ACE_TRACE ("ACE_OS::uname"); #if defined (ACE_WIN32) - ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::GetComputerName (name, LPDWORD (&maxnamelen)), + ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::GetComputerNameA (name, LPDWORD (&maxnamelen)), ace_result_), int, -1); #else /* !ACE_WIN32 */ struct utsname host_info; @@ -4107,7 +4107,7 @@ ACE_OS::dlopen (ACE_DL_TYPE filename, int mode) #endif /* ACE_HAS_AUTOMATIC_INIT_FINI */ return handle; #elif defined (ACE_WIN32) - ACE_OSCALL_RETURN (::LoadLibrary (filename), void *, 0); + ACE_OSCALL_RETURN (::LoadLibraryA (filename), void *, 0); #else ACE_NOTSUP_RETURN (0); #endif /* ACE_HAS_SVR4_DYNAMIC_LINKING */ @@ -4554,22 +4554,21 @@ ACE_OS::shmget (key_t key, int size, int flags) } ACE_INLINE ACE_HANDLE -ACE_OS::open (LPCTSTR filename, +ACE_OS::open (const char *filename, int mode, int perms) { -// ACE_TRACE ("ACE_OS::open"); -#if defined (ACE_WIN32) + // ACE_TRACE ("ACE_OS::open"); // Warning: This function ignores _O_APPEND - +#if defined (ACE_WIN32) DWORD access = GENERIC_READ; if (ACE_BIT_ENABLED (mode, O_WRONLY)) access = GENERIC_WRITE; else if (ACE_BIT_ENABLED (mode, O_RDWR)) access = GENERIC_READ | GENERIC_WRITE; - + DWORD creation = OPEN_EXISTING; - + if ((mode & (_O_CREAT | _O_EXCL)) == (_O_CREAT | _O_EXCL)) creation = CREATE_NEW; else if (ACE_BIT_ENABLED (mode, _O_CREAT)) @@ -4583,11 +4582,11 @@ ACE_OS::open (LPCTSTR filename, if (ACE_BIT_ENABLED (mode, _O_TEMPORARY)) flags |= FILE_FLAG_DELETE_ON_CLOSE; - ACE_HANDLE h = ::CreateFile (filename, access, - FILE_SHARE_READ | FILE_SHARE_WRITE, - 0, creation, - flags, - 0); + ACE_HANDLE h = ::CreateFileA (filename, access, + FILE_SHARE_READ | FILE_SHARE_WRITE, + 0, creation, + flags, + 0); if (h == ACE_INVALID_HANDLE) { @@ -5295,22 +5294,6 @@ ACE_OS::strcat (wchar_t *s, const wchar_t *t) return ::wcscat (s, t); } -#if 0 -ACE_INLINE wchar_t * -ACE_OS::strstr (const wchar_t *s, const wchar_t *t) -{ -// ACE_TRACE ("ACE_OS::strstr"); - return ::wcsstr (s, t); -} - -ACE_INLINE wchar_t * -ACE_OS::strdup (const wchar_t *s) -{ -// ACE_TRACE ("ACE_OS::strdup"); - return ::wcsdup (s); -} -#endif /* 0 */ - ACE_INLINE wchar_t * ACE_OS::strchr (const wchar_t *s, int c) { @@ -5373,4 +5356,147 @@ ACE_OS::strtol (const wchar_t *s, wchar_t **ptr, int base) // ACE_TRACE ("ACE_OS::strtol"); return ::wcstol (s, ptr, base); } + +/* +ACE_INLINE int +ACE_OS::isspace (wint_t c) +{ + ACE_OSCALL_RETURN (::iswspace (c), int, -1); +} +*/ +#if defined (ACE_WIN32) + +ACE_INLINE wchar_t * +ACE_OS::strstr (const wchar_t *s, const wchar_t *t) +{ +// ACE_TRACE ("ACE_OS::strstr"); + return ::wcsstr (s, t); +} + +ACE_INLINE wchar_t * +ACE_OS::strdup (const wchar_t *s) +{ +// ACE_TRACE ("ACE_OS::strdup"); + return ::wcsdup (s); +} + +ACE_INLINE int +ACE_OS::hostname (wchar_t *name, size_t maxnamelen) +{ + // ACE_TRACE ("ACE_OS::uname"); + ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::GetComputerNameW (name, LPDWORD (&maxnamelen)), + ace_result_), int, -1); +} + +ACE_INLINE ACE_HANDLE +ACE_OS::open (const wchar_t *filename, + int mode, + int perms) +{ + // ACE_TRACE ("ACE_OS::open"); + // Warning: This function ignores _O_APPEND + DWORD access = GENERIC_READ; + if (ACE_BIT_ENABLED (mode, O_WRONLY)) + access = GENERIC_WRITE; + else if (ACE_BIT_ENABLED (mode, O_RDWR)) + access = GENERIC_READ | GENERIC_WRITE; + + DWORD creation = OPEN_EXISTING; + + if ((mode & (_O_CREAT | _O_EXCL)) == (_O_CREAT | _O_EXCL)) + creation = CREATE_NEW; + else if (ACE_BIT_ENABLED (mode, _O_CREAT)) + creation = OPEN_ALWAYS; + else if (ACE_BIT_ENABLED (mode, _O_TRUNC)) + creation = TRUNCATE_EXISTING; + + DWORD flags = 0; + if (ACE_BIT_ENABLED (mode, FILE_FLAG_OVERLAPPED)) + flags = FILE_FLAG_OVERLAPPED; + if (ACE_BIT_ENABLED (mode, _O_TEMPORARY)) + flags |= FILE_FLAG_DELETE_ON_CLOSE; + + ACE_HANDLE h = ::CreateFileW (filename, access, + FILE_SHARE_READ | FILE_SHARE_WRITE, + 0, creation, + flags, + 0); + + if (h == ACE_INVALID_HANDLE) + { + switch ((errno = ::GetLastError ())) + { + case ERROR_FILE_EXISTS: + errno = EEXIST; + } + } + return h; +} + +ACE_INLINE int +ACE_OS::unlink (const wchar_t *path) +{ + // ACE_TRACE ("ACE_OS::unlink"); + ACE_OSCALL_RETURN (::_wunlink (path), int, -1); +} + +ACE_INLINE void * +ACE_OS::dlopen (ACE_WIDE_DL_TYPE filename, int mode) +{ + // ACE_TRACE ("ACE_OS::dlopen"); + ACE_OSCALL_RETURN (::LoadLibraryW (filename), void *, 0); +} + +ACE_INLINE int +ACE_OS::sprintf (wchar_t *buf, const char *format, ...) +{ + // ACE_TRACE ("ACE_OS::sprintf"); + int result; + ACE_WString w_format (format); + va_list ap; + va_start (ap, w_format); + ACE_OSCALL (::vswprintf (buf, w_format.fast_rep (), ap), int, -1, result); + va_end (ap); + return result; +} + +ACE_INLINE int +ACE_OS::sprintf (wchar_t *buf, const wchar_t *format, ...) +{ + // ACE_TRACE ("ACE_OS::sprintf"); + int result; + va_list ap; + va_start (ap, format); + ACE_OSCALL (::vswprintf (buf, format, ap), int, -1, result); + va_end (ap); + return result; +} + +ACE_INLINE wchar_t * +ACE_OS::getenv (const wchar_t *symbol) +{ + // ACE_TRACE ("ACE_OS::getenv"); + ACE_OSCALL_RETURN (::_wgetenv (symbol), wchar_t *, 0); +} + +ACE_INLINE int +ACE_OS::access (const wchar_t *path, int amode) +{ + // ACE_TRACE ("ACE_OS::access"); + ACE_OSCALL_RETURN (::_waccess (path, amode), int, -1); +} + +ACE_INLINE FILE * +ACE_OS::fopen (const wchar_t *filename, const wchar_t *mode) +{ + ACE_OSCALL_RETURN (::_wfopen (filename, mode), FILE *, 0); +} + +ACE_INLINE int +ACE_OS::system (const wchar_t *command) +{ + ACE_OSCALL_RETURN (::_wsystem (command), int, -1); +} + +#endif /* ACE_WIN32 */ #endif /* ACE_HAS_UNICODE */ diff --git a/ace/Proactor.cpp b/ace/Proactor.cpp index ea1fc251fd2..cbccb8655a1 100644 --- a/ace/Proactor.cpp +++ b/ace/Proactor.cpp @@ -443,7 +443,7 @@ ACE_Overlapped_File::ACE_Overlapped_File (void) { } -ACE_Overlapped_File::ACE_Overlapped_File (const char *file_name, +ACE_Overlapped_File::ACE_Overlapped_File (LPCTSTR file_name, int mode, int perms) : delete_handle_ (1) @@ -480,7 +480,7 @@ ACE_Overlapped_File::open (ACE_HANDLE handle) } int -ACE_Overlapped_File::open (const char *file_name, +ACE_Overlapped_File::open (LPCTSTR file_name, int access, int share, LPSECURITY_ATTRIBUTES security, diff --git a/ace/Proactor.h b/ace/Proactor.h index 7801305b10d..f35bfe12f3f 100644 --- a/ace/Proactor.h +++ b/ace/Proactor.h @@ -194,13 +194,13 @@ public: ACE_Overlapped_File (const ACE_Overlapped_File &file); // Copy <file>. - ACE_Overlapped_File (const char *file_name, int mode, int perms = 0); + 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 (const char *file_name, + int open (LPCTSTR file_name, int access = GENERIC_READ, int share = FILE_SHARE_READ, LPSECURITY_ATTRIBUTES security = 0, diff --git a/ace/Process.cpp b/ace/Process.cpp index d5aeb4effe1..49d89ef5636 100644 --- a/ace/Process.cpp +++ b/ace/Process.cpp @@ -3,6 +3,7 @@ #include "ace/Process.h" #include "ace/ARGV.h" +#include "ace/SString.h" #if !defined (__ACE_INLINE__) #include "ace/Process.i" @@ -112,7 +113,7 @@ ACE_Process::start (char *argv[]) #if defined (ACE_WIN32) ACE_ARGV argv_buf (argv); - char *buf = argv_buf.buf (); + LPTSTR buf = (LPTSTR) ACE_WIDE_STRING (argv_buf.buf ()); if (buf == 0) return -1; diff --git a/ace/Registry.cpp b/ace/Registry.cpp index e739ade292c..2fa26ee9ebb 100644 --- a/ace/Registry.cpp +++ b/ace/Registry.cpp @@ -20,7 +20,7 @@ // Separator for components in a name /* static */ -const ACE_Registry::Istring ACE_Registry::STRING_SEPARATOR = "\\"; +const ACE_Registry::Istring ACE_Registry::STRING_SEPARATOR = __TEXT ("\\"); // Simple binding constructor @@ -1046,15 +1046,15 @@ ACE_Registry::Binding_Iterator::Iteration_Complete::next_n (u_long how_many, int ACE_Predefined_Naming_Contexts::connect (ACE_Registry::Naming_Context &naming_context, HKEY predefined, - LPCSTR machine_name) + LPCTSTR machine_name) { long result = -1; - if (machine_name != 0 && ACE_OS::strcmp ("localhost", machine_name) == 0) + if (machine_name != 0 && ACE_OS::strcmp (__TEXT ("localhost"), machine_name) == 0) machine_name = 0; if (predefined == HKEY_LOCAL_MACHINE || predefined == HKEY_USERS) - result = ::RegConnectRegistry ((LPSTR) machine_name, + result = ::RegConnectRegistry ((LPTSTR) machine_name, predefined, &naming_context.key_); if (predefined == HKEY_CURRENT_USER || predefined == HKEY_CLASSES_ROOT) @@ -1074,7 +1074,7 @@ ACE_Predefined_Naming_Contexts::connect (ACE_Registry::Naming_Context &naming_co // Check if <machine_name> is the local host /* static */ int -ACE_Predefined_Naming_Contexts::is_local_host (LPCSTR machine_name) +ACE_Predefined_Naming_Contexts::is_local_host (LPCTSTR machine_name) { TCHAR local_host[MAXHOSTNAMELEN]; int result = ACE_OS::hostname (local_host, sizeof (local_host)); diff --git a/ace/Registry.h b/ace/Registry.h index f21fc0c0fd7..347c760f394 100644 --- a/ace/Registry.h +++ b/ace/Registry.h @@ -491,14 +491,14 @@ class ACE_Export ACE_Predefined_Naming_Contexts public: static int connect (ACE_Registry::Naming_Context &naming_context, HKEY predefined = HKEY_LOCAL_MACHINE, - LPCSTR machine_name = 0); + LPCTSTR machine_name = 0); // Factory method for connecting to predefined registries. This // method works for both remote and local machines. However, for // remote machines, HKEY_CLASSES_ROOT and HKEY_CURRENT_USER types // are not allowed private: - static int is_local_host (LPCSTR machine_name); + static int is_local_host (LPCTSTR machine_name); // Check if <machine_name> is the local host }; diff --git a/ace/SPIPE_Addr.cpp b/ace/SPIPE_Addr.cpp index 09bbc573c7a..688735e27db 100644 --- a/ace/SPIPE_Addr.cpp +++ b/ace/SPIPE_Addr.cpp @@ -64,28 +64,28 @@ ACE_SPIPE_Addr::set (LPCTSTR addr, len += sizeof(this->SPIPE_addr_.gid_); #if defined (ACE_WIN32) - char *colonp = ACE_OS::strchr (addr, ':'); - char temp[BUFSIZ] ; + TCHAR *colonp = ACE_OS::strchr (addr, ':'); + TCHAR temp[BUFSIZ]; if (colonp == 0) // Assume it's a port number. { - ACE_OS::strcpy(temp, "\\\\.\\pipe\\") ; - ACE_OS::strcat(temp, addr) ; + ACE_OS::strcpy(temp, __TEXT ( "\\\\.\\pipe\\")); + ACE_OS::strcat(temp, addr); } else { - ACE_OS::strcpy(temp, "\\\\") ; - *colonp = '\0'; - if (ACE_OS::strcmp(addr, "localhost") == 0) - ACE_OS::strcat(temp, ".") ; // change localhost to . + ACE_OS::strcpy(temp, __TEXT ("\\\\")); + *colonp = __TEXT ('\0'); + if (ACE_OS::strcmp(addr, __TEXT ("localhost")) == 0) + ACE_OS::strcat(temp, __TEXT (".")); // change localhost to . else - ACE_OS::strcat(temp, addr) ; - ACE_OS::strcat(temp, "\\pipe\\" ) ; - ACE_OS::strcat(temp, colonp+1) ; + ACE_OS::strcat(temp, addr); + ACE_OS::strcat(temp, __TEXT ("\\pipe\\")); + ACE_OS::strcat(temp, colonp+1); } - this->ACE_Addr::base_set (AF_SPIPE, ACE_OS::strlen (temp) + len); + ACE_OS::strcpy(this->SPIPE_addr_.rendezvous_, temp) ; #else diff --git a/ace/SPIPE_Addr.h b/ace/SPIPE_Addr.h index 142e754c322..0a758250f0e 100644 --- a/ace/SPIPE_Addr.h +++ b/ace/SPIPE_Addr.h @@ -44,7 +44,7 @@ public: virtual void set_addr (void *addr, int len); // Set a pointer to the underlying network address. - virtual int addr_to_string (char addr[], size_t) const; + virtual int addr_to_string (LPTSTR addr, size_t) const; // Transform the current address into string format. virtual int string_to_addr (LPCTSTR addr); diff --git a/ace/SPIPE_Addr.i b/ace/SPIPE_Addr.i index 358fbc29cfd..f588a1702b7 100644 --- a/ace/SPIPE_Addr.i +++ b/ace/SPIPE_Addr.i @@ -3,10 +3,12 @@ // SPIPE_Addr.i +#include "ace/SString.h" + // Transform the current address into string format. ACE_INLINE int -ACE_SPIPE_Addr::addr_to_string (char s[], size_t len) const +ACE_SPIPE_Addr::addr_to_string (LPTSTR s, size_t len) const { ACE_OS::strncpy (s, this->SPIPE_addr_.rendezvous_, len); return 0; diff --git a/ace/SString.cpp b/ace/SString.cpp index 8b12fd98f90..edca2053215 100644 --- a/ace/SString.cpp +++ b/ace/SString.cpp @@ -84,6 +84,38 @@ ACE_CString::ACE_CString (const char *s, ACE_Allocator *alloc) } } +// Constructor that copies <s> into dynamically allocated memory. +// Probable loss of data. Please use with care. + +ACE_CString::ACE_CString (const ACE_USHORT16 *s, ACE_Allocator *alloc) + : allocator_ (alloc) +{ + ACE_TRACE ("ACE_CString::ACE_CString"); + + if (this->allocator_ == 0) + this->allocator_ = ACE_Service_Config::alloc (); + + if (s == 0) + { + this->len_ = 0; + this->rep_ = 0; + } + else + { + this->len_ = ACE_WString::wstrlen (s); + this->rep_ = (char *) this->allocator_->malloc (this->len_ + 1); + + // Copy the ACE_USHORT16 * string byte-by-byte into the char * + // string. + for (size_t i = 0; i < this->len_; i++) +#pragma warning(disable: 4244) // Possible loss of data + this->rep_[i] = (ACE_USHORT16) s[i]; +#pragma warning(default: 4244) // Possible loss of data + + this->rep_[this->len_] = '\0'; + } +} + // Constructor that actually copies memory. ACE_CString::ACE_CString (const char *s, @@ -367,6 +399,7 @@ ACE_WString::ACE_WString (ACE_Allocator *alloc) this->allocator_ = ACE_Service_Config::alloc (); } +/* static */ size_t ACE_WString::wstrlen (const ACE_USHORT16 *s) { diff --git a/ace/SString.h b/ace/SString.h index c6e906ec73a..400bdf6f4fe 100644 --- a/ace/SString.h +++ b/ace/SString.h @@ -46,6 +46,10 @@ public: ACE_CString (const ACE_CString &); // Copy constructor. + ACE_CString (const ACE_USHORT16 *s, ACE_Allocator *allocator = 0); + // Constructor that copies <s> into dynamically allocated memory. + // Probable loss of data. Please use with care. + ~ACE_CString (void); // Deletes the memory... @@ -62,6 +66,9 @@ public: char *rep (void) const; // Get a copy of the underlying pointer. + const char *fast_rep (void) const; + // Get at the underlying representation directly! + void operator += (const ACE_CString &); // Concat operator (copies memory). @@ -134,7 +141,7 @@ public: // Set the underlying pointer. Since this does not copy memory or // delete existing memory use with extreme caution!!! - char *rep (void) const; + const char *rep (void) const; // Get the underlying pointer. void operator += (const ACE_SString &); @@ -225,7 +232,7 @@ public: char *char_rep (void) const; // Transform into a copy of the ASCII character representation. - ACE_USHORT16 *fast_rep (void) const; + const ACE_USHORT16 *fast_rep (void) const; // Get at the underlying representation directly! int strstr (const ACE_WString &s) const; @@ -244,13 +251,13 @@ public: ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. + static size_t wstrlen (const ACE_USHORT16 *); + // Computes the length of a "0" terminated ACE_USHORT16 *. + private: ACE_Allocator *allocator_; // Pointer to a memory allocator. - size_t wstrlen (const ACE_USHORT16 *); - // Computes the length of a "0" terminated ACE_USHORT16 *. - size_t len_; // Length of the ACE_WString. diff --git a/ace/SString.i b/ace/SString.i index c628f6d42ec..32e26c627c9 100644 --- a/ace/SString.i +++ b/ace/SString.i @@ -56,7 +56,7 @@ ACE_SString::operator[] (size_t index) const // Get the underlying pointer (does not make a copy, so beware!). -ACE_INLINE char * +ACE_INLINE const char * ACE_SString::rep (void) const { ACE_TRACE ("ACE_SString::rep"); @@ -105,7 +105,7 @@ ACE_WString::rep (void) const // Get at the underlying representation directly! -ACE_INLINE ACE_USHORT16 * +ACE_INLINE const ACE_USHORT16 * ACE_WString::fast_rep (void) const { return this->rep_; diff --git a/ace/Service_Config.cpp b/ace/Service_Config.cpp index bd9c4b674dc..2e7852acef7 100644 --- a/ace/Service_Config.cpp +++ b/ace/Service_Config.cpp @@ -102,7 +102,7 @@ int ACE_Service_Config::signum_ = SIGHUP; const char *ACE_Service_Config::service_config_file_ = ACE_DEFAULT_SVC_CONF; // Name of file used to store messages. -const char *ACE_Service_Config::logger_key_ = ACE_LOGGER_KEY; +LPCTSTR ACE_Service_Config::logger_key_ = ACE_LOGGER_KEY; // Define the object that describes the service statically. ACE_STATIC_SVC_DEFINE (ACE_Service_Manager, diff --git a/ace/Service_Config.h b/ace/Service_Config.h index 6b6b1864142..a6104b72265 100644 --- a/ace/Service_Config.h +++ b/ace/Service_Config.h @@ -310,7 +310,7 @@ private: static const char *service_config_file_; // Name of service configuration file. - static const char *logger_key_; + static LPCTSTR logger_key_; // Where to write the logging output. //static ACE_Static_Svc_Descriptor service_list_[]; diff --git a/ace/Shared_Memory_MM.cpp b/ace/Shared_Memory_MM.cpp index cc5f93846c4..99cecec076b 100644 --- a/ace/Shared_Memory_MM.cpp +++ b/ace/Shared_Memory_MM.cpp @@ -29,7 +29,7 @@ ACE_Shared_Memory_MM::ACE_Shared_Memory_MM (ACE_HANDLE handle, ACE_TRACE ("ACE_Shared_Memory_MM::ACE_Shared_Memory_MM"); } -ACE_Shared_Memory_MM::ACE_Shared_Memory_MM (char file_name[], +ACE_Shared_Memory_MM::ACE_Shared_Memory_MM (LPTSTR file_name, int len, int flags, int mode, diff --git a/ace/Shared_Memory_MM.h b/ace/Shared_Memory_MM.h index 7852f0c976e..5b1b96bffd0 100644 --- a/ace/Shared_Memory_MM.h +++ b/ace/Shared_Memory_MM.h @@ -34,7 +34,7 @@ public: int share = MAP_PRIVATE, char *addr = 0, off_t pos = 0); - ACE_Shared_Memory_MM (char file_name[], + ACE_Shared_Memory_MM (LPTSTR file_name, int len = -1, int flags = O_RDWR | O_CREAT, int mode = ACE_DEFAULT_FILE_PERMS, @@ -49,7 +49,7 @@ public: char *addr = 0, off_t pos = 0); - int open (char file_name[], + int open (LPTSTR file_name, int len = -1, int flags = O_RDWR | O_CREAT, int mode = ACE_DEFAULT_FILE_PERMS, diff --git a/ace/Shared_Memory_MM.i b/ace/Shared_Memory_MM.i index 4f49965c3f3..d654f129a59 100644 --- a/ace/Shared_Memory_MM.i +++ b/ace/Shared_Memory_MM.i @@ -16,7 +16,7 @@ ACE_Shared_Memory_MM::open (ACE_HANDLE handle, } ACE_INLINE int -ACE_Shared_Memory_MM::open (char file_name[], +ACE_Shared_Memory_MM::open (LPTSTR file_name, int len, int flags, int mode, diff --git a/ace/Synch.cpp b/ace/Synch.cpp index 8b5afb515cf..415e5ac8e1a 100644 --- a/ace/Synch.cpp +++ b/ace/Synch.cpp @@ -185,7 +185,7 @@ ACE_File_Lock::ACE_File_Lock (ACE_HANDLE h) this->set_handle (h); } -ACE_File_Lock::ACE_File_Lock (const char *name, +ACE_File_Lock::ACE_File_Lock (LPCTSTR name, int flags, mode_t perms) { diff --git a/ace/Synch.h b/ace/Synch.h index cfca61333ba..ccadc73a21e 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -45,7 +45,7 @@ public: // <remove> is called make sure to call <dup> on the <handle> before // closing it. - ACE_File_Lock (const char *filename, int flags, mode_t mode = 0); + ACE_File_Lock (LPCTSTR filename, int flags, mode_t mode = 0); // Open the <filename> with <flags> and <mode> and set the result to // <handle_>. diff --git a/ace/System_Time.cpp b/ace/System_Time.cpp index ee93df24573..38c9a2f39db 100644 --- a/ace/System_Time.cpp +++ b/ace/System_Time.cpp @@ -5,7 +5,7 @@ #include "ace/Time_Value.h" #include "ace/System_Time.h" -ACE_System_Time::ACE_System_Time (const char *poolname) +ACE_System_Time::ACE_System_Time (LPCTSTR poolname) : delta_time_ (0) { ACE_TRACE ("ACE_System_Time::ACE_System_Time"); diff --git a/ace/System_Time.h b/ace/System_Time.h index 8e167228ec6..948ec2d2a54 100644 --- a/ace/System_Time.h +++ b/ace/System_Time.h @@ -43,7 +43,7 @@ public: // smoothly slow down or speed up the local system clock to reach // the system time of the master clock. - ACE_System_Time (const char *poolname = ACE_DEFAULT_BACKING_STORE); + ACE_System_Time (LPCTSTR poolname = ACE_DEFAULT_BACKING_STORE); // Default constructor. ~ACE_System_Time (void); diff --git a/ace/Token.cpp b/ace/Token.cpp index 748579be47c..4a6fdeda0d3 100644 --- a/ace/Token.cpp +++ b/ace/Token.cpp @@ -30,7 +30,7 @@ ACE_Token::ACE_Queue_Entry::ACE_Queue_Entry (ACE_Thread_Mutex &m, ACE_TRACE ("ACE_Token::ACE_Queue_Entry::ACE_Queue_Entry"); } -ACE_Token::ACE_Token (const char *name, void *any) +ACE_Token::ACE_Token (LPCTSTR name, void *any) : head_ (0), tail_ (0), lock_ (name, any), diff --git a/ace/Token.h b/ace/Token.h index 5c85022165c..961fdf906a0 100644 --- a/ace/Token.h +++ b/ace/Token.h @@ -40,7 +40,7 @@ class ACE_Export ACE_Token public: // = Initialization and termination. - ACE_Token (const char *name = 0, void * = 0); + ACE_Token (LPCTSTR name = 0, void * = 0); virtual ~ACE_Token (void); // = Synchronization operations. diff --git a/ace/ace.mak b/ace/ace.mak index 05b14043de4..28542c0dde4 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"
@@ -130,6 +130,7 @@ CLEAN : -@erase ".\Release\Local_Name_Space.obj"
-@erase ".\Release\FIFO_Recv_Msg.obj"
-@erase ".\Release\Method_Object.obj"
+ -@erase ".\Release\Registry.obj"
-@erase ".\Release\Svc_Conf_y.obj"
-@erase ".\Release\SPIPE_Connector.obj"
-@erase ".\Release\Parse_Node.obj"
@@ -172,7 +173,6 @@ CLEAN : -@erase ".\Release\Task.obj"
-@erase ".\Release\FIFO_Send.obj"
-@erase ".\Release\SV_Semaphore_Complex.obj"
- -@erase ".\Release\Registry.obj"
-@erase ".\Release\Strategies.obj"
-@erase ".\ace.lib"
-@erase ".\ace.exp"
@@ -181,8 +181,8 @@ CLEAN : if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c
-# ADD CPP /nologo /MDd /W3 /GX /O2 /I "..\STL" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c
-CPP_PROJ=/nologo /MDd /W3 /GX /O2 /I "..\STL" /D "WIN32" /D "NDEBUG" /D\
+# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\STL" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /c
+CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "..\STL" /D "NDEBUG" /D "WIN32" /D\
"_WINDOWS" /Fp"$(INTDIR)/ace.pch" /YX /Fo"$(INTDIR)/" /c
CPP_OBJS=.\Release/
CPP_SBRS=
@@ -281,6 +281,7 @@ LINK32_OBJS= \ "$(INTDIR)/Local_Name_Space.obj" \
"$(INTDIR)/FIFO_Recv_Msg.obj" \
"$(INTDIR)/Method_Object.obj" \
+ "$(INTDIR)/Registry.obj" \
"$(INTDIR)/Svc_Conf_y.obj" \
"$(INTDIR)/SPIPE_Connector.obj" \
"$(INTDIR)/Parse_Node.obj" \
@@ -323,7 +324,6 @@ LINK32_OBJS= \ "$(INTDIR)/Task.obj" \
"$(INTDIR)/FIFO_Send.obj" \
"$(INTDIR)/SV_Semaphore_Complex.obj" \
- "$(INTDIR)/Registry.obj" \
"$(INTDIR)/Strategies.obj"
"$(OUTDIR)\ace.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
@@ -443,6 +443,7 @@ CLEAN : -@erase ".\Debug\Activation_Queue.obj"
-@erase ".\Debug\FIFO.obj"
-@erase ".\Debug\FIFO_Send_Msg.obj"
+ -@erase ".\Debug\Registry.obj"
-@erase ".\Debug\ReactorEx.obj"
-@erase ".\Debug\CORBA_Handler.obj"
-@erase ".\Debug\TLI_Acceptor.obj"
@@ -470,7 +471,6 @@ CLEAN : -@erase ".\Debug\SOCK_Acceptor.obj"
-@erase ".\Debug\Profile_Timer.obj"
-@erase ".\Debug\Thread.obj"
- -@erase ".\Debug\Registry.obj"
-@erase ".\Debug\Strategies.obj"
-@erase ".\ace.ilk"
-@erase ".\ace.lib"
@@ -481,9 +481,9 @@ CLEAN : if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c
-# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c
-CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS"\
- /Fp"$(INTDIR)/ace.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
+# ADD CPP /nologo /MDd /W3 /Gm /Zi /Od /I "..\STL" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /c
+CPP_PROJ=/nologo /MDd /W3 /Gm /Zi /Od /I "..\STL" /D "_DEBUG" /D "WIN32" /D\
+ "_WINDOWS" /Fp"$(INTDIR)/ace.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
CPP_OBJS=.\Debug/
CPP_SBRS=
# ADD BASE MTL /nologo /D "_DEBUG" /win32
@@ -596,6 +596,7 @@ LINK32_OBJS= \ "$(INTDIR)/Activation_Queue.obj" \
"$(INTDIR)/FIFO.obj" \
"$(INTDIR)/FIFO_Send_Msg.obj" \
+ "$(INTDIR)/Registry.obj" \
"$(INTDIR)/ReactorEx.obj" \
"$(INTDIR)/CORBA_Handler.obj" \
"$(INTDIR)/TLI_Acceptor.obj" \
@@ -623,7 +624,6 @@ LINK32_OBJS= \ "$(INTDIR)/SOCK_Acceptor.obj" \
"$(INTDIR)/Profile_Timer.obj" \
"$(INTDIR)/Thread.obj" \
- "$(INTDIR)/Registry.obj" \
"$(INTDIR)/Strategies.obj"
"$(OUTDIR)\ace.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
@@ -667,7786 +667,3524 @@ LINK32_OBJS= \ # Begin Source File
SOURCE=.\UPIPE_Stream.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_UPIPE=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\set.h"\
- ".\..\STL\stack.h"\
- ".\..\STL\vector.h"\
+ ".\UPIPE_Stream.h"\
+ ".\UPIPE_Stream.i"\
+ ".\Stream.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ ".\SPIPE.h"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ ".\UPIPE_Addr.h"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ ".\Module.h"\
+ ".\Stream.i"\
+ ".\Stream.cpp"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(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_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\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"\
+ "..\STL\set.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"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(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)}"\.\Time_Value.i"\
".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
".\Task.i"\
- ".\Task_T.cpp"\
".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
+ {$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\Shared_Object.i"\
{$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ ".\Task_T.i"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\UPIPE_Addr.h"\
- ".\UPIPE_Stream.h"\
- ".\UPIPE_Stream.i"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_UPIPE=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\UPIPE_Stream.obj" : $(SOURCE) $(DEP_CPP_UPIPE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_UPIPE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Token.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
{$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
{$(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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
".\Stream_Modules.h"\
".\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"\
+ ".\Stream_Modules.cpp"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
- {$(INCLUDE)}"\.\Synch_T.i"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\UPIPE_Addr.h"\
- ".\UPIPE_Stream.h"\
- ".\UPIPE_Stream.i"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_UPIPE=\
- ".\STL\mutex.h"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.i"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
"$(INTDIR)\UPIPE_Stream.obj" : $(SOURCE) $(DEP_CPP_UPIPE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\UPIPE_Connector.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_UPIPE_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- ".\SPIPE_Stream.h"\
- ".\SPIPE_Stream.i"\
- ".\Stream.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)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
".\UPIPE_Connector.h"\
- ".\UPIPE_Connector.i"\
".\UPIPE_Stream.h"\
-
-
-"$(INTDIR)\UPIPE_Connector.obj" : $(SOURCE) $(DEP_CPP_UPIPE_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_UPIPE_=\
+ {$(INCLUDE)}"\.\Synch.h"\
+ ".\SPIPE_Stream.h"\
+ ".\UPIPE_Connector.i"\
+ ".\Stream.h"\
+ ".\SPIPE.h"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Stream.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ ".\Module.h"\
+ ".\Stream.i"\
+ ".\Stream.cpp"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(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_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
+ "..\STL\set.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"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- ".\SPIPE_Stream.h"\
- ".\SPIPE_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(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)}"\.\Time_Value.i"\
".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
".\Task.i"\
- ".\Task_T.cpp"\
".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
+ {$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\Shared_Object.i"\
{$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ ".\Task_T.i"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\UPIPE_Addr.h"\
- ".\UPIPE_Connector.h"\
- ".\UPIPE_Connector.i"\
- ".\UPIPE_Stream.h"\
- ".\UPIPE_Stream.i"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_UPIPE_=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.i"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ ".\SPIPE_Stream.i"\
"$(INTDIR)\UPIPE_Connector.obj" : $(SOURCE) $(DEP_CPP_UPIPE_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\UPIPE_Acceptor.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_UPIPE_A=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\UPIPE_Acceptor.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Acceptor.h"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- ".\SPIPE_Stream.h"\
- ".\SPIPE_Stream.i"\
- ".\Stream.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ ".\UPIPE_Stream.h"\
{$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
- {$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
+ ".\SPIPE_Acceptor.h"\
{$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\UPIPE_Acceptor.h"\
".\UPIPE_Acceptor.i"\
- ".\UPIPE_Stream.h"\
-
-
-"$(INTDIR)\UPIPE_Acceptor.obj" : $(SOURCE) $(DEP_CPP_UPIPE_A) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_UPIPE_A=\
+ ".\Stream.h"\
+ ".\SPIPE.h"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ ".\UPIPE_Addr.h"\
+ ".\UPIPE_Stream.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ ".\Module.h"\
+ ".\Stream.i"\
+ ".\Stream.cpp"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(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)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.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"\
- ".\Module.cpp"\
- ".\Module.h"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ ".\Task.h"\
".\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"\
+ ".\Module.cpp"\
{$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ ".\Task.i"\
+ ".\Task_T.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
+ ".\Task_T.i"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Token.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
{$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Acceptor.h"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
".\SPIPE_Addr.h"\
+ ".\SPIPE.i"\
".\SPIPE_Addr.i"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Synch.i"\
".\SPIPE_Stream.h"\
".\SPIPE_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\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"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\UPIPE_Acceptor.h"\
- ".\UPIPE_Acceptor.i"\
- ".\UPIPE_Addr.h"\
- ".\UPIPE_Stream.h"\
- ".\UPIPE_Stream.i"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_UPIPE_A=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\UPIPE_Acceptor.obj" : $(SOURCE) $(DEP_CPP_UPIPE_A) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\UNIX_Addr.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_UNIX_=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ ".\UNIX_Addr.h"\
+ ".\UNIX_Addr.i"\
{$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\UNIX_Addr.h"\
- ".\UNIX_Addr.i"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_UNIX_=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\UNIX_Addr.obj" : $(SOURCE) $(DEP_CPP_UNIX_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_UNIX_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\UNIX_Addr.h"\
- ".\UNIX_Addr.i"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_UNIX_=\
- ".\STL\mutex.h"\
"$(INTDIR)\UNIX_Addr.obj" : $(SOURCE) $(DEP_CPP_UNIX_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Trace.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TRACE=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\Trace.h"\
".\Trace.i"\
-
-
-"$(INTDIR)\Trace.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TRACE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\Trace.i"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TRACE=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\Trace.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Token_Request_Reply.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TOKEN=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
{$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
+ "..\STL\stack.h"\
{$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.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"\
- ".\Token_Request_Reply.h"\
- ".\Token_Request_Reply.i"\
- {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Token_Request_Reply.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TOKEN=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\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)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- ".\Token_Request_Reply.h"\
- ".\Token_Request_Reply.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TOKEN=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\Token_Request_Reply.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Token_Manager.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TOKEN_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.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"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Token_Manager.obj" : $(SOURCE) $(DEP_CPP_TOKEN_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TOKEN_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\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)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TOKEN_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
"$(INTDIR)\Token_Manager.obj" : $(SOURCE) $(DEP_CPP_TOKEN_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Token_Collection.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TOKEN_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
+ ".\Token_Collection.h"\
{$(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"\
+ ".\Token_Collection.i"\
{$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ ".\SString.h"\
+ {$(INCLUDE)}"\.\ACE.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)}"\.\Map_Manager.cpp"\
{$(INCLUDE)}"\.\OS.h"\
- {$(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)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
{$(INCLUDE)}"\.\Service_Config.h"\
- {$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(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"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.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"\
- ".\Token_Collection.h"\
- ".\Token_Collection.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Token_Collection.obj" : $(SOURCE) $(DEP_CPP_TOKEN_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TOKEN_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\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)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- ".\Token_Collection.h"\
- ".\Token_Collection.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TOKEN_C=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ ".\SString.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\Token_Collection.obj" : $(SOURCE) $(DEP_CPP_TOKEN_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Token.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TOKEN_CP=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.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)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\Token.h"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Token.obj" : $(SOURCE) $(DEP_CPP_TOKEN_CP) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TOKEN_CP=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.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)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TOKEN_CP=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
"$(INTDIR)\Token.obj" : $(SOURCE) $(DEP_CPP_TOKEN_CP) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\TLI_Stream.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TLI_S=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\TLI_Stream.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
".\TLI.h"\
- ".\TLI.i"\
- ".\TLI_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
".\TLI_Stream.i"\
-
-
-"$(INTDIR)\TLI_Stream.obj" : $(SOURCE) $(DEP_CPP_TLI_S) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TLI_S=\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\TLI.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- ".\TLI.h"\
- ".\TLI.i"\
- ".\TLI_Stream.h"\
- ".\TLI_Stream.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TLI_S=\
- ".\STL\mutex.h"\
"$(INTDIR)\TLI_Stream.obj" : $(SOURCE) $(DEP_CPP_TLI_S) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\TLI_Connector.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TLI_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\Handle_Set.h"\
+ ".\TLI_Connector.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- ".\TLI.h"\
- ".\TLI.i"\
- ".\TLI_Connector.h"\
- ".\TLI_Connector.i"\
".\TLI_Stream.h"\
+ ".\TLI_Connector.i"\
+ ".\TLI.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
".\TLI_Stream.i"\
-
-
-"$(INTDIR)\TLI_Connector.obj" : $(SOURCE) $(DEP_CPP_TLI_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TLI_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\Addr.h"\
+ ".\TLI.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\Time_Value.i"\
- ".\TLI.h"\
- ".\TLI.i"\
- ".\TLI_Connector.h"\
- ".\TLI_Connector.i"\
- ".\TLI_Stream.h"\
- ".\TLI_Stream.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TLI_C=\
- ".\STL\mutex.h"\
"$(INTDIR)\TLI_Connector.obj" : $(SOURCE) $(DEP_CPP_TLI_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\TLI_Acceptor.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TLI_A=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\TLI_Acceptor.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
".\TLI.h"\
- ".\TLI.i"\
- ".\TLI_Acceptor.h"\
- ".\TLI_Acceptor.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
".\TLI_Stream.h"\
- ".\TLI_Stream.i"\
-
-
-"$(INTDIR)\TLI_Acceptor.obj" : $(SOURCE) $(DEP_CPP_TLI_A) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TLI_A=\
+ ".\TLI_Acceptor.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\TLI.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\INET_Addr.h"\
+ ".\TLI_Stream.i"\
{$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- ".\TLI.h"\
- ".\TLI.i"\
- ".\TLI_Acceptor.h"\
- ".\TLI_Acceptor.i"\
- ".\TLI_Stream.h"\
- ".\TLI_Stream.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TLI_A=\
- ".\STL\mutex.h"\
"$(INTDIR)\TLI_Acceptor.obj" : $(SOURCE) $(DEP_CPP_TLI_A) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\TLI.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TLI_CP=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
".\TLI.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\TLI.i"\
-
-
-"$(INTDIR)\TLI.obj" : $(SOURCE) $(DEP_CPP_TLI_CP) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TLI_CP=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- ".\TLI.h"\
- ".\TLI.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TLI_CP=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\TLI.obj" : $(SOURCE) $(DEP_CPP_TLI_CP) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Timer_Queue.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TIMER=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.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)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Timer_Queue.obj" : $(SOURCE) $(DEP_CPP_TIMER) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TIMER=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TIMER=\
- ".\STL\mutex.h"\
"$(INTDIR)\Timer_Queue.obj" : $(SOURCE) $(DEP_CPP_TIMER) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Time_Value.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TIME_=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_TIME_=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Time_Value.obj" : $(SOURCE) $(DEP_CPP_TIME_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TIME_=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TIME_=\
- ".\STL\mutex.h"\
"$(INTDIR)\Time_Value.obj" : $(SOURCE) $(DEP_CPP_TIME_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Time_Request_Reply.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TIME_R=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- ".\SString.h"\
- ".\SString.i"\
".\Time_Request_Reply.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Time_Request_Reply.obj" : $(SOURCE) $(DEP_CPP_TIME_R) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TIME_R=\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
".\SString.h"\
".\SString.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Time_Request_Reply.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TIME_R=\
- ".\STL\mutex.h"\
"$(INTDIR)\Time_Request_Reply.obj" : $(SOURCE) $(DEP_CPP_TIME_R) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Thread_Manager.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_THREA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.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)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Thread_Manager.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_THREA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
{$(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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_THREA=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
"$(INTDIR)\Thread_Manager.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Thread.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_THREAD=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_THREAD=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_THREAD=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_THREAD=\
- ".\STL\mutex.h"\
"$(INTDIR)\Thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\System_Time.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SYSTE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.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)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
- {$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(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"\
- ".\System_Time.h"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
+ ".\System_Time.h"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\System_Time.obj" : $(SOURCE) $(DEP_CPP_SYSTE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SYSTE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Memory_Pool.h"\
- {$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.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)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
- ".\System_Time.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SYSTE=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
"$(INTDIR)\System_Time.obj" : $(SOURCE) $(DEP_CPP_SYSTE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Synch_Options.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SYNCH=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SYNCH=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Synch_Options.obj" : $(SOURCE) $(DEP_CPP_SYNCH) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SYNCH=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SYNCH=\
- ".\STL\mutex.h"\
"$(INTDIR)\Synch_Options.obj" : $(SOURCE) $(DEP_CPP_SYNCH) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Synch.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SYNCH_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.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)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Synch.obj" : $(SOURCE) $(DEP_CPP_SYNCH_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SYNCH_=\
+ {$(INCLUDE)}"\.\Synch.i"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- {$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SYNCH_=\
- ".\STL\mutex.h"\
"$(INTDIR)\Synch.obj" : $(SOURCE) $(DEP_CPP_SYNCH_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Svc_Conf_y.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SVC_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
".\ARGV.h"\
+ ".\Svc_Conf.h"\
+ ".\Module.h"\
+ ".\Stream.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\ARGV.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)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
".\Obstack.h"\
- {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
".\Parse_Node.h"\
- ".\Parse_Node.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ "..\STL\set.h"\
{$(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"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- ".\Stream.h"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- ".\Svc_Conf.h"\
- {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Svc_Conf_y.obj" : $(SOURCE) $(DEP_CPP_SVC_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SVC_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- ".\ARGV.h"\
- ".\ARGV.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- ".\Obstack.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Parse_Node.h"\
- ".\Parse_Node.i"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Token.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.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"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- ".\Svc_Conf.h"\
- {$(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)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Service_Record.h"\
+ ".\Parse_Node.i"\
+ ".\Service_Record.i"\
".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
".\Task.i"\
- ".\Task_T.cpp"\
".\Task_T.h"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SVC_C=\
- ".\STL\mutex.h"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream.i"\
+ ".\Stream.cpp"\
"$(INTDIR)\Svc_Conf_y.obj" : $(SOURCE) $(DEP_CPP_SVC_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Svc_Conf_l.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SVC_CO=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ ".\Svc_Conf.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\ACE.i"\
".\Obstack.h"\
- {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
".\Parse_Node.h"\
- ".\Parse_Node.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ "..\STL\set.h"\
{$(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"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- ".\Stream.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- ".\Svc_Conf.h"\
- {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Svc_Conf_l.obj" : $(SOURCE) $(DEP_CPP_SVC_CO) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SVC_CO=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- ".\Obstack.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Parse_Node.h"\
- ".\Parse_Node.i"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Token.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.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"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Service_Record.h"\
+ ".\Parse_Node.i"\
".\Stream.h"\
+ ".\Service_Record.i"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ ".\Module.h"\
".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- ".\Svc_Conf.h"\
- {$(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"\
+ ".\Stream.cpp"\
".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
".\Task.i"\
- ".\Task_T.cpp"\
".\Task_T.h"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SVC_CO=\
- ".\STL\mutex.h"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
"$(INTDIR)\Svc_Conf_l.obj" : $(SOURCE) $(DEP_CPP_SVC_CO) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SV_Shared_Memory.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SV_SH=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
".\SV_Shared_Memory.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\SV_Shared_Memory.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SV_Shared_Memory.obj" : $(SOURCE) $(DEP_CPP_SV_SH) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SV_SH=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\SV_Shared_Memory.h"\
- ".\SV_Shared_Memory.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SV_SH=\
- ".\STL\mutex.h"\
"$(INTDIR)\SV_Shared_Memory.obj" : $(SOURCE) $(DEP_CPP_SV_SH) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SV_Semaphore_Simple.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SV_SE=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\SV_Semaphore_Simple.obj" : $(SOURCE) $(DEP_CPP_SV_SE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SV_SE=\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SV_SE=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
"$(INTDIR)\SV_Semaphore_Simple.obj" : $(SOURCE) $(DEP_CPP_SV_SE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SV_Semaphore_Complex.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SV_SEM=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\SV_Semaphore_Complex.obj" : $(SOURCE) $(DEP_CPP_SV_SEM) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SV_SEM=\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SV_SEM=\
- ".\STL\mutex.h"\
"$(INTDIR)\SV_Semaphore_Complex.obj" : $(SOURCE) $(DEP_CPP_SV_SEM) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SV_Message_Queue.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SV_ME=\
- {$(INCLUDE)}"\.\ACE.h"\
+ ".\SV_Message_Queue.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\SV_Message.h"\
- ".\SV_Message.i"\
- ".\SV_Message_Queue.h"\
".\SV_Message_Queue.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SV_Message_Queue.obj" : $(SOURCE) $(DEP_CPP_SV_ME) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SV_ME=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ ".\SV_Message.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\SV_Message.h"\
- ".\SV_Message.i"\
- ".\SV_Message_Queue.h"\
- ".\SV_Message_Queue.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SV_ME=\
- ".\STL\mutex.h"\
"$(INTDIR)\SV_Message_Queue.obj" : $(SOURCE) $(DEP_CPP_SV_ME) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SV_Message.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SV_MES=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
".\SV_Message.h"\
".\SV_Message.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SV_MES=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\SV_Message.obj" : $(SOURCE) $(DEP_CPP_SV_MES) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SV_MES=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\SV_Message.h"\
- ".\SV_Message.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SV_MES=\
- ".\STL\mutex.h"\
"$(INTDIR)\SV_Message.obj" : $(SOURCE) $(DEP_CPP_SV_MES) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SString.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SSTRI=\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ ".\SString.h"\
+ ".\SString.i"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\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)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.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)}"\.\OS.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(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"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\SString.obj" : $(SOURCE) $(DEP_CPP_SSTRI) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SSTRI=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
- {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SSTRI=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\SString.obj" : $(SOURCE) $(DEP_CPP_SSTRI) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SPIPE_Stream.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SPIPE=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
+ ".\SPIPE_Stream.h"\
".\SPIPE.h"\
- ".\SPIPE.i"\
".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- ".\SPIPE_Stream.h"\
".\SPIPE_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SPIPE=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\SPIPE_Stream.obj" : $(SOURCE) $(DEP_CPP_SPIPE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SPIPE=\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\SPIPE.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\SPIPE_Addr.i"\
- ".\SPIPE_Stream.h"\
- ".\SPIPE_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SPIPE=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\SPIPE_Stream.obj" : $(SOURCE) $(DEP_CPP_SPIPE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SPIPE_Connector.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SPIPE_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
".\SPIPE_Connector.h"\
- ".\SPIPE_Connector.i"\
".\SPIPE_Stream.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE_Addr.h"\
".\SPIPE_Stream.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SPIPE_Connector.obj" : $(SOURCE) $(DEP_CPP_SPIPE_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SPIPE_=\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\SPIPE.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\SPIPE_Addr.i"\
- ".\SPIPE_Connector.h"\
- ".\SPIPE_Connector.i"\
- ".\SPIPE_Stream.h"\
- ".\SPIPE_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SPIPE_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\SPIPE_Connector.obj" : $(SOURCE) $(DEP_CPP_SPIPE_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SPIPE_Addr.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SPIPE_A=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
{$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SPIPE_A=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\SPIPE_Addr.obj" : $(SOURCE) $(DEP_CPP_SPIPE_A) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SPIPE_A=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SPIPE_A=\
- ".\STL\mutex.h"\
"$(INTDIR)\SPIPE_Addr.obj" : $(SOURCE) $(DEP_CPP_SPIPE_A) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SPIPE_Acceptor.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SPIPE_AC=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\SPIPE_Acceptor.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
+ ".\SPIPE_Stream.h"\
".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Acceptor.h"\
".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- ".\SPIPE_Stream.h"\
".\SPIPE_Stream.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SPIPE_Acceptor.obj" : $(SOURCE) $(DEP_CPP_SPIPE_AC) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SPIPE_AC=\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\SPIPE.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Addr.h"\
+ ".\SPIPE_Addr.i"\
{$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Acceptor.h"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- ".\SPIPE_Stream.h"\
- ".\SPIPE_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SPIPE_AC=\
- ".\STL\mutex.h"\
"$(INTDIR)\SPIPE_Acceptor.obj" : $(SOURCE) $(DEP_CPP_SPIPE_AC) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SPIPE.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SPIPE_C=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
+ ".\SPIPE.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SPIPE_C=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\SPIPE.obj" : $(SOURCE) $(DEP_CPP_SPIPE_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SPIPE_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\SPIPE_Addr.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SPIPE_C=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\SPIPE.obj" : $(SOURCE) $(DEP_CPP_SPIPE_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK_Stream.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
{$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
{$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SOCK_Stream.obj" : $(SOURCE) $(DEP_CPP_SOCK_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\SOCK_Stream.obj" : $(SOURCE) $(DEP_CPP_SOCK_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK_IO.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_I=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SOCK_I=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\SOCK_IO.obj" : $(SOURCE) $(DEP_CPP_SOCK_I) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_I=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_I=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
"$(INTDIR)\SOCK_IO.obj" : $(SOURCE) $(DEP_CPP_SOCK_I) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK_Dgram_Mcast.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_D=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ ".\SOCK_Dgram_Mcast.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
".\SOCK_Dgram.h"\
- ".\SOCK_Dgram.i"\
- ".\SOCK_Dgram_Mcast.h"\
".\SOCK_Dgram_Mcast.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SOCK_Dgram_Mcast.obj" : $(SOURCE) $(DEP_CPP_SOCK_D) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_D=\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\SOCK_Dgram.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Dgram.h"\
- ".\SOCK_Dgram.i"\
- ".\SOCK_Dgram_Mcast.h"\
- ".\SOCK_Dgram_Mcast.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_D=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\SOCK_Dgram_Mcast.obj" : $(SOURCE) $(DEP_CPP_SOCK_D) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK_Dgram_Bcast.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_DG=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\SOCK_Dgram_Bcast.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
".\SOCK_Dgram.h"\
- ".\SOCK_Dgram.i"\
- ".\SOCK_Dgram_Bcast.h"\
".\SOCK_Dgram_Bcast.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SOCK_Dgram_Bcast.obj" : $(SOURCE) $(DEP_CPP_SOCK_DG) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_DG=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
- ".\SOCK_Dgram_Bcast.h"\
- ".\SOCK_Dgram_Bcast.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_DG=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\SOCK_Dgram_Bcast.obj" : $(SOURCE) $(DEP_CPP_SOCK_DG) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK_Dgram.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_DGR=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\SOCK_Dgram.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Dgram.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\SOCK_Dgram.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SOCK_Dgram.obj" : $(SOURCE) $(DEP_CPP_SOCK_DGR) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_DGR=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Dgram.h"\
- ".\SOCK_Dgram.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_DGR=\
- ".\STL\mutex.h"\
"$(INTDIR)\SOCK_Dgram.obj" : $(SOURCE) $(DEP_CPP_SOCK_DGR) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK_Connector.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ ".\SOCK_Connector.h"\
{$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
{$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
".\SOCK_Connector.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SOCK_Connector.obj" : $(SOURCE) $(DEP_CPP_SOCK_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_C=\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_C=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\SOCK_Connector.obj" : $(SOURCE) $(DEP_CPP_SOCK_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK_CODgram.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_CO=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
".\SOCK_CODgram.h"\
- ".\SOCK_CODgram.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\SOCK_CODgram.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SOCK_CODgram.obj" : $(SOURCE) $(DEP_CPP_SOCK_CO) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_CO=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_CODgram.h"\
- ".\SOCK_CODgram.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_CO=\
- ".\STL\mutex.h"\
"$(INTDIR)\SOCK_CODgram.obj" : $(SOURCE) $(DEP_CPP_SOCK_CO) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK_Acceptor.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_A=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
".\SOCK_Acceptor.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\SOCK_Acceptor.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SOCK_Acceptor.obj" : $(SOURCE) $(DEP_CPP_SOCK_A) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_A=\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_A=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\SOCK_Acceptor.obj" : $(SOURCE) $(DEP_CPP_SOCK_A) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Signal.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SIGNA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
+ {$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(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)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Signal.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SIGNA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ "..\STL\set.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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SIGNA=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
"$(INTDIR)\Signal.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Shared_Object.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SHARE=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SHARE=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Shared_Object.obj" : $(SOURCE) $(DEP_CPP_SHARE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SHARE=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SHARE=\
- ".\STL\mutex.h"\
"$(INTDIR)\Shared_Object.obj" : $(SOURCE) $(DEP_CPP_SHARE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Shared_Memory_SV.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SHARED=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Shared_Memory.h"\
".\Shared_Memory_SV.h"\
".\Shared_Memory_SV.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ ".\Shared_Memory.h"\
".\SV_Shared_Memory.h"\
- ".\SV_Shared_Memory.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SHARED=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Shared_Memory_SV.obj" : $(SOURCE) $(DEP_CPP_SHARED) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SHARED=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Shared_Memory.h"\
- ".\Shared_Memory_SV.h"\
- ".\Shared_Memory_SV.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\SV_Shared_Memory.h"\
".\SV_Shared_Memory.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SHARED=\
- ".\STL\mutex.h"\
"$(INTDIR)\Shared_Memory_SV.obj" : $(SOURCE) $(DEP_CPP_SHARED) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Shared_Memory_MM.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SHARED_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\OS.h"\
- ".\Shared_Memory.h"\
".\Shared_Memory_MM.h"\
".\Shared_Memory_MM.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Shared_Memory_MM.obj" : $(SOURCE) $(DEP_CPP_SHARED_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SHARED_=\
+ ".\Shared_Memory.h"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\Mem_Map.h"\
{$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Shared_Memory.h"\
- ".\Shared_Memory_MM.h"\
- ".\Shared_Memory_MM.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SHARED_=\
- ".\STL\mutex.h"\
"$(INTDIR)\Shared_Memory_MM.obj" : $(SOURCE) $(DEP_CPP_SHARED_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Service_Repository.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SERVI=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
".\Service_Repository.h"\
".\Service_Repository.i"\
+ ".\Service_Record.h"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ ".\Stream.h"\
+ ".\Service_Record.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- ".\Stream.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
{$(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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Service_Repository.obj" : $(SOURCE) $(DEP_CPP_SERVI) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SERVI=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\Message_Block.h"\
+ ".\Module.h"\
+ ".\Stream.i"\
+ ".\Stream.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ ".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ ".\Task.i"\
+ ".\Task_T.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
{$(INCLUDE)}"\.\Message_Queue.h"\
+ ".\Task_T.i"\
+ ".\Task_T.cpp"\
{$(INCLUDE)}"\.\Message_Queue.i"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(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"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
{$(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"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SERVI=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
"$(INTDIR)\Service_Repository.obj" : $(SOURCE) $(DEP_CPP_SERVI) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Service_Record.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SERVIC=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
".\Service_Record.h"\
".\Service_Record.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ ".\Stream.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- ".\Stream.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
{$(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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Service_Record.obj" : $(SOURCE) $(DEP_CPP_SERVIC) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SERVIC=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\Message_Block.h"\
+ ".\Module.h"\
+ ".\Stream.i"\
+ ".\Stream.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ ".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ ".\Task.i"\
+ ".\Task_T.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
{$(INCLUDE)}"\.\Message_Queue.h"\
+ ".\Task_T.i"\
+ ".\Task_T.cpp"\
{$(INCLUDE)}"\.\Message_Queue.i"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(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"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
{$(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"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SERVIC=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
"$(INTDIR)\Service_Record.obj" : $(SOURCE) $(DEP_CPP_SERVIC) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Service_Object.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SERVICE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\Service_Object.h"\
{$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Service_Object.obj" : $(SOURCE) $(DEP_CPP_SERVICE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SERVICE=\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Shared_Object.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SERVICE=\
- ".\STL\mutex.h"\
"$(INTDIR)\Service_Object.obj" : $(SOURCE) $(DEP_CPP_SERVICE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Service_Manager.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SERVICE_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
".\Get_Opt.h"\
+ ".\Service_Repository.h"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ ".\Service_Manager.h"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ ".\Service_Manager.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\Get_Opt.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
- {$(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"\
- ".\Service_Manager.h"\
- ".\Service_Manager.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
".\Service_Record.h"\
- ".\Service_Record.i"\
- ".\Service_Repository.h"\
".\Service_Repository.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ ".\Stream.h"\
+ ".\Service_Record.i"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- ".\Stream.h"\
+ {$(INCLUDE)}"\.\Event_Handler.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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(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)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Service_Manager.obj" : $(SOURCE) $(DEP_CPP_SERVICE_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SERVICE_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- ".\Get_Opt.h"\
- ".\Get_Opt.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)}"\.\Message_Block.h"\
+ ".\Module.h"\
+ ".\Stream.i"\
+ ".\Stream.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ ".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ ".\Task.i"\
+ ".\Task_T.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
{$(INCLUDE)}"\.\Message_Queue.h"\
+ ".\Task_T.i"\
+ ".\Task_T.cpp"\
{$(INCLUDE)}"\.\Message_Queue.i"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
{$(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"\
- ".\Service_Manager.h"\
- ".\Service_Manager.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\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"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SERVICE_=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ ".\SOCK_Acceptor.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\SOCK_Acceptor.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
"$(INTDIR)\Service_Manager.obj" : $(SOURCE) $(DEP_CPP_SERVICE_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Service_Main.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SERVICE_M=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ "..\STL\set.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\ACE.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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Service_Main.obj" : $(SOURCE) $(DEP_CPP_SERVICE_M) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SERVICE_M=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(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_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SERVICE_M=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\Service_Main.obj" : $(SOURCE) $(DEP_CPP_SERVICE_M) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Service_Config.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SERVICE_C=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ ".\Svc_Conf.h"\
+ ".\Get_Opt.h"\
".\ARGV.h"\
- ".\ARGV.i"\
- ".\Auto_Ptr.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ ".\Service_Manager.h"\
+ ".\Service_Repository.h"\
+ ".\Service_Record.h"\
+ "..\STL\set.h"\
".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
+ ".\Obstack.h"\
+ ".\Parse_Node.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- ".\Get_Opt.h"\
- ".\Get_Opt.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)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\E\MALLOC.H"\
+ ".\Parse_Node.i"\
+ ".\Get_Opt.i"\
+ ".\ARGV.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- ".\Obstack.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Parse_Node.h"\
- ".\Parse_Node.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"\
- ".\Service_Manager.h"\
- ".\Service_Manager.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
- ".\Stream.h"\
- ".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- ".\Svc_Conf.h"\
- {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_SERVICE_C=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Service_Config.obj" : $(SOURCE) $(DEP_CPP_SERVICE_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SERVICE_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- ".\ARGV.h"\
- ".\ARGV.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- ".\Get_Opt.h"\
- ".\Get_Opt.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)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
- {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- ".\Obstack.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Parse_Node.h"\
- ".\Parse_Node.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"\
- ".\Service_Manager.h"\
- ".\Service_Manager.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ ".\Service_Manager.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\SOCK_Acceptor.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\Shared_Object.i"\
+ ".\Service_Repository.i"\
".\Stream.h"\
+ ".\Service_Record.i"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ ".\Module.h"\
".\Stream.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- ".\Svc_Conf.h"\
- {$(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"\
+ ".\Stream.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
".\Task.i"\
- ".\Task_T.cpp"\
".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ ".\Task_T.i"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ ".\Auto_Ptr.i"\
+ ".\Auto_Ptr.cpp"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SERVICE_C=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
"$(INTDIR)\Service_Config.obj" : $(SOURCE) $(DEP_CPP_SERVICE_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Remote_Tokens.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_REMOT=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ ".\Remote_Tokens.h"\
+ ".\Singleton.h"\
+ ".\Remote_Tokens.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
- {$(INCLUDE)}"\.\Reactor.i"\
- {$(INCLUDE)}"\.\ReactorEx.h"\
- {$(INCLUDE)}"\.\ReactorEx.i"\
- ".\Remote_Tokens.h"\
- ".\Remote_Tokens.i"\
- {$(INCLUDE)}"\.\Service_Config.h"\
- {$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- ".\Singleton.cpp"\
- ".\Singleton.h"\
- ".\Singleton.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Local_Tokens.h"\
".\Token_Request_Reply.h"\
- ".\Token_Request_Reply.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Remote_Tokens.obj" : $(SOURCE) $(DEP_CPP_REMOT) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_REMOT=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\Addr.i"\
+ ".\SOCK_Connector.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
{$(INCLUDE)}"\.\Local_Tokens.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\Message_Block.h"\
- {$(INCLUDE)}"\.\Message_Block.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
- {$(INCLUDE)}"\.\Reactor.i"\
{$(INCLUDE)}"\.\ReactorEx.h"\
- {$(INCLUDE)}"\.\ReactorEx.i"\
- ".\Remote_Tokens.h"\
- ".\Remote_Tokens.i"\
- {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- ".\Singleton.cpp"\
- ".\Singleton.h"\
- ".\Singleton.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- ".\Token_Request_Reply.h"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
".\Token_Request_Reply.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_REMOT=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ ".\Singleton.i"\
+ ".\Singleton.cpp"\
"$(INTDIR)\Remote_Tokens.obj" : $(SOURCE) $(DEP_CPP_REMOT) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Remote_Name_Space.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_REMOTE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ ".\Remote_Name_Space.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ ".\SString.h"\
+ "..\STL\set.h"\
".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
".\Name_Space.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
- {$(INCLUDE)}"\.\Reactor.i"\
- {$(INCLUDE)}"\.\ReactorEx.h"\
- {$(INCLUDE)}"\.\ReactorEx.i"\
- ".\Remote_Name_Space.h"\
- {$(INCLUDE)}"\.\Service_Config.h"\
- {$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
+ ".\SString.i"\
{$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Service_Config.h"\
{$(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)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Remote_Name_Space.obj" : $(SOURCE) $(DEP_CPP_REMOTE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_REMOTE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ ".\Name_Request_Reply.h"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\Addr.i"\
+ ".\SOCK_Connector.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
{$(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"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
- ".\Name_Space.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
- {$(INCLUDE)}"\.\Reactor.i"\
{$(INCLUDE)}"\.\ReactorEx.h"\
- {$(INCLUDE)}"\.\ReactorEx.i"\
- ".\Remote_Name_Space.h"\
- {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Malloc.i"\
+ {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_REMOTE=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
"$(INTDIR)\Remote_Name_Space.obj" : $(SOURCE) $(DEP_CPP_REMOTE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Read_Buffer.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_READ_=\
+ ".\Read_Buffer.h"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ ".\Read_Buffer.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
- {$(INCLUDE)}"\.\Reactor.i"\
{$(INCLUDE)}"\.\ReactorEx.h"\
- {$(INCLUDE)}"\.\ReactorEx.i"\
- ".\Read_Buffer.h"\
- ".\Read_Buffer.i"\
- {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Read_Buffer.obj" : $(SOURCE) $(DEP_CPP_READ_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_READ_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\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)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Token.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
{$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
{$(INCLUDE)}"\.\Reactor.i"\
- {$(INCLUDE)}"\.\ReactorEx.h"\
- {$(INCLUDE)}"\.\ReactorEx.i"\
- ".\Read_Buffer.h"\
- ".\Read_Buffer.i"\
- {$(INCLUDE)}"\.\Service_Config.h"\
- {$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_READ_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\Read_Buffer.obj" : $(SOURCE) $(DEP_CPP_READ_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Reactor.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_REACT=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Connector.h"\
+ {$(INCLUDE)}"\.\Reactor.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\E\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)}"\.\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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\Synch.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_REACT=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Reactor.obj" : $(SOURCE) $(DEP_CPP_REACT) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_REACT=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ ".\SOCK_Acceptor.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\SOCK_Connector.i"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
{$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Token.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
{$(INCLUDE)}"\.\Local_Tokens.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
{$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_REACT=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
"$(INTDIR)\Reactor.obj" : $(SOURCE) $(DEP_CPP_REACT) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Profile_Timer.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_PROFI=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
".\Profile_Timer.h"\
".\Profile_Timer.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_PROFI=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Profile_Timer.obj" : $(SOURCE) $(DEP_CPP_PROFI) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_PROFI=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Profile_Timer.h"\
- ".\Profile_Timer.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_PROFI=\
- ".\STL\mutex.h"\
"$(INTDIR)\Profile_Timer.obj" : $(SOURCE) $(DEP_CPP_PROFI) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Process_Manager.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_PROCE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
".\Process_Manager.h"\
".\Process_Manager.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
{$(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)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Process_Manager.obj" : $(SOURCE) $(DEP_CPP_PROCE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_PROCE=\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Process_Manager.h"\
- ".\Process_Manager.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_PROCE=\
- ".\STL\mutex.h"\
"$(INTDIR)\Process_Manager.obj" : $(SOURCE) $(DEP_CPP_PROCE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Pipe.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_PIPE_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Pipe.obj" : $(SOURCE) $(DEP_CPP_PIPE_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_PIPE_=\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Acceptor.h"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
".\SOCK_Acceptor.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_PIPE_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\SOCK_Connector.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
"$(INTDIR)\Pipe.obj" : $(SOURCE) $(DEP_CPP_PIPE_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Parse_Node.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_PARSE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ ".\Service_Repository.h"\
+ ".\Task.h"\
".\Parse_Node.h"\
".\Parse_Node.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ "..\STL\set.h"\
{$(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"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\ACE.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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- ".\Stream.h"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\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"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Parse_Node.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_PARSE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(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_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Parse_Node.h"\
- ".\Parse_Node.i"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Token.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.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"\
- ".\Service_Record.h"\
- ".\Service_Record.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream.cpp"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Service_Record.h"\
+ ".\Service_Repository.i"\
".\Stream.h"\
+ ".\Service_Record.i"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ ".\Module.h"\
".\Stream.i"\
- ".\Stream_Modules.cpp"\
+ ".\Stream.cpp"\
+ ".\Module.i"\
+ ".\Module.cpp"\
".\Stream_Modules.h"\
".\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"\
- ".\Task.h"\
+ ".\Stream_Modules.cpp"\
".\Task.i"\
- ".\Task_T.cpp"\
".\Task_T.h"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_PARSE=\
- ".\STL\mutex.h"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
"$(INTDIR)\Parse_Node.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\OS.cpp
DEP_CPP_OS_CP=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\ARGV.h"\
- ".\ARGV.i"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ ".\ARGV.i"\
{$(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)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-NODEP_CPP_OS_CP=\
- ".\ace\ws2tcpip.h"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
"$(INTDIR)\OS.obj" : $(SOURCE) $(DEP_CPP_OS_CP) "$(INTDIR)"
@@ -8457,2799 +4195,1237 @@ NODEP_CPP_OS_CP=\ # Begin Source File
SOURCE=.\Obstack.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_OBSTA=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
".\Obstack.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_OBSTA=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Obstack.obj" : $(SOURCE) $(DEP_CPP_OBSTA) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_OBSTA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- ".\Obstack.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_OBSTA=\
- ".\STL\mutex.h"\
"$(INTDIR)\Obstack.obj" : $(SOURCE) $(DEP_CPP_OBSTA) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Naming_Context.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_NAMIN=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\Get_Opt.h"\
- ".\Get_Opt.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\Naming_Context.h"\
+ ".\Remote_Name_Space.h"\
".\Local_Name_Space.h"\
- ".\Local_Name_Space_T.cpp"\
- ".\Local_Name_Space_T.h"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
- ".\Name_Space.h"\
- ".\Naming_Context.h"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Reactor.h"\
- {$(INCLUDE)}"\.\Reactor.i"\
- {$(INCLUDE)}"\.\ReactorEx.h"\
- {$(INCLUDE)}"\.\ReactorEx.i"\
- ".\Remote_Name_Space.h"\
- {$(INCLUDE)}"\.\Service_Config.h"\
- {$(INCLUDE)}"\.\Service_Config.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ ".\Get_Opt.i"\
+ ".\SString.h"\
+ "..\STL\set.h"\
{$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
+ ".\Name_Proxy.h"\
+ ".\Name_Space.h"\
+ ".\SString.i"\
{$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
".\SOCK_Connector.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ ".\Name_Request_Reply.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
".\SOCK_Connector.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ {$(INCLUDE)}"\.\Proactor.h"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\Service_Config.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
{$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Naming_Context.obj" : $(SOURCE) $(DEP_CPP_NAMIN) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_NAMIN=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- ".\Get_Opt.h"\
- ".\Get_Opt.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- ".\Local_Name_Space.h"\
- ".\Local_Name_Space_T.cpp"\
- ".\Local_Name_Space_T.h"\
- {$(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)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\Message_Block.h"\
- {$(INCLUDE)}"\.\Message_Block.i"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
- ".\Name_Space.h"\
- ".\Naming_Context.h"\
- {$(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"\
- ".\Remote_Name_Space.h"\
- {$(INCLUDE)}"\.\Service_Config.h"\
- {$(INCLUDE)}"\.\Service_Config.i"\
- {$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
{$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_NAMIN=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ ".\Local_Name_Space_T.h"\
+ ".\Local_Name_Space_T.cpp"\
"$(INTDIR)\Naming_Context.obj" : $(SOURCE) $(DEP_CPP_NAMIN) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Name_Space.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_NAME_=\
+ ".\Name_Space.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
+ ".\SString.h"\
+ "..\STL\set.h"\
+ ".\Name_Proxy.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
- ".\Name_Space.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(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"\
- ".\..\STL\set.h"\
+ ".\SString.i"\
{$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Service_Config.h"\
{$(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)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Name_Space.obj" : $(SOURCE) $(DEP_CPP_NAME_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_NAME_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ ".\Name_Request_Reply.h"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\Addr.i"\
+ ".\SOCK_Connector.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
{$(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"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
- ".\Name_Space.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Svc_Conf_Tokens.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Malloc.i"\
+ {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_NAME_=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
"$(INTDIR)\Name_Space.obj" : $(SOURCE) $(DEP_CPP_NAME_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Name_Request_Reply.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_NAME_R=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
".\Name_Request_Reply.h"\
- {$(INCLUDE)}"\.\OS.h"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Name_Request_Reply.obj" : $(SOURCE) $(DEP_CPP_NAME_R) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_NAME_R=\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- ".\Name_Request_Reply.h"\
{$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
".\SString.h"\
".\SString.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_NAME_R=\
- ".\STL\mutex.h"\
"$(INTDIR)\Name_Request_Reply.obj" : $(SOURCE) $(DEP_CPP_NAME_R) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Name_Proxy.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_NAME_P=\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ ".\Name_Proxy.h"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\INET_Addr.h"\
+ ".\SOCK_Connector.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ ".\Name_Request_Reply.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ ".\SOCK_Connector.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
{$(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"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ "..\STL\set.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Name_Proxy.obj" : $(SOURCE) $(DEP_CPP_NAME_P) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_NAME_P=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\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)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\Message_Block.h"\
- {$(INCLUDE)}"\.\Message_Block.i"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
{$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_NAME_P=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ ".\SString.h"\
+ ".\SString.i"\
"$(INTDIR)\Name_Proxy.obj" : $(SOURCE) $(DEP_CPP_NAME_P) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Multiplexor.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_MULTI=\
+ ".\Multiplexor.h"\
+ ".\Multiplexor.i"\
+ ".\Module.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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"\
+ ".\Task.h"\
+ ".\Module.i"\
+ ".\Module.cpp"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- ".\Multiplexor.h"\
- ".\Multiplexor.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ ".\Task.i"\
+ ".\Task_T.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\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)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
".\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)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Multiplexor.obj" : $(SOURCE) $(DEP_CPP_MULTI) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_MULTI=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(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)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
- ".\Multiplexor.h"\
- ".\Multiplexor.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
{$(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"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_MULTI=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
"$(INTDIR)\Multiplexor.obj" : $(SOURCE) $(DEP_CPP_MULTI) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Message_Block.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_MESSA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.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)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
- {$(INCLUDE)}"\.\Memory_Pool.i"\
{$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(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)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Message_Block.obj" : $(SOURCE) $(DEP_CPP_MESSA) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_MESSA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.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)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_MESSA=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
"$(INTDIR)\Message_Block.obj" : $(SOURCE) $(DEP_CPP_MESSA) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Memory_Pool.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_MEMOR=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Memory_Pool.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(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)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Memory_Pool.obj" : $(SOURCE) $(DEP_CPP_MEMOR) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_MEMOR=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
- {$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.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)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Synch.h"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_MEMOR=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
"$(INTDIR)\Memory_Pool.obj" : $(SOURCE) $(DEP_CPP_MEMOR) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Mem_Map.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_MEM_M=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\Mem_Map.h"\
{$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Mem_Map.obj" : $(SOURCE) $(DEP_CPP_MEM_M) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_MEM_M=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_MEM_M=\
- ".\STL\mutex.h"\
"$(INTDIR)\Mem_Map.obj" : $(SOURCE) $(DEP_CPP_MEM_M) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Malloc.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_MALLO=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Memory_Pool.h"\
- {$(INCLUDE)}"\.\Memory_Pool.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(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)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Malloc.obj" : $(SOURCE) $(DEP_CPP_MALLO) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_MALLO=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
- {$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
- {$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.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)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_MALLO=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
"$(INTDIR)\Malloc.obj" : $(SOURCE) $(DEP_CPP_MALLO) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\LSOCK_Stream.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LSOCK=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ ".\LSOCK_Stream.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
".\LSOCK.h"\
- ".\LSOCK.i"\
- ".\LSOCK_Stream.h"\
".\LSOCK_Stream.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\LSOCK_Stream.obj" : $(SOURCE) $(DEP_CPP_LSOCK) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LSOCK=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- ".\LSOCK.h"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
".\LSOCK.i"\
- ".\LSOCK_Stream.h"\
- ".\LSOCK_Stream.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LSOCK=\
- ".\STL\mutex.h"\
"$(INTDIR)\LSOCK_Stream.obj" : $(SOURCE) $(DEP_CPP_LSOCK) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\LSOCK_Dgram.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LSOCK_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\LSOCK_Dgram.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ ".\SOCK_Dgram.h"\
".\LSOCK.h"\
- ".\LSOCK.i"\
- ".\LSOCK_Dgram.h"\
".\LSOCK_Dgram.i"\
- {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Dgram.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\SOCK_Dgram.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\LSOCK_Dgram.obj" : $(SOURCE) $(DEP_CPP_LSOCK_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LSOCK_=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ ".\LSOCK.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- ".\LSOCK.h"\
- ".\LSOCK.i"\
- ".\LSOCK_Dgram.h"\
- ".\LSOCK_Dgram.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Dgram.h"\
- ".\SOCK_Dgram.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LSOCK_=\
- ".\STL\mutex.h"\
"$(INTDIR)\LSOCK_Dgram.obj" : $(SOURCE) $(DEP_CPP_LSOCK_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\LSOCK_Connector.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LSOCK_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- ".\LSOCK.h"\
- ".\LSOCK.i"\
".\LSOCK_Connector.h"\
- ".\LSOCK_Connector.i"\
- ".\LSOCK_Stream.h"\
- ".\LSOCK_Stream.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
".\SOCK_Connector.h"\
+ ".\LSOCK_Stream.h"\
+ ".\UNIX_Addr.h"\
+ ".\LSOCK_Connector.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
".\SOCK_Connector.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- ".\UNIX_Addr.h"\
- ".\UNIX_Addr.i"\
-
-
-"$(INTDIR)\LSOCK_Connector.obj" : $(SOURCE) $(DEP_CPP_LSOCK_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LSOCK_C=\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
".\LSOCK.h"\
- ".\LSOCK.i"\
- ".\LSOCK_Connector.h"\
- ".\LSOCK_Connector.i"\
- ".\LSOCK_Stream.h"\
".\LSOCK_Stream.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\UNIX_Addr.h"\
+ ".\LSOCK.i"\
".\UNIX_Addr.i"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LSOCK_C=\
- ".\STL\mutex.h"\
"$(INTDIR)\LSOCK_Connector.obj" : $(SOURCE) $(DEP_CPP_LSOCK_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\LSOCK_CODgram.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LSOCK_CO=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ ".\LSOCK_CODgram.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
".\LSOCK.h"\
- ".\LSOCK.i"\
- ".\LSOCK_CODgram.h"\
+ ".\SOCK_CODgram.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\LSOCK_CODgram.i"\
- {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_CODgram.h"\
- ".\SOCK_CODgram.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\LSOCK_CODgram.obj" : $(SOURCE) $(DEP_CPP_LSOCK_CO) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LSOCK_CO=\
+ ".\LSOCK.i"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- ".\LSOCK.h"\
- ".\LSOCK.i"\
- ".\LSOCK_CODgram.h"\
- ".\LSOCK_CODgram.i"\
+ {$(INCLUDE)}"\.\SOCK.i"\
{$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_CODgram.h"\
- ".\SOCK_CODgram.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
+ ".\SOCK_CODgram.i"\
{$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LSOCK_CO=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\LSOCK_CODgram.obj" : $(SOURCE) $(DEP_CPP_LSOCK_CO) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\LSOCK_Acceptor.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LSOCK_A=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- ".\LSOCK.h"\
- ".\LSOCK.i"\
".\LSOCK_Acceptor.h"\
".\LSOCK_Acceptor.i"\
- ".\LSOCK_Stream.h"\
- ".\LSOCK_Stream.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Acceptor.h"\
- ".\SOCK_Acceptor.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- ".\UNIX_Addr.h"\
- ".\UNIX_Addr.i"\
-
-
-"$(INTDIR)\LSOCK_Acceptor.obj" : $(SOURCE) $(DEP_CPP_LSOCK_A) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LSOCK_A=\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- ".\LSOCK.h"\
- ".\LSOCK.i"\
- ".\LSOCK_Acceptor.h"\
- ".\LSOCK_Acceptor.i"\
- ".\LSOCK_Stream.h"\
- ".\LSOCK_Stream.i"\
{$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
".\SOCK_Acceptor.h"\
+ ".\UNIX_Addr.h"\
+ ".\LSOCK_Stream.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
".\SOCK_Acceptor.i"\
{$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\UNIX_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
".\UNIX_Addr.i"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LSOCK_A=\
- ".\STL\mutex.h"\
+ ".\LSOCK.h"\
+ ".\LSOCK_Stream.i"\
+ ".\LSOCK.i"\
"$(INTDIR)\LSOCK_Acceptor.obj" : $(SOURCE) $(DEP_CPP_LSOCK_A) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\LSOCK.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LSOCK_CP=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
".\LSOCK.h"\
- ".\LSOCK.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\LSOCK.obj" : $(SOURCE) $(DEP_CPP_LSOCK_CP) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LSOCK_CP=\
+ {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- ".\LSOCK.h"\
- ".\LSOCK.i"\
{$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
{$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\SOCK.h"\
+ ".\LSOCK.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LSOCK_CP=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
"$(INTDIR)\LSOCK.obj" : $(SOURCE) $(DEP_CPP_LSOCK_CP) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Log_Record.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LOG_R=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_LOG_R=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Log_Record.obj" : $(SOURCE) $(DEP_CPP_LOG_R) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LOG_R=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LOG_R=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
"$(INTDIR)\Log_Record.obj" : $(SOURCE) $(DEP_CPP_LOG_R) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Log_Msg.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LOG_M=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- ".\FIFO.h"\
- ".\FIFO.i"\
- ".\FIFO_Send.h"\
- ".\FIFO_Send.i"\
- ".\FIFO_Send_Msg.h"\
- ".\FIFO_Send_Msg.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- ".\SPIPE.h"\
- ".\SPIPE.i"\
- ".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
".\SPIPE_Connector.h"\
- ".\SPIPE_Connector.i"\
- ".\SPIPE_Stream.h"\
- ".\SPIPE_Stream.i"\
+ ".\FIFO_Send_Msg.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
{$(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)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Log_Msg.obj" : $(SOURCE) $(DEP_CPP_LOG_M) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LOG_M=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Event_Handler.i"\
- ".\FIFO.h"\
- ".\FIFO.i"\
- ".\FIFO_Send.h"\
- ".\FIFO_Send.i"\
- ".\FIFO_Send_Msg.h"\
- ".\FIFO_Send_Msg.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Connector.i"\
".\SPIPE.h"\
- ".\SPIPE.i"\
".\SPIPE_Addr.h"\
- ".\SPIPE_Addr.i"\
- ".\SPIPE_Connector.h"\
- ".\SPIPE_Connector.i"\
- ".\SPIPE_Stream.h"\
".\SPIPE_Stream.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)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LOG_M=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\SPIPE.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\SPIPE_Addr.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ ".\FIFO_Send.h"\
+ ".\FIFO_Send_Msg.i"\
+ ".\FIFO.h"\
+ ".\FIFO_Send.i"\
+ ".\FIFO.i"\
"$(INTDIR)\Log_Msg.obj" : $(SOURCE) $(DEP_CPP_LOG_M) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Local_Tokens.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LOCAL=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Local_Tokens.h"\
+ ".\Token_Manager.h"\
{$(INCLUDE)}"\.\Local_Tokens.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Local_Tokens.obj" : $(SOURCE) $(DEP_CPP_LOCAL) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LOCAL=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
- {$(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)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- ".\Token_Manager.h"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
".\Token_Manager.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LOCAL=\
- ".\STL\mutex.h"\
"$(INTDIR)\Local_Tokens.obj" : $(SOURCE) $(DEP_CPP_LOCAL) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Local_Name_Space.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_LOCAL_=\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
".\Local_Name_Space.h"\
- ".\Local_Name_Space_T.cpp"\
- ".\Local_Name_Space_T.h"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
+ ".\SString.h"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ ".\Local_Name_Space_T.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"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
- ".\Name_Space.h"\
- ".\Naming_Context.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- ".\SOCK_Connector.h"\
- ".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Local_Name_Space.obj" : $(SOURCE) $(DEP_CPP_LOCAL_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_LOCAL_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
{$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
{$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
{$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- ".\Local_Name_Space.h"\
- ".\Local_Name_Space_T.cpp"\
- ".\Local_Name_Space_T.h"\
- {$(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)}"\.\INET_Addr.i"\
+ ".\SString.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Mem_Map.h"\
- {$(INCLUDE)}"\.\Mem_Map.i"\
- {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Memory_Pool.i"\
- {$(INCLUDE)}"\.\Message_Block.h"\
- {$(INCLUDE)}"\.\Message_Block.i"\
- ".\Name_Proxy.h"\
- ".\Name_Request_Reply.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\Synch.i"\
".\Name_Space.h"\
".\Naming_Context.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Name_Proxy.h"\
".\SOCK_Connector.h"\
+ ".\Name_Request_Reply.h"\
".\SOCK_Connector.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
- {$(INCLUDE)}"\.\SOCK_Stream.h"\
- {$(INCLUDE)}"\.\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_LOCAL_=\
- ".\STL\mutex.h"\
"$(INTDIR)\Local_Name_Space.obj" : $(SOURCE) $(DEP_CPP_LOCAL_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\IPC_SAP.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_IPC_S=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\IPC_SAP.obj" : $(SOURCE) $(DEP_CPP_IPC_S) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_IPC_S=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_IPC_S=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
"$(INTDIR)\IPC_SAP.obj" : $(SOURCE) $(DEP_CPP_IPC_S) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\IO_SAP.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_IO_SA=\
- {$(INCLUDE)}"\.\ACE.h"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ ".\IO_SAP.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\IO_SAP.obj" : $(SOURCE) $(DEP_CPP_IO_SA) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_IO_SA=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_IO_SA=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ ".\IO_SAP.i"\
"$(INTDIR)\IO_SAP.obj" : $(SOURCE) $(DEP_CPP_IO_SA) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -11264,3580 +5440,1485 @@ SOURCE=.\IO_Cntl_Msg.cpp # Begin Source File
SOURCE=.\INET_Addr.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_INET_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\INET_Addr.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\INET_Addr.obj" : $(SOURCE) $(DEP_CPP_INET_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_INET_=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\INET_Addr.h"\
- {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_INET_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\INET_Addr.obj" : $(SOURCE) $(DEP_CPP_INET_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\High_Res_Timer.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_HIGH_=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\High_Res_Timer.obj" : $(SOURCE) $(DEP_CPP_HIGH_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_HIGH_=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- ".\High_Res_Timer.h"\
- ".\High_Res_Timer.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_HIGH_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
"$(INTDIR)\High_Res_Timer.obj" : $(SOURCE) $(DEP_CPP_HIGH_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Handle_Set.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_HANDL=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Handle_Set.h"\
{$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Handle_Set.obj" : $(SOURCE) $(DEP_CPP_HANDL) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_HANDL=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Handle_Set.h"\
- {$(INCLUDE)}"\.\Handle_Set.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_HANDL=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
"$(INTDIR)\Handle_Set.obj" : $(SOURCE) $(DEP_CPP_HANDL) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Get_Opt.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_GET_O=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Get_Opt.obj" : $(SOURCE) $(DEP_CPP_GET_O) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_GET_O=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- ".\Get_Opt.h"\
- ".\Get_Opt.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_GET_O=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
"$(INTDIR)\Get_Opt.obj" : $(SOURCE) $(DEP_CPP_GET_O) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FILE_IO.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FILE_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ ".\FILE_IO.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\FILE.h"\
- ".\FILE.i"\
".\FILE_Addr.h"\
- ".\FILE_Addr.i"\
- ".\FILE_IO.h"\
".\FILE_IO.i"\
".\IO_SAP.h"\
+ ".\FILE.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\FILE_IO.obj" : $(SOURCE) $(DEP_CPP_FILE_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FILE_=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\FILE.h"\
- ".\FILE.i"\
- ".\FILE_Addr.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\FILE_Addr.i"\
- ".\FILE_IO.h"\
- ".\FILE_IO.i"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FILE_=\
- ".\STL\mutex.h"\
"$(INTDIR)\FILE_IO.obj" : $(SOURCE) $(DEP_CPP_FILE_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FILE_Connector.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FILE_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- ".\FILE.h"\
- ".\FILE.i"\
- ".\FILE_Addr.h"\
- ".\FILE_Addr.i"\
".\FILE_Connector.h"\
- ".\FILE_Connector.i"\
".\FILE_IO.h"\
+ ".\FILE_Connector.i"\
+ ".\FILE.h"\
+ ".\FILE_Addr.h"\
".\FILE_IO.i"\
".\IO_SAP.h"\
+ ".\FILE.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\FILE_Connector.obj" : $(SOURCE) $(DEP_CPP_FILE_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FILE_C=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\FILE.h"\
- ".\FILE.i"\
- ".\FILE_Addr.h"\
- ".\FILE_Addr.i"\
- ".\FILE_Connector.h"\
- ".\FILE_Connector.i"\
- ".\FILE_IO.h"\
- ".\FILE_IO.i"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FILE_C=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\FILE_Addr.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\FILE_Connector.obj" : $(SOURCE) $(DEP_CPP_FILE_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FILE_Addr.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FILE_A=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\FILE_Addr.h"\
".\FILE_Addr.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\FILE_Addr.obj" : $(SOURCE) $(DEP_CPP_FILE_A) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FILE_A=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- ".\FILE_Addr.h"\
- ".\FILE_Addr.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FILE_A=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\FILE_Addr.obj" : $(SOURCE) $(DEP_CPP_FILE_A) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FILE.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FILE_CP=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
".\FILE.h"\
- ".\FILE.i"\
- ".\FILE_Addr.h"\
- ".\FILE_Addr.i"\
".\IO_SAP.h"\
+ ".\FILE_Addr.h"\
+ ".\FILE.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_FILE_CP=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\FILE.obj" : $(SOURCE) $(DEP_CPP_FILE_CP) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FILE_CP=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\FILE.h"\
- ".\FILE.i"\
- ".\FILE_Addr.h"\
- ".\FILE_Addr.i"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FILE_CP=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\FILE_Addr.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\FILE.obj" : $(SOURCE) $(DEP_CPP_FILE_CP) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FIFO_Send_Msg.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FIFO_=\
- {$(INCLUDE)}"\.\ACE.h"\
- ".\FIFO.h"\
- ".\FIFO.i"\
- ".\FIFO_Send.h"\
- ".\FIFO_Send.i"\
".\FIFO_Send_Msg.h"\
- ".\FIFO_Send_Msg.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\FIFO_Send_Msg.obj" : $(SOURCE) $(DEP_CPP_FIFO_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FIFO_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- ".\FIFO.h"\
- ".\FIFO.i"\
".\FIFO_Send.h"\
- ".\FIFO_Send.i"\
- ".\FIFO_Send_Msg.h"\
".\FIFO_Send_Msg.i"\
+ ".\FIFO.h"\
+ ".\FIFO_Send.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\FIFO.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FIFO_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\FIFO_Send_Msg.obj" : $(SOURCE) $(DEP_CPP_FIFO_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FIFO_Send.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FIFO_S=\
- {$(INCLUDE)}"\.\ACE.h"\
- ".\FIFO.h"\
- ".\FIFO.i"\
".\FIFO_Send.h"\
- ".\FIFO_Send.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\FIFO_Send.obj" : $(SOURCE) $(DEP_CPP_FIFO_S) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FIFO_S=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
".\FIFO.h"\
- ".\FIFO.i"\
- ".\FIFO_Send.h"\
".\FIFO_Send.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\FIFO.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FIFO_S=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\FIFO_Send.obj" : $(SOURCE) $(DEP_CPP_FIFO_S) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FIFO_Recv_Msg.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FIFO_R=\
- {$(INCLUDE)}"\.\ACE.h"\
- ".\FIFO.h"\
- ".\FIFO.i"\
- ".\FIFO_Recv.h"\
- ".\FIFO_Recv.i"\
".\FIFO_Recv_Msg.h"\
- ".\FIFO_Recv_Msg.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\FIFO_Recv_Msg.obj" : $(SOURCE) $(DEP_CPP_FIFO_R) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FIFO_R=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- ".\FIFO.h"\
- ".\FIFO.i"\
".\FIFO_Recv.h"\
- ".\FIFO_Recv.i"\
- ".\FIFO_Recv_Msg.h"\
".\FIFO_Recv_Msg.i"\
+ ".\FIFO.h"\
+ ".\FIFO_Recv.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\FIFO.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FIFO_R=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\FIFO_Recv_Msg.obj" : $(SOURCE) $(DEP_CPP_FIFO_R) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FIFO_Recv.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FIFO_RE=\
- {$(INCLUDE)}"\.\ACE.h"\
- ".\FIFO.h"\
- ".\FIFO.i"\
".\FIFO_Recv.h"\
- ".\FIFO_Recv.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\FIFO_Recv.obj" : $(SOURCE) $(DEP_CPP_FIFO_RE) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FIFO_RE=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
".\FIFO.h"\
- ".\FIFO.i"\
- ".\FIFO_Recv.h"\
".\FIFO_Recv.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ ".\FIFO.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FIFO_RE=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
"$(INTDIR)\FIFO_Recv.obj" : $(SOURCE) $(DEP_CPP_FIFO_RE) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Event_Handler.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_EVENT=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\.\Signal.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)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_EVENT=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Event_Handler.obj" : $(SOURCE) $(DEP_CPP_EVENT) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_EVENT=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
- {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
+ "..\STL\set.h"\
{$(INCLUDE)}"\.\Signal.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)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_EVENT=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
"$(INTDIR)\Event_Handler.obj" : $(SOURCE) $(DEP_CPP_EVENT) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Dynamic.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_DYNAM=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_DYNAM=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Dynamic.obj" : $(SOURCE) $(DEP_CPP_DYNAM) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_DYNAM=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\Dynamic.h"\
- ".\Dynamic.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_DYNAM=\
- ".\STL\mutex.h"\
"$(INTDIR)\Dynamic.obj" : $(SOURCE) $(DEP_CPP_DYNAM) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Dump.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_DUMP_=\
- {$(INCLUDE)}"\.\ACE.h"\
".\Dump.h"\
- ".\Dump_T.cpp"\
+ {$(INCLUDE)}"\.\Synch.h"\
".\Dump_T.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.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)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
-
-
-"$(INTDIR)\Dump.obj" : $(SOURCE) $(DEP_CPP_DUMP_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_DUMP_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\Dump.h"\
- ".\Dump_T.cpp"\
- ".\Dump_T.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- {$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_DUMP_=\
- ".\STL\mutex.h"\
+ ".\Dump_T.cpp"\
"$(INTDIR)\Dump.obj" : $(SOURCE) $(DEP_CPP_DUMP_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\DEV_IO.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_DEV_I=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ ".\DEV_IO.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\DEV.h"\
- ".\DEV.i"\
".\DEV_Addr.h"\
- ".\DEV_Addr.i"\
- ".\DEV_IO.h"\
".\DEV_IO.i"\
".\IO_SAP.h"\
+ ".\DEV.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\DEV_IO.obj" : $(SOURCE) $(DEP_CPP_DEV_I) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_DEV_I=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\DEV.h"\
- ".\DEV.i"\
- ".\DEV_Addr.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\DEV_Addr.i"\
- ".\DEV_IO.h"\
- ".\DEV_IO.i"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_DEV_I=\
- ".\STL\mutex.h"\
"$(INTDIR)\DEV_IO.obj" : $(SOURCE) $(DEP_CPP_DEV_I) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\DEV_Connector.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_DEV_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- ".\DEV.h"\
- ".\DEV.i"\
- ".\DEV_Addr.h"\
- ".\DEV_Addr.i"\
".\DEV_Connector.h"\
- ".\DEV_Connector.i"\
".\DEV_IO.h"\
+ ".\DEV_Connector.i"\
+ ".\DEV.h"\
+ ".\DEV_Addr.h"\
".\DEV_IO.i"\
".\IO_SAP.h"\
+ ".\DEV.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\DEV_Connector.obj" : $(SOURCE) $(DEP_CPP_DEV_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_DEV_C=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\DEV.h"\
- ".\DEV.i"\
- ".\DEV_Addr.h"\
- ".\DEV_Addr.i"\
- ".\DEV_Connector.h"\
- ".\DEV_Connector.i"\
- ".\DEV_IO.h"\
- ".\DEV_IO.i"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_DEV_C=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\DEV_Addr.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\DEV_Connector.obj" : $(SOURCE) $(DEP_CPP_DEV_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\DEV_Addr.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_DEV_A=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\DEV_Addr.h"\
".\DEV_Addr.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\DEV_Addr.obj" : $(SOURCE) $(DEP_CPP_DEV_A) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_DEV_A=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- ".\DEV_Addr.h"\
- ".\DEV_Addr.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_DEV_A=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\DEV_Addr.obj" : $(SOURCE) $(DEP_CPP_DEV_A) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\DEV.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_DEV_CP=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
".\DEV.h"\
- ".\DEV.i"\
- ".\DEV_Addr.h"\
- ".\DEV_Addr.i"\
".\IO_SAP.h"\
+ ".\DEV_Addr.h"\
+ ".\DEV.i"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_DEV_CP=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\DEV.obj" : $(SOURCE) $(DEP_CPP_DEV_CP) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_DEV_CP=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\DEV.h"\
- ".\DEV.i"\
- ".\DEV_Addr.h"\
- ".\DEV_Addr.i"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_DEV_CP=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ ".\DEV_Addr.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
"$(INTDIR)\DEV.obj" : $(SOURCE) $(DEP_CPP_DEV_CP) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Date_Time.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_DATE_=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
".\Date_Time.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
".\Date_Time.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_DATE_=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Date_Time.obj" : $(SOURCE) $(DEP_CPP_DATE_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_DATE_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\Date_Time.h"\
- ".\Date_Time.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_DATE_=\
- ".\STL\mutex.h"\
"$(INTDIR)\Date_Time.obj" : $(SOURCE) $(DEP_CPP_DATE_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\CORBA_Handler.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_CORBA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\CORBA_Handler.h"\
".\CORBA_Handler.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)}"\.\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)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ "..\STL\set.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\CORBA_Handler.obj" : $(SOURCE) $(DEP_CPP_CORBA) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_CORBA=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- ".\CORBA_Handler.h"\
- ".\CORBA_Handler.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)}"\.\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)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_CORBA=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
"$(INTDIR)\CORBA_Handler.obj" : $(SOURCE) $(DEP_CPP_CORBA) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\ARGV.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_ARGV_=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
".\ARGV.h"\
".\ARGV.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\ARGV.obj" : $(SOURCE) $(DEP_CPP_ARGV_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_ARGV_=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- ".\ARGV.h"\
- ".\ARGV.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_ARGV_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
"$(INTDIR)\ARGV.obj" : $(SOURCE) $(DEP_CPP_ARGV_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Addr.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_ADDR_=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Addr.h"\
{$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\Addr.obj" : $(SOURCE) $(DEP_CPP_ADDR_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_ADDR_=\
{$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_ADDR_=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
"$(INTDIR)\Addr.obj" : $(SOURCE) $(DEP_CPP_ADDR_) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\ACE.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_ACE_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ {$(INCLUDE)}"\.\Reactor.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\ACE.obj" : $(SOURCE) $(DEP_CPP_ACE_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_ACE_C=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
{$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
{$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
{$(INCLUDE)}"\.\Local_Tokens.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_ACE_C=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
"$(INTDIR)\ACE.obj" : $(SOURCE) $(DEP_CPP_ACE_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\SOCK.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_SOCK_CP=\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
{$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\SOCK.h"\
{$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\SOCK.obj" : $(SOURCE) $(DEP_CPP_SOCK_CP) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_SOCK_CP=\
- {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_SOCK_CP=\
- ".\STL\mutex.h"\
"$(INTDIR)\SOCK.obj" : $(SOURCE) $(DEP_CPP_SOCK_CP) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\FIFO.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_FIFO_C=\
- {$(INCLUDE)}"\.\ACE.h"\
".\FIFO.h"\
".\FIFO.i"\
{$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
-
-
-"$(INTDIR)\FIFO.obj" : $(SOURCE) $(DEP_CPP_FIFO_C) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_FIFO_C=\
- {$(INCLUDE)}"\.\ACE.h"\
{$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\FIFO.h"\
- ".\FIFO.i"\
- {$(INCLUDE)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_FIFO_C=\
- ".\STL\mutex.h"\
"$(INTDIR)\FIFO.obj" : $(SOURCE) $(DEP_CPP_FIFO_C) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Proactor.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_PROAC=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
- {$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\Proactor.h"\
{$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\.\Signal.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)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_PROAC=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Proactor.obj" : $(SOURCE) $(DEP_CPP_PROAC) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_PROAC=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Proactor.h"\
- {$(INCLUDE)}"\.\Proactor.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\.\Signal.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)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_PROAC=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
"$(INTDIR)\Proactor.obj" : $(SOURCE) $(DEP_CPP_PROAC) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\ReactorEx.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_REACTO=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
+ {$(INCLUDE)}"\.\ReactorEx.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
+ {$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(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_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\E\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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Shared_Object.h"\
- {$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\E\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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(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)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
{$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_REACTO=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\ReactorEx.obj" : $(SOURCE) $(DEP_CPP_REACTO) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_REACTO=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\Token.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
{$(INCLUDE)}"\.\Local_Tokens.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
{$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(INCLUDE)}"\.\Shared_Object.i"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\SOCK.h"\
- {$(INCLUDE)}"\.\SOCK.i"\
- {$(INCLUDE)}"\.\SOCK_IO.h"\
- {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
{$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
{$(INCLUDE)}"\.\SOCK_Stream.i"\
- {$(INCLUDE)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_REACTO=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\ReactorEx.obj" : $(SOURCE) $(DEP_CPP_REACTO) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Token_Invariants.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TOKEN_I=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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)}"\.\IPC_SAP.h"\
- {$(INCLUDE)}"\.\IPC_SAP.i"\
- {$(INCLUDE)}"\.\Local_Tokens.h"\
- {$(INCLUDE)}"\.\Local_Tokens.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.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)}"\.\OS.h"\
- {$(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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\ACE.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
{$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_Options.h"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
{$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.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"\
- ".\Token_Invariants.h"\
- ".\Token_Invariants.i"\
- {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
{$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Token_Invariants.obj" : $(SOURCE) $(DEP_CPP_TOKEN_I) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TOKEN_I=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(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)}"\.\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)}"\.\Service_Config.h"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
+ {$(INCLUDE)}"\.\Service_Object.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
{$(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"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
+ {$(INCLUDE)}"\.\Svc_Conf_Tokens.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
{$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.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)}"\.\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)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- ".\Token_Invariants.h"\
- ".\Token_Invariants.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TOKEN_I=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
"$(INTDIR)\Token_Invariants.obj" : $(SOURCE) $(DEP_CPP_TOKEN_I) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Process.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_PROCES=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+ {$(INCLUDE)}"\E\PROCESS.H"\
".\ARGV.h"\
- ".\ARGV.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
".\Process.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\OS.h"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_PROCES=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Process.obj" : $(SOURCE) $(DEP_CPP_PROCES) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_PROCES=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- ".\ARGV.h"\
- ".\ARGV.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- ".\Process.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_PROCES=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
+ ".\ARGV.i"\
"$(INTDIR)\Process.obj" : $(SOURCE) $(DEP_CPP_PROCES) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\TTY_IO.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TTY_I=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
- ".\DEV.h"\
- ".\DEV.i"\
+ ".\TTY_IO.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\OS.h"\
".\DEV_Addr.h"\
- ".\DEV_Addr.i"\
".\DEV_Connector.h"\
- ".\DEV_Connector.i"\
".\DEV_IO.h"\
- ".\DEV_IO.i"\
- ".\IO_SAP.h"\
- ".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- ".\TTY_IO.h"\
-
-
-"$(INTDIR)\TTY_IO.obj" : $(SOURCE) $(DEP_CPP_TTY_I) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TTY_I=\
{$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
{$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- ".\DEV.h"\
- ".\DEV.i"\
- ".\DEV_Addr.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
".\DEV_Addr.i"\
- ".\DEV_Connector.h"\
+ {$(INCLUDE)}"\.\Addr.i"\
".\DEV_Connector.i"\
- ".\DEV_IO.h"\
+ ".\DEV.h"\
".\DEV_IO.i"\
".\IO_SAP.h"\
+ ".\DEV.i"\
".\IO_SAP.i"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\TTY_IO.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TTY_I=\
- ".\STL\mutex.h"\
"$(INTDIR)\TTY_IO.obj" : $(SOURCE) $(DEP_CPP_TTY_I) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Activation_Queue.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_ACTIV=\
- {$(INCLUDE)}"\.\ACE.h"\
".\Activation_Queue.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
- {$(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)}"\.\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)}"\.\Synch.h"\
{$(INCLUDE)}"\.\Message_Queue.h"\
- {$(INCLUDE)}"\.\Message_Queue.i"\
".\Method_Object.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\ACE.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)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Activation_Queue.obj" : $(SOURCE) $(DEP_CPP_ACTIV) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_ACTIV=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- ".\Activation_Queue.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
- {$(INCLUDE)}"\.\Event_Handler.i"\
- {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
- {$(INCLUDE)}"\.\Malloc_T.h"\
- {$(INCLUDE)}"\.\Malloc_T.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"\
- ".\Method_Object.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
- {$(INCLUDE)}"\.\Signal.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
{$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
- {$(INCLUDE)}"\.\Synch.h"\
- {$(INCLUDE)}"\.\Synch.i"\
- {$(INCLUDE)}"\.\Synch_T.cpp"\
- {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
{$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Event_Handler.i"\
{$(INCLUDE)}"\.\Thread.h"\
{$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
{$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
+ {$(INCLUDE)}"\.\Malloc.i"\
+ {$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
+ {$(INCLUDE)}"\.\Malloc_T.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_ACTIV=\
- ".\STL\mutex.h"\
+ {$(INCLUDE)}"\.\Mem_Map.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.i"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
"$(INTDIR)\Activation_Queue.obj" : $(SOURCE) $(DEP_CPP_ACTIV) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Method_Object.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_METHO=\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- ".\..\STL\pair.h"\
- ".\..\STL\vector.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
".\Method_Object.h"\
{$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_METHO=\
- ".\..\STL\mutex.h"\
+ {$(INCLUDE)}"\.\OS.i"\
+ {$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
+ {$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\ACE.i"\
"$(INTDIR)\Method_Object.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
+# End Source File
+################################################################################
+# Begin Source File
-DEP_CPP_METHO=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
+SOURCE=.\Registry.cpp
+DEP_CPP_REGIS=\
+ ".\Registry.h"\
+ {$(INCLUDE)}"\.\OS.h"\
+ ".\..\STL\bstring.h"\
+ {$(INCLUDE)}"\.\Time_Value.h"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
+ {$(INCLUDE)}"\.\Trace.h"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.h"\
+ {$(INCLUDE)}"\.\ACE.h"\
+ {$(INCLUDE)}"\.\Log_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
- ".\Method_Object.h"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
-NODEP_CPP_METHO=\
- ".\STL\mutex.h"\
+NODEP_CPP_REGIS=\
+ ".\..\STL\mutex.h"\
-"$(INTDIR)\Method_Object.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"
+"$(INTDIR)\Registry.obj" : $(SOURCE) $(DEP_CPP_REGIS) "$(INTDIR)"
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Task.cpp
-
-!IF "$(CFG)" == "ace - Win32 Release"
-
DEP_CPP_TASK_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.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"\
- ".\Module.cpp"\
+ ".\Task.h"\
".\Module.h"\
- ".\Module.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(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"\
+ ".\Task.i"\
{$(INCLUDE)}"\.\Service_Object.h"\
- {$(INCLUDE)}"\.\Service_Object.i"\
- {$(INCLUDE)}"\.\Set.cpp"\
- ".\..\STL\set.h"\
- {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Thread_Manager.h"\
+ ".\Task_T.h"\
{$(INCLUDE)}"\.\Shared_Object.h"\
+ {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Log_Msg.h"\
+ {$(INCLUDE)}"\.\Service_Object.i"\
+ {$(INCLUDE)}"\.\ACE.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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\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"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\OS.h"\
+ {$(INCLUDE)}"\.\ACE.i"\
{$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Timer_Queue.h"\
- {$(INCLUDE)}"\.\Timer_Queue.i"\
- {$(INCLUDE)}"\.\Token.h"\
- {$(INCLUDE)}"\.\Token.i"\
+ {$(INCLUDE)}"\.\stdcpp.h"\
{$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
-
-
-"$(INTDIR)\Task.obj" : $(SOURCE) $(DEP_CPP_TASK_) "$(INTDIR)"
-
-
-!ELSEIF "$(CFG)" == "ace - Win32 Debug"
-
-DEP_CPP_TASK_=\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\ACE.i"\
- {$(INCLUDE)}"\.\Addr.h"\
- {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\OS.i"\
{$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Event_Handler.h"\
+ {$(INCLUDE)}"\.\Time_Value.i"\
{$(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_Priority.h"\
{$(INCLUDE)}"\.\Log_Record.i"\
+ {$(INCLUDE)}"\.\Thread.h"\
+ {$(INCLUDE)}"\.\Synch.h"\
+ {$(INCLUDE)}"\.\Thread_Manager.i"\
+ {$(INCLUDE)}"\.\Thread.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
+ {$(INCLUDE)}"\.\Synch.i"\
+ {$(INCLUDE)}"\.\Synch_T.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
+ {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Synch_T.i"\
+ {$(INCLUDE)}"\.\Synch_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Queue.h"\
+ ".\Task_T.i"\
+ ".\Task_T.cpp"\
+ {$(INCLUDE)}"\.\Message_Block.h"\
+ {$(INCLUDE)}"\.\IO_Cntl_Msg.h"\
+ {$(INCLUDE)}"\.\Message_Queue.i"\
+ {$(INCLUDE)}"\.\Message_Queue.cpp"\
+ {$(INCLUDE)}"\E\MALLOC.H"\
+ {$(INCLUDE)}"\.\Message_Block.i"\
{$(INCLUDE)}"\.\Malloc.i"\
- {$(INCLUDE)}"\.\Malloc_T.cpp"\
{$(INCLUDE)}"\.\Malloc_T.h"\
+ {$(INCLUDE)}"\.\Memory_Pool.h"\
{$(INCLUDE)}"\.\Malloc_T.i"\
- {$(INCLUDE)}"\.\Map_Manager.cpp"\
- {$(INCLUDE)}"\.\Map_Manager.h"\
- {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Malloc_T.cpp"\
+ {$(INCLUDE)}"\E\SIGNAL.H"\
{$(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"\
- ".\Module.cpp"\
- ".\Module.h"\
+ "..\STL\set.h"\
+ {$(INCLUDE)}"\.\Signal.i"\
+ {$(INCLUDE)}"\.\Set.i"\
+ {$(INCLUDE)}"\.\Set.cpp"\
+ {$(INCLUDE)}"\.\Mem_Map.i"\
".\Module.i"\
- {$(INCLUDE)}"\.\OS.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\Pipe.h"\
- {$(INCLUDE)}"\.\Pipe.i"\
+ ".\Module.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\Stream_Modules.cpp"\
{$(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"\
- ".\..\STL\set.h"\
- {$(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)}"\.\Stack.cpp"\
- ".\..\STL\stack.h"\
- {$(INCLUDE)}"\.\Stack.i"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Complex.i"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.h"\
- {$(INCLUDE)}"\.\SV_Semaphore_Simple.i"\
+ {$(INCLUDE)}"\.\Reactor.h"\
{$(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"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- {$(INCLUDE)}"\.\Thread.h"\
- {$(INCLUDE)}"\.\Thread.i"\
- {$(INCLUDE)}"\.\Thread_Manager.h"\
- {$(INCLUDE)}"\.\Thread_Manager.i"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
{$(INCLUDE)}"\.\Timer_Queue.h"\
+ {$(INCLUDE)}"\.\Proactor.i"\
{$(INCLUDE)}"\.\Timer_Queue.i"\
{$(INCLUDE)}"\.\Token.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.h"\
+ {$(INCLUDE)}"\.\ReactorEx.i"\
{$(INCLUDE)}"\.\Token.i"\
- {$(INCLUDE)}"\.\Trace.h"\
- ".\..\STL\algobase.h"\
- ".\..\STL\bool.h"\
- ".\..\STL\bstring.h"\
- ".\..\STL\defalloc.h"\
- ".\..\STL\function.h"\
- ".\..\STL\iterator.h"\
- {$(INCLUDE)}"\E\MALLOC.H"\
- ".\..\STL\pair.h"\
- {$(INCLUDE)}"\PROCESS.H"\
- {$(INCLUDE)}"\E\SIGNAL.H"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- ".\..\STL\vector.h"\
-
-NODEP_CPP_TASK_=\
- ".\STL\mutex.h"\
+ "..\STL\stack.h"\
+ {$(INCLUDE)}"\.\Synch_Options.h"\
+ {$(INCLUDE)}"\.\Map_Manager.h"\
+ {$(INCLUDE)}"\.\Local_Tokens.i"\
+ {$(INCLUDE)}"\.\Stack.i"\
+ {$(INCLUDE)}"\.\Stack.cpp"\
+ {$(INCLUDE)}"\.\Map_Manager.i"\
+ {$(INCLUDE)}"\.\Map_Manager.cpp"\
+ {$(INCLUDE)}"\.\Handle_Set.h"\
+ {$(INCLUDE)}"\.\Pipe.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.h"\
+ {$(INCLUDE)}"\.\Reactor.i"\
+ {$(INCLUDE)}"\.\Handle_Set.i"\
+ {$(INCLUDE)}"\.\Pipe.i"\
+ {$(INCLUDE)}"\.\SOCK_IO.h"\
+ {$(INCLUDE)}"\.\INET_Addr.h"\
+ {$(INCLUDE)}"\.\SOCK_Stream.i"\
+ {$(INCLUDE)}"\.\SOCK.h"\
+ {$(INCLUDE)}"\.\SOCK_IO.i"\
+ {$(INCLUDE)}"\.\Addr.h"\
+ {$(INCLUDE)}"\.\IPC_SAP.h"\
+ {$(INCLUDE)}"\.\SOCK.i"\
+ {$(INCLUDE)}"\.\Addr.i"\
+ {$(INCLUDE)}"\.\IPC_SAP.i"\
+ {$(INCLUDE)}"\.\INET_Addr.i"\
"$(INTDIR)\Task.obj" : $(SOURCE) $(DEP_CPP_TASK_) "$(INTDIR)"
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Registry.cpp
-DEP_CPP_REGIS=\
- {$(INCLUDE)}"\.\Registry.h"\
- {$(INCLUDE)}"\.\OS.h"\
- ".\..\STL\bstring.h"\
- {$(INCLUDE)}"\.\Time_Value.h"\
- {$(INCLUDE)}"\.\stdcpp.h"\
- {$(INCLUDE)}"\.\ws2tcpip.h"\
- {$(INCLUDE)}"\.\Trace.h"\
- {$(INCLUDE)}"\.\Log_Msg.h"\
- {$(INCLUDE)}"\.\OS.i"\
- {$(INCLUDE)}"\.\config.h"\
- {$(INCLUDE)}"\.\Time_Value.i"\
- {$(INCLUDE)}"\.\Log_Record.h"\
- {$(INCLUDE)}"\.\Log_Priority.h"\
- {$(INCLUDE)}"\.\ACE.h"\
- {$(INCLUDE)}"\.\Log_Record.i"\
- {$(INCLUDE)}"\.\ACE.i"\
-
-NODEP_CPP_REGIS=\
- ".\..\STL\mutex.h"\
-
-
-"$(INTDIR)\Registry.obj" : $(SOURCE) $(DEP_CPP_REGIS) "$(INTDIR)"
-
-
# End Source File
################################################################################
# Begin Source File
diff --git a/ace/ace.mdp b/ace/ace.mdp Binary files differindex 589b52c9a87..2bab6b4e5b6 100644 --- a/ace/ace.mdp +++ b/ace/ace.mdp |