diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-11 09:34:31 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-11 09:34:31 +0000 |
commit | 2956b8715ac05fb2b8bdf5661d102815050d1142 (patch) | |
tree | de0cf5546b79c96913ab02610b7fec3d3444a51e | |
parent | 35d269380e337579b3c662eb869b8f824e7004fa (diff) | |
download | ATCD-2956b8715ac05fb2b8bdf5661d102815050d1142.tar.gz |
*** empty log message ***
-rw-r--r-- | ChangeLog-98a | 34 | ||||
-rw-r--r-- | ace/High_Res_Timer.cpp | 12 | ||||
-rw-r--r-- | ace/High_Res_Timer.h | 9 | ||||
-rw-r--r-- | ace/IO_SAP.cpp | 4 | ||||
-rw-r--r-- | ace/SOCK_CODgram.cpp | 2 | ||||
-rw-r--r-- | ace/SOCK_Dgram.cpp | 2 | ||||
-rw-r--r-- | ace/SOCK_Dgram_Bcast.cpp | 10 | ||||
-rw-r--r-- | ace/SOCK_Dgram_Bcast.h | 6 | ||||
-rw-r--r-- | ace/SOCK_Dgram_Mcast.cpp | 4 | ||||
-rw-r--r-- | ace/SOCK_Dgram_Mcast.h | 4 | ||||
-rw-r--r-- | ace/Select_Reactor.cpp | 50 | ||||
-rw-r--r-- | ace/Thread_Manager.cpp | 20 | ||||
-rw-r--r-- | ace/Timer_Hash_T.cpp | 8 | ||||
-rw-r--r-- | ace/Timer_Heap_T.cpp | 12 | ||||
-rw-r--r-- | ace/Timer_List_T.cpp | 4 | ||||
-rw-r--r-- | ace/Timer_Queue_Adapters.cpp | 6 | ||||
-rw-r--r-- | ace/Timer_Wheel_T.cpp | 8 | ||||
-rw-r--r-- | ace/ace_ce_dll.dsp | 2337 | ||||
-rw-r--r-- | docs/CE-status.txt | 537 |
19 files changed, 2990 insertions, 79 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a index 72f234a706a..6111d6eda80 100644 --- a/ChangeLog-98a +++ b/ChangeLog-98a @@ -1,3 +1,37 @@ +Wed Mar 11 00:39:29 1998 Nanbor Wang <nanbor@cs.wustl.edu> + + * CE-status: A temporary file to trace the progress of the CE + port. + + * ace/ace_ce_dll.dsp: Added more .cpp files. + + * ace/High_Res_Timer.{h,cpp}: Undefined functions print_ave and + print_total. These two function use STDOUT which is not + supported on CE. We should probably modify the functions so + they write results to Log_Msg. + (get_register_scale_factor): This function always returns 1 on + CE to prevent the use of High_Res_Timer. + (get_env_global_scale_factor): Always returns -1 on CE because + environment variables are not supported. + + * ace/Thread_Manager.cpp (spawn_i): WinCE doesn't support + DuplicateHandle, therefore the best we can do now is just pass + back the handle to the spawned thread. Notice that you *can't* + close the handle by yourself under CE. Perhaps we shouldn't + even try to pass this info back. ??? + Applied regular CE porting tricks. + + * ace/SOCK_Dgram_Mcast.{h,cpp}: + * ace/SOCK_Dgram_Bcast.{h,cpp}: Changed some function signatures + to use wchar on CE. Applied regular CE porting tricks. + + * ace/IO_SAP.cpp: + * ace/SOCK_CODgram.cpp: + * ace/SOCK_Dgram.cpp: + * ace/Select_Reactor.cpp: + * ace/Timer_{Hash,Heap,List,Queue,Wheel}_T.cpp: Applied regular CE + porting tricks. Erm, I'm running out of tricks. + Tue Mar 10 20:27:57 1998 Nanbor Wang <nanbor@cs.wustl.edu> * ace/Reactor.h (reset_event_loop): Made the signature match with diff --git a/ace/High_Res_Timer.cpp b/ace/High_Res_Timer.cpp index d020859ba66..d17e9cb1fa2 100644 --- a/ace/High_Res_Timer.cpp +++ b/ace/High_Res_Timer.cpp @@ -12,7 +12,7 @@ ACE_ALLOC_HOOK_DEFINE(ACE_High_Res_Timer) // For Intel platforms, a scale factor is required for // ACE_OS::gethrtime. We'll still set this to one to prevent division // by zero errors. -#if defined (ACE_WIN32) +#if defined (ACE_WIN32) && ! defined (ACE_HAS_WINCE) u_long ACE_High_Res_Timer::get_registry_scale_factor (void) @@ -68,7 +68,7 @@ ACE_High_Res_Timer::dump (void) const ACE_TRACE ("ACE_High_Res_Timer::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "\n")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\n"))); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } @@ -155,7 +155,7 @@ ACE_High_Res_Timer::elapsed_time (ACE_hrtime_t &nanoseconds) nanoseconds = useconds * 1000u + nseconds; } - +#if !defined (ACE_HAS_WINCE) void ACE_High_Res_Timer::print_ave (const char *str, const int count, ACE_HANDLE handle) { @@ -213,10 +213,12 @@ ACE_High_Res_Timer::print_total (const char *str, const int count, ACE_HANDLE ha ACE_OS::write (handle, str, ACE_OS::strlen (str)); ACE_OS::write (handle, buf, ACE_OS::strlen (buf)); } +#endif /* !ACE_HAS_WINCE */ int ACE_High_Res_Timer::get_env_global_scale_factor (const char *env) { +#if !defined (ACE_HAS_WINCE) if (env != 0) { const char *env_value = ACE_OS::getenv (env); @@ -230,6 +232,8 @@ ACE_High_Res_Timer::get_env_global_scale_factor (const char *env) } } } - +#else + ACE_UNUSED_ARG (env); +#endif /* !ACE_HAS_WINCE */ return -1; } diff --git a/ace/High_Res_Timer.h b/ace/High_Res_Timer.h index f43c8e122b1..b730a3bc568 100644 --- a/ace/High_Res_Timer.h +++ b/ace/High_Res_Timer.h @@ -80,6 +80,8 @@ public: // Sets the global_scale_factor to the value in the <env> // environment variable. Returns 0 on success, -1 on failure. Note // if <env> points to string "0" (value zero), this call will fail. + // This is basically a no-op on CE because there is no concept of + // environment variable on CE. ACE_High_Res_Timer (void); // Initialize the timer. @@ -117,6 +119,10 @@ public: // Set <tv> to the number of microseconds elapsed between all // calls to start_incr and stop_incr. +#if !defined (ACE_HAS_WINCE) + // @@ These two functions are currently not supported on Windows CE. + // However, we should probably use the handle and ACE_Log_Msg to + // print out the result. void print_total (const char *message, const int iterations = 1, ACE_HANDLE handle = ACE_STDOUT); @@ -127,6 +133,7 @@ public: const int iterations = 1, ACE_HANDLE handle = ACE_STDOUT); // Print average time. +#endif /* !ACE_HAS_WINCE */ void dump (void) const; // Dump the state of an object. @@ -149,7 +156,7 @@ public: protected: -#if defined (ACE_WIN32) +#if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) static u_long get_registry_scale_factor (void); // This is used to find out the Mhz of the machine for the scale // factor. If there are any problems getting it, we just return 1 diff --git a/ace/IO_SAP.cpp b/ace/IO_SAP.cpp index 529fcb0e98f..32c3e5ed172 100644 --- a/ace/IO_SAP.cpp +++ b/ace/IO_SAP.cpp @@ -21,8 +21,8 @@ ACE_IO_SAP::dump (void) const ACE_TRACE ("ACE_IO_SAP::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "handle_ = %d", this->handle_)); - ACE_DEBUG ((LM_DEBUG, "\npid_ = %d", this->pid_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("handle_ = %d"), this->handle_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\npid_ = %d"), this->pid_)); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } diff --git a/ace/SOCK_CODgram.cpp b/ace/SOCK_CODgram.cpp index a4bf039a8df..71340d3e527 100644 --- a/ace/SOCK_CODgram.cpp +++ b/ace/SOCK_CODgram.cpp @@ -21,7 +21,7 @@ ACE_SOCK_CODgram::ACE_SOCK_CODgram (const ACE_Addr &remote, const ACE_Addr &loca ACE_TRACE ("ACE_SOCK_CODgram::ACE_SOCK_CODgram"); if (this->open (remote, local, protocol_family, protocol, reuse_addr) == -1) - ACE_ERROR ((LM_ERROR, "%p\n", "ACE_SOCK_CODgram")); + ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("ACE_SOCK_CODgram"))); } /* This is the general-purpose open routine. Note that it performs diff --git a/ace/SOCK_Dgram.cpp b/ace/SOCK_Dgram.cpp index 80f9bb17c51..9a142d2eda1 100644 --- a/ace/SOCK_Dgram.cpp +++ b/ace/SOCK_Dgram.cpp @@ -95,7 +95,7 @@ ACE_SOCK_Dgram::ACE_SOCK_Dgram (const ACE_Addr &local, ACE_TRACE ("ACE_SOCK_Dgram::ACE_SOCK_Dgram"); if (this->shared_open (local, protocol_family) == -1) - ACE_ERROR ((LM_ERROR, "%p\n", "ACE_SOCK_Dgram")); + ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("ACE_SOCK_Dgram"))); } // Here's the general-purpose open routine. diff --git a/ace/SOCK_Dgram_Bcast.cpp b/ace/SOCK_Dgram_Bcast.cpp index fbb30dcdff9..3a149395cfa 100644 --- a/ace/SOCK_Dgram_Bcast.cpp +++ b/ace/SOCK_Dgram_Bcast.cpp @@ -57,14 +57,14 @@ ACE_SOCK_Dgram_Bcast::ACE_SOCK_Dgram_Bcast (const ACE_Addr &local, int protocol_family, int protocol, int reuse_addr, - const char *host_name) + const ASYS_TCHAR *host_name) : ACE_SOCK_Dgram (local, protocol_family, protocol, reuse_addr), if_list_ (0) { ACE_TRACE ("ACE_SOCK_Dgram_Bcast::ACE_SOCK_Dgram_Bcast"); if (this->mk_broadcast (host_name) == -1) - ACE_ERROR ((LM_ERROR, "%p\n", "ACE_SOCK_Dgram_Bcast")); + ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("ACE_SOCK_Dgram_Bcast"))); } // Here's the general-purpose open routine. @@ -74,7 +74,7 @@ ACE_SOCK_Dgram_Bcast::open (const ACE_Addr &local, int protocol_family, int protocol, int reuse_addr, - const char *host_name) + const ASYS_TCHAR *host_name) { ACE_TRACE ("ACE_SOCK_Dgram_Bcast::open"); if (this->ACE_SOCK_Dgram::open (local, protocol_family, @@ -87,7 +87,7 @@ ACE_SOCK_Dgram_Bcast::open (const ACE_Addr &local, // Make broadcast available for Datagram socket. int -ACE_SOCK_Dgram_Bcast::mk_broadcast (const char *host_name) +ACE_SOCK_Dgram_Bcast::mk_broadcast (const ASYS_TCHAR *host_name) { ACE_TRACE ("ACE_SOCK_Dgram_Bcast::mk_broadcast"); @@ -120,7 +120,7 @@ ACE_SOCK_Dgram_Bcast::mk_broadcast (const char *host_name) //Get host ip address if (host_name) { - hostent *hp = ACE_OS::gethostbyname (host_name); + hostent *hp = ACE_OS::gethostbyname (ASYS_MULTIBYTE_STRING (host_name)); if (hp == 0) return -1; diff --git a/ace/SOCK_Dgram_Bcast.h b/ace/SOCK_Dgram_Bcast.h index ed91935a05c..5bf94363068 100644 --- a/ace/SOCK_Dgram_Bcast.h +++ b/ace/SOCK_Dgram_Bcast.h @@ -45,14 +45,14 @@ public: int protocol_family = PF_INET, int protocol = 0, int reuse_addr = 0, - const char *host_name = 0); + const ASYS_TCHAR *host_name = 0); // Initiate a connectionless datagram broadcast endpoint. int open (const ACE_Addr &local, int protocol_family = PF_INET, int protocol = 0, int reuse_addr = 0, - const char *host_name = 0); + const ASYS_TCHAR *host_name = 0); // Initiate a connectionless datagram broadcast endpoint. int close (void); @@ -94,7 +94,7 @@ public: // Declare the dynamic allocation hooks. private: - int mk_broadcast (const char *host_name); + int mk_broadcast (const ASYS_TCHAR *host_name); // Make broadcast available for Datagram socket. ACE_Bcast_Node *if_list_; diff --git a/ace/SOCK_Dgram_Mcast.cpp b/ace/SOCK_Dgram_Mcast.cpp index ffb93ea9b92..7588e6b7baa 100644 --- a/ace/SOCK_Dgram_Mcast.cpp +++ b/ace/SOCK_Dgram_Mcast.cpp @@ -23,7 +23,7 @@ ACE_SOCK_Dgram_Mcast::ACE_SOCK_Dgram_Mcast (void) int ACE_SOCK_Dgram_Mcast::subscribe (const ACE_INET_Addr &mcast_addr, int reuse_addr, - const char *net_if, + const ASYS_TCHAR *net_if, int protocol_family, int protocol) { @@ -91,7 +91,7 @@ ACE_SOCK_Dgram_Mcast::unsubscribe (void) int ACE_SOCK_Dgram_Mcast::make_multicast_address (const ACE_INET_Addr &mcast_addr, - const char *net_if) + const ASYS_TCHAR *net_if) { ACE_TRACE ("ACE_SOCK_Dgram_Mcast::make_multicast_address"); diff --git a/ace/SOCK_Dgram_Mcast.h b/ace/SOCK_Dgram_Mcast.h index 15ebcf27994..c3f173c6b9c 100644 --- a/ace/SOCK_Dgram_Mcast.h +++ b/ace/SOCK_Dgram_Mcast.h @@ -38,7 +38,7 @@ public: int subscribe (const ACE_INET_Addr &mcast_addr, int reuse_addr = 1, - const char *net_if = 0, + const ASYS_TCHAR *net_if = 0, int protocol_family = PF_INET, int protocol = 0); // Join a multicast group by telling the network interface device @@ -95,7 +95,7 @@ private: int flags = 0) const; int make_multicast_address (const ACE_INET_Addr &mcast_addr, - const char *net_if = "le0"); + const ASYS_TCHAR *net_if = ASYS_TEXT ("le0")); // Initialize a multicast address. ACE_INET_Addr mcast_addr_; diff --git a/ace/Select_Reactor.cpp b/ace/Select_Reactor.cpp index 178f31c5ef4..e0f882be3e7 100644 --- a/ace/Select_Reactor.cpp +++ b/ace/Select_Reactor.cpp @@ -411,8 +411,8 @@ ACE_Select_Reactor_Handler_Repository_Iterator::dump (void) const ACE_TRACE ("ACE_Select_Reactor_Handler_Repository_Iterator::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "rep_ = %u", this->rep_)); - ACE_DEBUG ((LM_DEBUG, "current_ = %d", this->current_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("rep_ = %u"), this->rep_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("current_ = %d"), this->current_)); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } @@ -423,19 +423,19 @@ ACE_Select_Reactor_Handler_Repository::dump (void) const ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); ACE_DEBUG ((LM_DEBUG, - "(%t) max_handlep1_ = %d, max_size_ = %d\n", + ASYS_TEXT ("(%t) max_handlep1_ = %d, max_size_ = %d\n"), this->max_handlep1_, this->max_size_)); - ACE_DEBUG ((LM_DEBUG, "[")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("["))); ACE_Event_Handler *eh = 0; for (ACE_Select_Reactor_Handler_Repository_Iterator iter (this); iter.next (eh) != 0; iter.advance ()) - ACE_DEBUG ((LM_DEBUG, " (eh = %x, eh->handle_ = %d)", + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT (" (eh = %x, eh->handle_ = %d)"), eh, eh->get_handle ())); - ACE_DEBUG ((LM_DEBUG, " ]")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT (" ]"))); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } @@ -574,7 +574,7 @@ ACE_Select_Reactor_Token::dump (void) const ACE_TRACE ("ACE_Select_Reactor_Token::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "\n")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\n"))); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } @@ -620,7 +620,7 @@ ACE_Select_Reactor_Token::sleep_hook (void) { ACE_TRACE ("ACE_Select_Reactor_Token::sleep_hook"); if (this->select_reactor_->notify () == -1) - ACE_ERROR ((LM_ERROR, "%p\n", "sleep_hook failed")); + ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), ASYS_TEXT ("sleep_hook failed"))); } #endif /* ACE_MT_SAFE */ @@ -631,7 +631,7 @@ ACE_Select_Reactor_Notify::dump (void) const ACE_TRACE ("ACE_Select_Reactor_Notify::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "select_reactor_ = %x", this->select_reactor_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("select_reactor_ = %x"), this->select_reactor_)); this->notification_pipe_.dump (); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } @@ -755,7 +755,7 @@ ACE_Select_Reactor_Notify::handle_input (ACE_HANDLE handle) break; default: // Should we bail out if we get an invalid mask? - ACE_ERROR ((LM_ERROR, "invalid mask = %d\n", buffer.mask_)); + ACE_ERROR ((LM_ERROR, ASYS_TEXT ("invalid mask = %d\n"), buffer.mask_)); } if (result == -1) buffer.eh_->handle_close (ACE_INVALID_HANDLE, @@ -1024,8 +1024,8 @@ ACE_Select_Reactor::ACE_Select_Reactor (ACE_Sig_Handler *sh, ACE_TRACE ("ACE_Select_Reactor::ACE_Select_Reactor"); if (this->open (ACE_Select_Reactor::DEFAULT_SIZE, 0, sh, tq) == -1) - ACE_ERROR ((LM_ERROR, "%p\n", - "ACE_Select_Reactor::open failed inside ACE_Select_Reactor::CTOR")); + ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), + ASYS_TEXT ("ACE_Select_Reactor::open failed inside ACE_Select_Reactor::CTOR"))); } // Initialize ACE_Select_Reactor. @@ -1050,8 +1050,8 @@ ACE_Select_Reactor::ACE_Select_Reactor (size_t size, ACE_TRACE ("ACE_Select_Reactor::ACE_Select_Reactor"); if (this->open (size, rs, sh, tq) == -1) - ACE_ERROR ((LM_ERROR, "%p\n", - "ACE_Select_Reactor::open failed inside ACE_Select_Reactor::CTOR")); + ACE_ERROR ((LM_ERROR, ASYS_TEXT ("%p\n"), + ASYS_TEXT ("ACE_Select_Reactor::open failed inside ACE_Select_Reactor::CTOR"))); } // Close down the ACE_Select_Reactor instance, detaching any remaining @@ -1800,7 +1800,7 @@ ACE_Select_Reactor::dump (void) const this->handler_rep_.dump (); this->signal_handler_->dump (); ACE_DEBUG ((LM_DEBUG, - "delete_signal_handler_ = %d\n", + ASYS_TEXT ("delete_signal_handler_ = %d\n"), this->delete_signal_handler_)); ACE_HANDLE h; @@ -1808,37 +1808,37 @@ ACE_Select_Reactor::dump (void) const for (ACE_Handle_Set_Iterator handle_iter_wr (this->wait_set_.wr_mask_); (h = handle_iter_wr ()) != ACE_INVALID_HANDLE; ++handle_iter_wr) - ACE_DEBUG ((LM_DEBUG, "write_handle = %d\n", h)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("write_handle = %d\n"), h)); for (ACE_Handle_Set_Iterator handle_iter_rd (this->wait_set_.rd_mask_); (h = handle_iter_rd ()) != ACE_INVALID_HANDLE; ++handle_iter_rd) - ACE_DEBUG ((LM_DEBUG, "read_handle = %d\n", h)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("read_handle = %d\n"), h)); for (ACE_Handle_Set_Iterator handle_iter_ex (this->wait_set_.ex_mask_); (h = handle_iter_ex ()) != ACE_INVALID_HANDLE; ++handle_iter_ex) - ACE_DEBUG ((LM_DEBUG, "except_handle = %d\n", h)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("except_handle = %d\n"), h)); for (ACE_Handle_Set_Iterator handle_iter_wr_ready (this->ready_set_.wr_mask_); (h = handle_iter_wr_ready ()) != ACE_INVALID_HANDLE; ++handle_iter_wr_ready) - ACE_DEBUG ((LM_DEBUG, "write_handle_ready = %d\n", h)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("write_handle_ready = %d\n"), h)); for (ACE_Handle_Set_Iterator handle_iter_rd_ready (this->ready_set_.rd_mask_); (h = handle_iter_rd_ready ()) != ACE_INVALID_HANDLE; ++handle_iter_rd_ready) - ACE_DEBUG ((LM_DEBUG, "read_handle_ready = %d\n", h)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("read_handle_ready = %d\n"), h)); for (ACE_Handle_Set_Iterator handle_iter_ex_ready (this->ready_set_.ex_mask_); (h = handle_iter_ex_ready ()) != ACE_INVALID_HANDLE; ++handle_iter_ex_ready) - ACE_DEBUG ((LM_DEBUG, "except_handle_ready = %d\n", h)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("except_handle_ready = %d\n"), h)); - ACE_DEBUG ((LM_DEBUG, "restart_ = %d\n", this->restart_)); - ACE_DEBUG ((LM_DEBUG, "\nrequeue_position_ = %d\n", this->requeue_position_)); - ACE_DEBUG ((LM_DEBUG, "\ninitialized_ = %d\n", this->initialized_)); - ACE_DEBUG ((LM_DEBUG, "\nowner_ = %d\n", this->owner_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("restart_ = %d\n"), this->restart_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nrequeue_position_ = %d\n"), this->requeue_position_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ninitialized_ = %d\n"), this->initialized_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nowner_ = %d\n"), this->owner_)); #if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0) this->notify_handler_.dump (); diff --git a/ace/Thread_Manager.cpp b/ace/Thread_Manager.cpp index 524784fb2fe..4ebeb422346 100644 --- a/ace/Thread_Manager.cpp +++ b/ace/Thread_Manager.cpp @@ -31,8 +31,8 @@ ACE_Thread_Manager::dump (void) ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "\ngrp_id_ = %d", this->grp_id_)); - ACE_DEBUG ((LM_DEBUG, "\ncurrent_count_ = %d", this->thr_list_.size ())); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ngrp_id_ = %d"), this->grp_id_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ncurrent_count_ = %d"), this->thr_list_.size ())); for (ACE_Double_Linked_List_Iterator<ACE_Thread_Descriptor> iter (this->thr_list_); !iter.done (); @@ -80,12 +80,12 @@ ACE_Thread_Descriptor::dump (void) const ACE_TRACE ("ACE_Thread_Descriptor::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "\nthr_id_ = %d", this->thr_id_)); - ACE_DEBUG ((LM_DEBUG, "\nthr_handle_ = %d", this->thr_handle_)); - ACE_DEBUG ((LM_DEBUG, "\ngrp_id_ = %d", this->grp_id_)); - ACE_DEBUG ((LM_DEBUG, "\nthr_state_ = %d", this->thr_state_)); - ACE_DEBUG ((LM_DEBUG, "\ncleanup_info_.cleanup_hook_ = %x", this->cleanup_info_.cleanup_hook_)); - ACE_DEBUG ((LM_DEBUG, "\nflags_ = %x\n", this->flags_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nthr_id_ = %d"), this->thr_id_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nthr_handle_ = %d"), this->thr_handle_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ngrp_id_ = %d"), this->grp_id_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nthr_state_ = %d"), this->thr_state_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ncleanup_info_.cleanup_hook_ = %x"), this->cleanup_info_.cleanup_hook_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nflags_ = %x\n"), this->flags_)); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } @@ -526,6 +526,7 @@ ACE_Thread_Manager::spawn_i (ACE_THR_FUNC func, // @@ How are thread handles implemented on AIX? Do they // also need to be duplicated? if (t_handle != 0) +#if !defined (ACE_HAS_WINCE) (void) ::DuplicateHandle (::GetCurrentProcess (), thr_handle, ::GetCurrentProcess (), @@ -533,6 +534,9 @@ ACE_Thread_Manager::spawn_i (ACE_THR_FUNC func, 0, TRUE, DUPLICATE_SAME_ACCESS); +#else /* ! ACE_HAS_WINCE */ + *t_handle = thr_handle; +#endif /* ! ACE_HAS_WINCE */ #else ACE_UNUSED_ARG (t_handle); #endif /* ACE_HAS_WTHREADS */ diff --git a/ace/Timer_Hash_T.cpp b/ace/Timer_Hash_T.cpp index df955999a52..38ec1565900 100644 --- a/ace/Timer_Hash_T.cpp +++ b/ace/Timer_Hash_T.cpp @@ -276,12 +276,12 @@ ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET>::dump (void) const { ACE_TRACE ("ACE_Timer_Hash_T::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "\ntable_size_ = %d", this->table_size_)); - ACE_DEBUG ((LM_DEBUG, "\nearliest_position_ = %d", this->earliest_position_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ntable_size_ = %d"), this->table_size_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nearliest_position_ = %d"), this->earliest_position_)); for (size_t i = 0; i < this->table_size_; i++) if (!this->table_[i]->is_empty ()) - ACE_DEBUG ((LM_DEBUG, "\nBucket %d contains nodes", i)); - ACE_DEBUG ((LM_DEBUG, "\n")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nBucket %d contains nodes"), i)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\n"))); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } diff --git a/ace/Timer_Heap_T.cpp b/ace/Timer_Heap_T.cpp index b65dc02ae28..8483540c711 100644 --- a/ace/Timer_Heap_T.cpp +++ b/ace/Timer_Heap_T.cpp @@ -245,20 +245,20 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::dump (void) const ACE_TRACE ("ACE_Timer_Heap::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "\nmax_size_ = %d", this->max_size_)); - ACE_DEBUG ((LM_DEBUG, "\ncur_size_ = %d", this->cur_size_)); - ACE_DEBUG ((LM_DEBUG, "\nheap_ = \n")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nmax_size_ = %d"), this->max_size_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ncur_size_ = %d"), this->cur_size_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nheap_ = \n"))); for (size_t i = 0; i < this->cur_size_; i++) { - ACE_DEBUG ((LM_DEBUG, "%d\n", i)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("%d\n"), i)); this->heap_[i]->dump (); } - ACE_DEBUG ((LM_DEBUG, "\ntimer_ids_ = \n")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ntimer_ids_ = \n"))); for (size_t j = 0; j < this->cur_size_; j++) - ACE_DEBUG ((LM_DEBUG, "%d\t%d\n", j, this->timer_ids_[j])); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("%d\t%d\n"), j, this->timer_ids_[j])); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } diff --git a/ace/Timer_List_T.cpp b/ace/Timer_List_T.cpp index 29663fc05a2..5594c5cb39d 100644 --- a/ace/Timer_List_T.cpp +++ b/ace/Timer_List_T.cpp @@ -136,8 +136,8 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::dump (void) const count++; curr = curr->get_next (); } - ACE_DEBUG ((LM_DEBUG, "\nsize_ = %d", count)); - ACE_DEBUG ((LM_DEBUG, "\ntimer_id_ = %d", this->timer_id_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nsize_ = %d"), count)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\ntimer_id_ = %d"), this->timer_id_)); ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } diff --git a/ace/Timer_Queue_Adapters.cpp b/ace/Timer_Queue_Adapters.cpp index 80f8d7f40f5..85b07f9fdd1 100644 --- a/ace/Timer_Queue_Adapters.cpp +++ b/ace/Timer_Queue_Adapters.cpp @@ -104,7 +104,7 @@ ACE_Async_Timer_Queue_Adapter<TQ>::handle_signal (int signum, siginfo_t *, ucontext_t *) { - ACE_DEBUG ((LM_DEBUG, "handling signal %S\n", signum)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("handling signal %S\n"), signum)); switch (signum) { @@ -118,7 +118,7 @@ ACE_Async_Timer_Queue_Adapter<TQ>::handle_signal (int signum, if (expired_timers > 0) ACE_DEBUG ((LM_DEBUG, - "time = %d, timers expired = %d\n", + ASYS_TEXT ("time = %d, timers expired = %d\n"), ACE_OS::time (), expired_timers)); @@ -223,7 +223,7 @@ ACE_Thread_Timer_Queue_Adapter<TQ>::svc (void) ACE_PTHREAD_CLEANUP_POP (0); #endif /* ACE_LACKS_PTHREAD_CANCEL */ - ACE_DEBUG ((LM_DEBUG, "terminating dispatching thread\n")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("terminating dispatching thread\n"))); return 0; } diff --git a/ace/Timer_Wheel_T.cpp b/ace/Timer_Wheel_T.cpp index 66d7880f563..a93f1595b45 100644 --- a/ace/Timer_Wheel_T.cpp +++ b/ace/Timer_Wheel_T.cpp @@ -396,13 +396,13 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::dump (void) const ACE_TRACE ("ACE_Timer_Wheel_T::dump"); ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this)); - ACE_DEBUG ((LM_DEBUG, "\nwheel_size_ = %d", this->wheel_size_)); - ACE_DEBUG ((LM_DEBUG, "\nresolution_ = %d", this->resolution_)); - ACE_DEBUG ((LM_DEBUG, "\nwheel_ = \n")); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nwheel_size_ = %d"), this->wheel_size_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nresolution_ = %d"), this->resolution_)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\nwheel_ = \n"))); for (size_t i = 0; i < this->wheel_size_; i++) { - ACE_DEBUG ((LM_DEBUG, "%d\n", i)); + ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("%d\n"), i)); ACE_Timer_Node_T<TYPE> *temp = this->wheel_[i]->get_next (); while (temp != this->wheel_[i]) { diff --git a/ace/ace_ce_dll.dsp b/ace/ace_ce_dll.dsp index 44585f0d5a7..717c8577261 100644 --- a/ace/ace_ce_dll.dsp +++ b/ace/ace_ce_dll.dsp @@ -129,7 +129,7 @@ BSC32=bscmake.exe LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /machine:MIPS
# SUBTRACT BASE LINK32 /fixed:no /pdb:none /nodefaultlib
-# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /machine:MIPS /out:"ace_ce_mips.dll"
+# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /machine:MIPS /nodefaultlib:"wsock32.lib"
# SUBTRACT LINK32 /fixed:no /pdb:none /nodefaultlib
PFILE=pfile.exe
# ADD BASE PFILE COPY
@@ -163,7 +163,7 @@ BSC32=bscmake.exe LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /debug /machine:MIPS
# SUBTRACT BASE LINK32 /fixed:no /pdb:none /nodefaultlib
-# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /debug /machine:MIPS /out:"aced_ce_mips.dll"
+# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /debug /machine:MIPS /nodefaultlib:"wsock32.lib"
# SUBTRACT LINK32 /fixed:no /pdb:none /nodefaultlib
PFILE=pfile.exe
# ADD BASE PFILE COPY
@@ -197,7 +197,7 @@ BSC32=bscmake.exe LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /machine:SH3
# SUBTRACT BASE LINK32 /fixed:no /pdb:none /nodefaultlib
-# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /machine:SH3 /out:"ace_ce_sh.dll"
+# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /machine:SH3 /nodefaultlib:"wsock32.lib"
# SUBTRACT LINK32 /fixed:no /pdb:none /nodefaultlib
PFILE=pfile.exe
# ADD BASE PFILE COPY
@@ -231,7 +231,7 @@ BSC32=bscmake.exe LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /debug /machine:SH3
# SUBTRACT BASE LINK32 /fixed:no /pdb:none /nodefaultlib
-# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /debug /machine:SH3 /out:"aced_ce_sh.dll"
+# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /subsystem:windowsce,2.0 /windowsce:noconvert /dll /debug /machine:SH3 /nodefaultlib:"wsock32.lib"
# SUBTRACT LINK32 /fixed:no /pdb:none /nodefaultlib
PFILE=pfile.exe
# ADD BASE PFILE COPY
@@ -343,6 +343,90 @@ DEP_CPP_ACE_C=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_ACE_C=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Process.h"\
+ ".\Process.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -482,6 +566,42 @@ DEP_CPP_ADDR_=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_ADDR_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -573,6 +693,42 @@ DEP_CPP_ARRAY=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_ARRAY=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -618,6 +774,129 @@ DEP_CPP_ARRAY=\ # End Source File
# Begin Source File
+SOURCE=.\Basic_Types.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_BASIC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Dump.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_DUMP_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Dump.h"\
+ ".\Dump_T.cpp"\
+ ".\Dump_T.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=.\Event_Handler.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
@@ -695,6 +974,73 @@ DEP_CPP_EVENT=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_EVENT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -817,6 +1163,42 @@ DEP_CPP_HANDL=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_HANDL=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -862,6 +1244,61 @@ DEP_CPP_HANDL=\ # End Source File
# Begin Source File
+SOURCE=.\High_Res_Timer.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_HIGH_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=.\INET_Addr.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
@@ -910,6 +1347,44 @@ DEP_CPP_INET_=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_INET_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -957,6 +1432,61 @@ DEP_CPP_INET_=\ # End Source File
# Begin Source File
+SOURCE=.\IO_SAP.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_IO_SA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\IO_SAP.h"\
+ ".\IO_SAP.i"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=.\IPC_SAP.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
@@ -1003,6 +1533,42 @@ DEP_CPP_IPC_S=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_IPC_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -1148,6 +1714,96 @@ DEP_CPP_LOG_M=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_LOG_M=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SPIPE.h"\
+ ".\SPIPE.i"\
+ ".\SPIPE_Addr.h"\
+ ".\SPIPE_Addr.i"\
+ ".\SPIPE_Connector.h"\
+ ".\SPIPE_Connector.i"\
+ ".\SPIPE_Stream.h"\
+ ".\SPIPE_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -1291,6 +1947,40 @@ DEP_CPP_LOG_R=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_LOG_R=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -1409,6 +2099,71 @@ DEP_CPP_MALLO=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_MALLO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -1560,6 +2315,73 @@ DEP_CPP_MESSA=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_MESSA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -1761,6 +2583,121 @@ DEP_CPP_OBJEC=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_OBJEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Array.cpp"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Manager.h"\
+ ".\Service_Manager.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token_Manager.h"\
+ ".\Token_Manager.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -2012,6 +2949,123 @@ DEP_CPP_OS_CP=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_OS_CP=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\ARGV.h"\
+ ".\ARGV.i"\
+ ".\Array.cpp"\
+ ".\Array.h"\
+ ".\Array.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.cpp"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Sched_Params.h"\
+ ".\Sched_Params.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -2138,6 +3192,325 @@ DEP_CPP_OS_CP=\ # End Source File
# Begin Source File
+SOURCE=.\Profile_Timer.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_PROFI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Profile_Timer.h"\
+ ".\Profile_Timer.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Reactor.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_REACT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\Hash_Map_Manager.cpp"\
+ ".\Hash_Map_Manager.h"\
+ ".\inc_user_config.h"\
+ ".\IO_Cntl_Msg.h"\
+ ".\iosfwd.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Queue.cpp"\
+ ".\Message_Queue.h"\
+ ".\Message_Queue.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Select_Reactor.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SELEC=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=.\SOCK.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
@@ -2188,6 +3561,46 @@ DEP_CPP_SOCK_=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_SOCK_=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -2310,6 +3723,69 @@ DEP_CPP_SOCK_A=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_SOCK_A=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -2382,12 +3858,16 @@ DEP_CPP_SOCK_A=\ # End Source File
# Begin Source File
-SOURCE=.\SOCK_Connector.cpp
+SOURCE=.\SOCK_CODgram.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
DEP_CPP_SOCK_C=\
".\ACE.h"\
".\ACE.i"\
@@ -2402,6 +3882,65 @@ DEP_CPP_SOCK_C=\ ".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_CODgram.h"\
+ ".\SOCK_CODgram.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\SOCK_Connector.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+DEP_CPP_SOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -2443,11 +3982,62 @@ DEP_CPP_SOCK_C=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_SOCK_CO=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Time_Value.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
-DEP_CPP_SOCK_C=\
+DEP_CPP_SOCK_CO=\
".\ACE.h"\
".\ACE.i"\
".\Addr.h"\
@@ -2503,6 +4093,213 @@ DEP_CPP_SOCK_C=\ # End Source File
# Begin Source File
+SOURCE=.\SOCK_Dgram.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SOCK_D=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\SOCK_Dgram_Bcast.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SOCK_DG=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Bcast.h"\
+ ".\SOCK_Dgram_Bcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\SOCK_Dgram_Mcast.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SOCK_DGR=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Dgram.h"\
+ ".\SOCK_Dgram.i"\
+ ".\SOCK_Dgram_Mcast.h"\
+ ".\SOCK_Dgram_Mcast.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=.\SOCK_IO.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
@@ -2555,6 +4352,48 @@ DEP_CPP_SOCK_I=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_SOCK_I=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -2662,6 +4501,52 @@ DEP_CPP_SOCK_S=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_SOCK_S=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -2808,6 +4693,87 @@ DEP_CPP_SSTRI=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_SSTRI=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -2956,6 +4922,54 @@ DEP_CPP_SYNCH=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_SYNCH=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -3013,6 +5027,152 @@ DEP_CPP_SYNCH=\ # End Source File
# Begin Source File
+SOURCE=.\Thread.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_THREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Thread_Manager.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_THREAD=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=.\Trace.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
@@ -3058,6 +5218,41 @@ DEP_CPP_TRACE=\ !ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+DEP_CPP_TRACE=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\sys_conf.h"\
+ ".\Trace.h"\
+ ".\Trace.i"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
@@ -3100,5 +5295,135 @@ DEP_CPP_TRACE=\ !ENDIF
# End Source File
+# Begin Source File
+
+SOURCE=.\XtReactor.cpp
+
+!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_XTREA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.cpp"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\sys_conf.h"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\Version.h"\
+ ".\ws2tcpip.h"\
+ ".\XtReactor.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+
+!ENDIF
+
+# End Source File
# End Target
# End Project
diff --git a/docs/CE-status.txt b/docs/CE-status.txt new file mode 100644 index 00000000000..05ec6b93afa --- /dev/null +++ b/docs/CE-status.txt @@ -0,0 +1,537 @@ +-*- mode: outline; outline-regexp: " *\\[" -*- + +Legend: + (.) Defered. + (x) Compiled successfully. + (@) Not compile yet. + (T) Template codes. + ( ) ??? + +[ACE] + [CORBA] + (.) CORBA_Handler.cpp + (.) CORBA_Handler.h + (.) CORBA_Handler.i + (.) CORBA_Ref.cpp + (.) CORBA_Ref.h + (.) CORBA_Ref.i + [Collections] + (x) Array.cpp + (x) Array.h + (x) Array.i + (T) Containers.cpp + (T) Containers.i + (T) Containers.h + (T) Hash_Map_Manager.cpp + (T) Hash_Map_Manager.h + (T) Filecache.cpp + (T) Filecache.h + (T) Free_List.cpp + (T) Free_List.i + (T) Free_List.h + (T) Managed_Object.cpp + (T) Managed_Object.h + (T) Managed_Object.i + (T) Map_Manager.cpp + (T) Map_Manager.h + (T) Map_Manager.i + (x) Object_Manager.cpp + (x) Object_Manager.i + (x) Object_Manager.h + (x) SString.cpp + (x) SString.h + (x) SString.i + [Concurrency] + ( ) Activation_Queue.h + ( ) Activation_Queue.cpp + ( ) Atomic_Op.i + ( ) Future.h + ( ) Future.cpp + ( ) Method_Object.h + ( ) Method_Object.cpp + ( ) Process.cpp + ( ) Process.h + ( ) Process.i + ( ) Process_Manager.cpp + ( ) Process_Manager.h + ( ) Process_Manager.i + ( ) Sched_Params.cpp + ( ) Sched_Params.h + ( ) Sched_Params.i + (x) Synch.cpp + (x) Synch.h + (x) Synch.i + ( ) Synch_Options.cpp + ( ) Synch_Options.h + ( ) Synch_Options.i + (T) Synch_T.cpp + (T) Synch_T.h + (T) Synch_T.i + (x) Thread.cpp + (x) Thread.h + (x) Thread.i + (x) Thread_Manager.cpp + (x) Thread_Manager.h + (x) Thread_Manager.i + ( ) Token.cpp + ( ) Token.h + ( ) Token.i + [Config] + (x) config.h + (x) Basic_Types.cpp + (x) Basic_Types.h + (x) Basic_Types.i + (x) Version.h + [Connection] + ( ) Acceptor.cpp + ( ) Acceptor.h + ( ) Acceptor.i + ( ) Asynch_Acceptor.cpp + ( ) Asynch_Acceptor.h + ( ) Asynch_Acceptor.i + ( ) Asynch_IO.cpp + ( ) Asynch_IO.h + ( ) Asynch_IO.i + ( ) Connector.cpp + ( ) Connector.h + ( ) Connector.i + ( ) Dynamic_Service.cpp + ( ) Dynamic_Service.h + ( ) Dynamic_Service.i + ( ) Strategies.cpp + ( ) Strategies.h + ( ) Strategies.i + ( ) Strategies_T.cpp + ( ) Strategies_T.h + ( ) Strategies_T.i + ( ) Svc_Handler.cpp + ( ) Svc_Handler.h + ( ) Svc_Handler.i + [IPC] + [IO_SAP] + (x) IO_SAP.cpp + (x) IO_SAP.h + (x) IO_SAP.i + [DEV_SAP] + ( ) DEV.cpp + ( ) DEV.h + ( ) DEV.i + ( ) DEV_Connector.cpp + ( ) DEV_Connector.h + ( ) DEV_Connector.i + ( ) DEV_IO.cpp + ( ) DEV_IO.h + ( ) DEV_IO.i + ( ) TTY_IO.cpp + ( ) TTY_IO.h + [FILE_SAP] + ( ) FILE.cpp + ( ) FILE.h + ( ) FILE.i + ( ) FILE_Connector.cpp + ( ) FILE_Connector.h + ( ) FILE_Connector.i + ( ) FILE_IO.cpp + ( ) FILE_IO.h + ( ) FILE_IO.i + [IPC_SAP] + (x) IPC_SAP.cpp + (x) IPC_SAP.h + (x) IPC_SAP.i + [Addr] + (x) Addr.cpp + (x) Addr.h + (x) Addr.i + ( ) DEV_Addr.cpp + ( ) DEV_Addr.h + ( ) DEV_Addr.i + ( ) FILE_Addr.cpp + ( ) FILE_Addr.h + ( ) FILE_Addr.i + (x) INET_Addr.cpp + (x) INET_Addr.h + (x) INET_Addr.i + ( ) SPIPE_Addr.cpp + ( ) SPIPE_Addr.h + ( ) SPIPE_Addr.i + ( ) UNIX_Addr.cpp + ( ) UNIX_Addr.h + ( ) UNIX_Addr.i + ( ) UPIPE_Addr.h + [FIFO_SAP] + ( ) FIFO.cpp + ( ) FIFO.h + ( ) FIFO.i + ( ) FIFO_Recv.cpp + ( ) FIFO_Recv.h + ( ) FIFO_Recv.i + ( ) FIFO_Recv_Msg.cpp + ( ) FIFO_Recv_Msg.h + ( ) FIFO_Recv_Msg.i + ( ) FIFO_Send.cpp + ( ) FIFO_Send.h + ( ) FIFO_Send.i + ( ) FIFO_Send_Msg.cpp + ( ) FIFO_Send_Msg.h + ( ) FIFO_Send_Msg.i + [SOCK_SAP] + ( ) LOCK_SOCK_Acceptor.cpp + ( ) LOCK_SOCK_Acceptor.h + ( ) LSOCK.cpp + ( ) LSOCK.h + ( ) LSOCK.i + ( ) LSOCK_Acceptor.cpp + ( ) LSOCK_Acceptor.h + ( ) LSOCK_Acceptor.i + ( ) LSOCK_CODgram.cpp + ( ) LSOCK_CODgram.h + ( ) LSOCK_CODgram.i + ( ) LSOCK_Connector.cpp + ( ) LSOCK_Connector.h + ( ) LSOCK_Connector.i + ( ) LSOCK_Dgram.cpp + ( ) LSOCK_Dgram.h + ( ) LSOCK_Dgram.i + ( ) LSOCK_Stream.cpp + ( ) LSOCK_Stream.h + ( ) LSOCK_Stream.i + (x) SOCK.cpp + (x) SOCK.h + (x) SOCK.i + (x) SOCK_Acceptor.cpp + (x) SOCK_Acceptor.h + (x) SOCK_Acceptor.i + (x) SOCK_CODgram.cpp + (x) SOCK_CODgram.h + (x) SOCK_CODgram.i + (x) SOCK_Connector.cpp + (x) SOCK_Connector.h + (x) SOCK_Connector.i + (x) SOCK_Dgram.cpp + (x) SOCK_Dgram.h + (x) SOCK_Dgram.i + (x) SOCK_Dgram_Bcast.cpp + (x) SOCK_Dgram_Bcast.h + (x) SOCK_Dgram_Bcast.i + (x) SOCK_Dgram_Mcast.cpp + (x) SOCK_Dgram_Mcast.h + (x) SOCK_Dgram_Mcast.i + (x) SOCK_IO.cpp + (x) SOCK_IO.h + (x) SOCK_IO.i + (x) SOCK_Stream.cpp + (x) SOCK_Stream.h + (x) SOCK_Stream.i + [SPIPE_SAP] + ( ) SPIPE.cpp + ( ) SPIPE.h + ( ) SPIPE.i + ( ) SPIPE_Acceptor.cpp + ( ) SPIPE_Acceptor.h + ( ) SPIPE_Acceptor.i + ( ) SPIPE_Connector.cpp + ( ) SPIPE_Connector.h + ( ) SPIPE_Connector.i + ( ) SPIPE_Stream.cpp + ( ) SPIPE_Stream.h + ( ) SPIPE_Stream.i + [TLI_SAP] + ( ) TLI.cpp + ( ) TLI.h + ( ) TLI.i + ( ) TLI_Acceptor.cpp + ( ) TLI_Acceptor.h + ( ) TLI_Acceptor.i + ( ) TLI_Connector.cpp + ( ) TLI_Connector.h + ( ) TLI_Connector.i + ( ) TLI_Stream.cpp + ( ) TLI_Stream.h + ( ) TLI_Stream.i + [UPIPE_SAP] + ( ) UPIPE_Acceptor.cpp + ( ) UPIPE_Acceptor.h + ( ) UPIPE_Acceptor.i + ( ) UPIPE_Connector.cpp + ( ) UPIPE_Connector.h + ( ) UPIPE_Connector.i + ( ) UPIPE_Stream.cpp + ( ) UPIPE_Stream.h + ( ) UPIPE_Stream.i + [Utils] + ( ) IOStream.cpp + ( ) IOStream.h + ( ) IOStream_T.cpp + ( ) IOStream_T.h + ( ) IOStream_T.i + ( ) Pipe.cpp + ( ) Pipe.h + ( ) Pipe.i + ( ) Signal.cpp + ( ) Signal.h + ( ) Signal.i + [Logging and Tracing] + (x) Dump.cpp + (x) Dump.h + (x) Dump_T.cpp + (T) Dump_T.h + (T) Log_Msg.cpp + (x) Log_Msg.h + (x) Log_Msg.i + (x) Log_Priority.h + (x) Log_Record.cpp + (x) Log_Record.h + (x) Log_Record.i + (x) Trace.cpp + (x) Trace.h + (x) Trace.i + [Memory] + [Mem_Map] + ( ) Mem_Map.cpp + ( ) Mem_Map.h + ( ) Mem_Map.i + [Shared_Malloc] + ( ) Malloc.cpp + ( ) Malloc.h + ( ) Malloc.i + ( ) Malloc_T.cpp + ( ) Malloc_T.h + ( ) Malloc_T.i + ( ) Memory_Pool.cpp + ( ) Memory_Pool.h + ( ) Memory_Pool.i + [Shared_Memory] + ( ) Shared_Memory.h + ( ) Shared_Memory_MM.cpp + ( ) Shared_Memory_MM.h + ( ) Shared_Memory_MM.i + ( ) Shared_Memory_SV.cpp + ( ) Shared_Memory_SV.h + ( ) Shared_Memory_SV.i + [Utils] + ( ) Obstack.cpp + ( ) Obstack.h + ( ) Read_Buffer.cpp + ( ) Read_Buffer.h + ( ) Read_Buffer.i + [Misc] + ( ) ARGV.cpp + ( ) ARGV.h + ( ) ARGV.i + ( ) Auto_Ptr.cpp + ( ) Auto_Ptr.h + ( ) Auto_Ptr.i + ( ) Date_Time.cpp + ( ) Date_Time.h + ( ) Date_Time.i + ( ) Dynamic.cpp + ( ) Dynamic.h + ( ) Dynamic.i + ( ) Get_Opt.cpp + ( ) Get_Opt.h + ( ) Get_Opt.i + ( ) Registry.cpp + ( ) Registry.h + ( ) Singleton.cpp + ( ) Singleton.h + ( ) Singleton.i + ( ) System_Time.cpp + ( ) System_Time.h + [Name_Service] + ( ) Local_Name_Space.cpp + ( ) Local_Name_Space.h + ( ) Local_Name_Space_T.cpp + ( ) Local_Name_Space_T.h + ( ) Name_Options.cpp + ( ) Name_Options.h + ( ) Name_Proxy.cpp + ( ) Name_Proxy.h + ( ) Name_Request_Reply.cpp + ( ) Name_Request_Reply.h + ( ) Name_Space.cpp + ( ) Name_Space.h + ( ) Naming_Context.cpp + ( ) Naming_Context.h + ( ) Registry_Name_Space.cpp + ( ) Registry_Name_Space.h + ( ) Remote_Name_Space.cpp + ( ) Remote_Name_Space.h + [OS Adapters] + (x) ACE.cpp + (x) ACE.h + (x) ACE.i + (x) OS.cpp + (x) OS.h + (x) OS.i + [Reactor] + (x) Event_Handler.cpp + (x) Event_Handler.h + (x) Event_Handler.i + (T) Event_Handler_T.cpp + (T) Event_Handler_T.h + (T) Event_Handler_T.i + (x) Handle_Set.cpp + (x) Handle_Set.h + (x) Handle_Set.i + ( ) Priority_Reactor.cpp + ( ) Priority_Reactor.i + ( ) Priority_Reactor.h + ( ) Proactor.h + ( ) Proactor.i + ( ) Proactor.cpp + (x) Reactor.cpp + (x) Reactor.h + (x) Reactor.i + (x) Reactor_Impl.h + (x) Select_Reactor.cpp + (x) Select_Reactor.h + (x) Select_Reactor.i + (@) WFMO_Reactor.cpp + (@) WFMO_Reactor.h + (@) WFMO_Reactor.i + (x) XtReactor.cpp + (x) XtReactor.h + [Service_Configurator] + ( ) Parse_Node.cpp + ( ) Parse_Node.h + ( ) Parse_Node.i + ( ) Service_Config.cpp + ( ) Service_Config.h + ( ) Service_Config.i + ( ) Service_Main.cpp + ( ) Service_Manager.cpp + ( ) Service_Manager.h + ( ) Service_Manager.i + ( ) Service_Object.cpp + ( ) Service_Object.h + ( ) Service_Object.i + ( ) Service_Record.cpp + ( ) Service_Record.h + ( ) Service_Record.i + ( ) Service_Repository.cpp + ( ) Service_Repository.h + ( ) Service_Repository.i + ( ) Service_Types.cpp + ( ) Service_Types.i + ( ) Service_Types.h + ( ) Shared_Object.cpp + ( ) Shared_Object.h + ( ) Shared_Object.i + ( ) Svc_Conf.h + ( ) Svc_Conf_l.cpp + ( ) Svc_Conf_y.cpp + ( ) Svc_Conf_Tokens.h + [Streams] + ( ) IO_Cntl_Msg.cpp + ( ) IO_Cntl_Msg.h + ( ) IO_Cntl_Msg.i + ( ) Message_Block.cpp + ( ) Message_Block.h + ( ) Message_Block.i + ( ) Message_Queue.cpp + ( ) Message_Queue.h + ( ) Message_Queue.i + ( ) Module.cpp + ( ) Module.h + ( ) Module.i + ( ) Multiplexor.cpp + ( ) Multiplexor.h + ( ) Multiplexor.i + ( ) Stream.cpp + ( ) Stream.h + ( ) Stream.i + ( ) Stream_Modules.cpp + ( ) Stream_Modules.h + ( ) Stream_Modules.i + ( ) Task.cpp + ( ) Task.h + ( ) Task.i + ( ) Task_T.cpp + ( ) Task_T.h + ( ) Task_T.i + [System_V_IPC] + [System_V_Message_Queues] + ( ) SV_Message.cpp + ( ) SV_Message.h + ( ) SV_Message.i + ( ) SV_Message_Queue.cpp + ( ) SV_Message_Queue.h + ( ) SV_Message_Queue.i + ( ) Typed_SV_Message.cpp + ( ) Typed_SV_Message.h + ( ) Typed_SV_Message.i + ( ) Typed_SV_Message_Queue.cpp + ( ) Typed_SV_Message_Queue.h + ( ) Typed_SV_Message_Queue.i + [System_V_Semaphores] + ( ) SV_Semaphore_Complex.cpp + ( ) SV_Semaphore_Complex.h + ( ) SV_Semaphore_Complex.i + ( ) SV_Semaphore_Simple.cpp + ( ) SV_Semaphore_Simple.h + ( ) SV_Semaphore_Simple.i + [System_V_Shared_Memory] + ( ) SV_Shared_Memory.cpp + ( ) SV_Shared_Memory.h + ( ) SV_Shared_Memory.i + [Timers] + + (x) High_Res_Timer.cpp + (x) High_Res_Timer.h + (x) High_Res_Timer.i + (x) Profile_Timer.cpp + (x) Profile_Timer.h + (x) Profile_Timer.i + (.) Time_Request_Reply.cpp + (.) Time_Request_Reply.h + (x) Time_Value.h + (x) Timer_Hash.cpp + (x) Timer_Hash.h + (T) Timer_Hash_T.cpp + (T) Timer_Hash_T.h + (x) Timer_Heap.cpp + (x) Timer_Heap.h + (x) Timer_Heap.i + (T) Timer_Heap_T.cpp + (T) Timer_Heap_T.h + (T) Timer_Heap_T.i + (x) Timer_List.cpp + (x) Timer_List.h + (x) Timer_List.i + (T) Timer_List_T.cpp + (T) Timer_List_T.h + (T) Timer_List_T.i + (x) Timer_Queue.cpp + (x) Timer_Queue.h + (x) Timer_Queue.i + (T) Timer_Queue_Adapters.cpp + (T) Timer_Queue_Adapters.h + (T) Timer_Queue_Adapters.i + (T) Timer_Queue_T.cpp + (T) Timer_Queue_T.h + (T) Timer_Queue_T.i + (x) Timer_Wheel.cpp + (x) Timer_Wheel.h + (x) Timer_Wheel.i + (T) Timer_Wheel_T.cpp + (T) Timer_Wheel_T.h + (T) Timer_Wheel_T.i + [Token_Service] + ( ) Local_Tokens.cpp + ( ) Local_Tokens.h + ( ) Local_Tokens.i + ( ) Remote_Tokens.cpp + ( ) Remote_Tokens.h + ( ) Remote_Tokens.i + ( ) Token_Collection.cpp + ( ) Token_Collection.h + ( ) Token_Collection.i + ( ) Token_Manager.cpp + ( ) Token_Manager.h + ( ) Token_Manager.i + ( ) Token_Request_Reply.cpp + ( ) Token_Request_Reply.h + ( ) Token_Request_Reply.i + ( ) Token_Invariants.h + ( ) Token_Invariants.i + ( ) Token_Invariants.cpp |