summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog-99b20
-rw-r--r--ace/Memory_Pool.h36
-rw-r--r--ace/Memory_Pool.i13
-rw-r--r--ace/OS.cpp11
-rw-r--r--ace/OS.h3
-rw-r--r--ace/ace_ce_dll.dsp1154
-rw-r--r--ace/config-WinCE.h18
7 files changed, 73 insertions, 1182 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index 1eb40bec540..ee1f51f5ca2 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,21 @@
+Sat Nov 27 22:06:26 1999 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * ace/OS.cpp: Defined ACE_ENDTHREADEX and ACE_BEGINTHREADEX to use
+ ExitThread and BeginThread for WinCE 2.11 and above. Thanks to
+ Peter C. Chien <peter@newsol.com> for the tip.
+
+ * ace/ace_ce_dll.dsp: Reworked for WinCE 2.11. More
+ configurations are added.
+
+ * ace/OS.{h,cpp}: WinCE 2.11 and above does implement exit method
+ so we don't need to provide our own for them.
+
+ * ace/config-WinCE.h: Updated configuration settings for WinCE
+ 2.11.
+
+ * ace/Memory_Pool.{h,i}: Added the <base_addr> method for
+ accessing the base address information of the memory pool.
+
Sat Nov 27 18:36:48 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* tests/Priority_Buffer_Test.cpp (consumer): Revised the test
@@ -1184,7 +1202,7 @@ Tue Oct 19 00:43:34 1999 Nanbor Wang <nanbor@cs.wustl.edu>
WinCE.
The following changes are contributions from James Buck
- <jim@newsol.com> and Peter C. Chien <peter@newsol.com>.
+ <jim@newsol.com> and Peter C. Chien <peter@newsol.com> .
* ace/config-WinCE.h (ACE_LACKS_SOCKET_BUFSIZ): We cannot change
the socket buffer size on WinCE.
diff --git a/ace/Memory_Pool.h b/ace/Memory_Pool.h
index a8933fdcd7e..b6cc6c7f1f7 100644
--- a/ace/Memory_Pool.h
+++ b/ace/Memory_Pool.h
@@ -421,6 +421,10 @@ public:
// mapping) and our process now incurs a fault because our mapping
// isn't in range (yet).
+
+ virtual void *base_addr (void) const;
+ // Return the base address of this memory pool.
+
virtual void dump (void) const;
// Dump the state of an object.
@@ -521,7 +525,7 @@ public:
// Initialization method.
ACE_Pagefile_Memory_Pool_Options (void *base_addr = ACE_DEFAULT_PAGEFILE_POOL_BASE,
size_t max_size = ACE_DEFAULT_PAGEFILE_POOL_SIZE);
-
+
void *base_addr_;
// Base address of the memory-mapped backing store.
@@ -542,9 +546,9 @@ public:
// Initialize the pool.
void *init_acquire (size_t nbytes,
- size_t &rounded_bytes,
+ size_t &rounded_bytes,
int &first_time);
- // Ask system for initial chunk of shared memory.
+ // Ask system for initial chunk of shared memory.
void *acquire (size_t nbytes,
size_t &rounded_bytes);
@@ -594,30 +598,30 @@ private:
// = TITLE
// Attributes that are meaningful in local storage only.
public:
- void *req_base_;
- // required base address
+ void *req_base_;
+ // required base address
- void *mapped_base_;
+ void *mapped_base_;
// Base address returned from system call
- class Shared_Control_Block
+ class Shared_Control_Block
{
// = TITLE
// Pool statistics
public:
- size_t max_size_;
+ size_t max_size_;
// Maximum size the pool may grow
- int mapped_size_;
+ int mapped_size_;
// Size of mapped shared memory segment
- int free_offset_;
+ int free_offset_;
// Offset to mapped but not yet acquired address space
- int free_size_;
+ int free_size_;
// Size of mapped but not yet acquired address space
};
-
+
Shared_Control_Block sh_;
};
@@ -625,16 +629,16 @@ private:
// free to select any address to map the file, otherwise this value
// is what the OS must try to use to mmap the file.
- Control_Block local_cb_;
+ Control_Block local_cb_;
// Description of what our process mapped.
- Control_Block *shared_cb_;
+ Control_Block *shared_cb_;
// Shared memory pool statistics.
- ACE_HANDLE object_handle_;
+ ACE_HANDLE object_handle_;
// File mapping handle.
- size_t page_size_;
+ size_t page_size_;
// System page size.
TCHAR backing_store_name_[MAXPATHLEN];
diff --git a/ace/Memory_Pool.i b/ace/Memory_Pool.i
index d1e5093cd78..935ff7802aa 100644
--- a/ace/Memory_Pool.i
+++ b/ace/Memory_Pool.i
@@ -51,6 +51,13 @@ ACE_MMAP_Memory_Pool::round_up (size_t nbytes)
return ACE::round_to_pagesize (nbytes);
}
+ACE_INLINE void *
+ACE_MMAP_Memory_Pool::base_addr (void) const
+{
+ ACE_TRACE ("ACE_MMAP_Memory_Pool::base_addr");
+ return this->base_addr_;
+}
+
// Ask system for initial chunk of local memory.
ACE_INLINE void *
@@ -196,14 +203,14 @@ ACE_Sbrk_Memory_Pool::protect (void *, size_t, int)
#if defined (ACE_WIN32)
-ACE_INLINE size_t
+ACE_INLINE size_t
ACE_Pagefile_Memory_Pool::round_to_chunk_size (size_t nbytes)
{
- return (nbytes + ACE_DEFAULT_PAGEFILE_POOL_CHUNK - 1)
+ return (nbytes + ACE_DEFAULT_PAGEFILE_POOL_CHUNK - 1)
& (~(ACE_DEFAULT_PAGEFILE_POOL_CHUNK - 1));
}
-ACE_INLINE size_t
+ACE_INLINE size_t
ACE_Pagefile_Memory_Pool::round_to_page_size (size_t nbytes)
{
return ACE::round_to_pagesize (nbytes);
diff --git a/ace/OS.cpp b/ace/OS.cpp
index 11d099c3ab6..b43f5826314 100644
--- a/ace/OS.cpp
+++ b/ace/OS.cpp
@@ -2402,6 +2402,10 @@ ACE_Thread_Adapter::inherit_log_msg (void)
#define ACE_ENDTHREADEX(STATUS) ::_endthreadex ()
#define ACE_BEGINTHREADEX(STACK, STACKSIZE, ENTRY_POINT, ARGS, FLAGS, THR_ID) \
(*THR_ID = ::_beginthreadex ((void(_Optlink*)(void*))ENTRY_POINT, STACK, STACKSIZE, ARGS), *THR_ID)
+#elif defined (ACE_HAS_WINCE) && defined (UNDER_CE) && (UNDER_CE >= 211)
+#define ACE_ENDTHREADEX(STATUS) ExitThread ((DWORD) STATUS)
+#define ACE_BEGINTHREADEX(STACK, STACKSIZE, ENTRY_POINT, ARGS, FLAGS, THR_ID) \
+ CreateThread (NULL, STACKSIZE, (unsigned long (__stdcall *) (void *)) ENTRY_POINT, ARGS, (FLAGS) & CREATE_SUSPENDED, (unsigned long *) THR_ID)
#else
#define ACE_ENDTHREADEX(STATUS) ::_endthreadex ((DWORD) STATUS)
#define ACE_BEGINTHREADEX(STACK, STACKSIZE, ENTRY_POINT, ARGS, FLAGS, THR_ID) \
@@ -6998,20 +7002,21 @@ ACE_CE_Bridge::write_msg (CString *s)
// might not do what it is expected to do under regular environments.
// **** Warning ****
+# if defined (UNDER_CE) && (UNDER_CE < 211)
void
exit (int status)
{
-#if defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) && !defined (ACE_HAS_WINCE) && !defined (ACE_DOESNT_INSTANTIATE_NONSTATIC_OBJECT_MANAGER)
+# if defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) && !defined (ACE_HAS_WINCE) && !defined (ACE_DOESNT_INSTANTIATE_NONSTATIC_OBJECT_MANAGER)
// Shut down the ACE_Object_Manager, if it had registered its exit_hook.
// With ACE_HAS_NONSTATIC_OBJECT_MANAGER, the ACE_Object_Manager is
// instantiated on the main's stack. ::exit () doesn't destroy it.
if (exit_hook_)
(*exit_hook_) ();
-#endif /* ACE_HAS_NONSTATIC_OBJECT_MANAGER && !ACE_HAS_WINCE && !ACE_DOESNT_INSTANTIATE_NONSTATIC_OBJECT_MANAGER */
+# endif /* ACE_HAS_NONSTATIC_OBJECT_MANAGER && !ACE_HAS_WINCE && !ACE_DOESNT_INSTANTIATE_NONSTATIC_OBJECT_MANAGER */
ACE_OS::exit (status);
}
-
+# endif /* UNDER_CE && UNDER_CE < 211 */
# endif /* ACE_HAS_WINCE */
#if defined (ACE_HAS_STRPTIME)
diff --git a/ace/OS.h b/ace/OS.h
index 72e7e90bcfe..b2523e27e26 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -7128,7 +7128,9 @@ int ferror (FILE *fp);
int isatty (ACE_HANDLE h);
ACE_HANDLE fileno (FILE *fp);
int fflush (FILE *fp);
+# if defined (UNDER_CE) && (UNDER_CE < 211)
void exit (int status);
+# endif /* UNDER_CE && UNDER_CE < 211 */
int fprintf (FILE *fp, char *format, const char *msg); // not a general purpose
// fprintf at all.
int printf (const char *format, ...);
@@ -8076,6 +8078,7 @@ private:
static ACE_CE_Bridge *default_text_bridge_;
// A pointer to the default ACE_CE_BRIDGE obj.
};
+
# endif /* ACE_HAS_WINCE */
#if defined (ACE_HAS_WINCE_BROKEN_ERRNO)
diff --git a/ace/ace_ce_dll.dsp b/ace/ace_ce_dll.dsp
index d3ae0421087..fceb65c5054 100644
--- a/ace/ace_ce_dll.dsp
+++ b/ace/ace_ce_dll.dsp
@@ -8017,583 +8017,6 @@ NODEP_CPP_IPC_S=\
# End Source File
# Begin Source File
-SOURCE=.\Local_Tokens.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-DEP_CPP_LOCAL=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_LOCAL=\
- ".\sys_conf.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-
-DEP_CPP_LOCAL=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Based_Pointer_Repository.h"\
- ".\Based_Pointer_T.cpp"\
- ".\Based_Pointer_T.h"\
- ".\Based_Pointer_T.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Containers_T.cpp"\
- ".\Containers_T.h"\
- ".\Containers_T.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\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"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
-DEP_CPP_LOCAL=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_LOCAL=\
- ".\sys_conf.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
-
-DEP_CPP_LOCAL=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_LOCAL=\
- ".\sys_conf.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
-
-DEP_CPP_LOCAL=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Containers_T.cpp"\
- ".\Containers_T.h"\
- ".\Containers_T.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_LOCAL=\
- ".\ce.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
-
-DEP_CPP_LOCAL=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Containers_T.cpp"\
- ".\Containers_T.h"\
- ".\Containers_T.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_LOCAL=\
- ".\ce.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
SOURCE=.\Log_Msg.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
@@ -30553,583 +29976,6 @@ NODEP_CPP_TOKEN=\
# End Source File
# Begin Source File
-SOURCE=.\Token_Manager.cpp
-
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
-
-DEP_CPP_TOKEN_=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_TOKEN_=\
- ".\sys_conf.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
-
-DEP_CPP_TOKEN_=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Based_Pointer_Repository.h"\
- ".\Based_Pointer_T.cpp"\
- ".\Based_Pointer_T.h"\
- ".\Based_Pointer_T.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Containers_T.cpp"\
- ".\Containers_T.h"\
- ".\Containers_T.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\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"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
-
-DEP_CPP_TOKEN_=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_TOKEN_=\
- ".\sys_conf.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
-
-DEP_CPP_TOKEN_=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_TOKEN_=\
- ".\sys_conf.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
-
-DEP_CPP_TOKEN_=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Containers_T.cpp"\
- ".\Containers_T.h"\
- ".\Containers_T.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_TOKEN_=\
- ".\ce.h"\
-
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
-
-DEP_CPP_TOKEN_=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
- ".\Basic_Types.h"\
- ".\Basic_Types.i"\
- ".\config-win32-borland.h"\
- ".\config-win32-common.h"\
- ".\config-win32.h"\
- ".\config-WinCE.h"\
- ".\config.h"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Containers_T.cpp"\
- ".\Containers_T.h"\
- ".\Containers_T.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
- ".\iosfwd.h"\
- ".\Local_Tokens.h"\
- ".\Local_Tokens.i"\
- ".\Log_Msg.h"\
- ".\Log_Priority.h"\
- ".\Log_Record.h"\
- ".\Log_Record.i"\
- ".\Malloc.h"\
- ".\Malloc.i"\
- ".\Malloc_Base.h"\
- ".\Malloc_T.cpp"\
- ".\Malloc_T.h"\
- ".\Malloc_T.i"\
- ".\Managed_Object.cpp"\
- ".\Managed_Object.h"\
- ".\Managed_Object.i"\
- ".\Map_Manager.cpp"\
- ".\Map_Manager.h"\
- ".\Map_Manager.i"\
- ".\Mem_Map.h"\
- ".\Mem_Map.i"\
- ".\Memory_Pool.h"\
- ".\Memory_Pool.i"\
- ".\Object_Manager.h"\
- ".\Object_Manager.i"\
- ".\OS.h"\
- ".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
- ".\Token_Manager.h"\
- ".\Token_Manager.i"\
- ".\Trace.h"\
- ".\ws2tcpip.h"\
-
-NODEP_CPP_TOKEN_=\
- ".\ce.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
SOURCE=.\TP_Reactor.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
diff --git a/ace/config-WinCE.h b/ace/config-WinCE.h
index 19d30aa59d5..dc546d12818 100644
--- a/ace/config-WinCE.h
+++ b/ace/config-WinCE.h
@@ -145,19 +145,19 @@
// @@ Followings are used to keep existing programs happy.
-#define FILE void // Try to map FILE* to HANDLE
#define ostream FILE
#if !defined (BUFSIZ)
# define BUFSIZ 1024
#endif /* BUFSIZ */
+#if defined (UNDER_CE) && (UNDER_CE < 211)
#define EOF -1
+#endif /* UNDER_CE && UNDER_CE < 211 */
typedef void (*__sighandler_t)(int); // keep Signal compilation happy
typedef long off_t;
-#define stderr 0
-#if defined (ACE_WINCE_VERSION) && (ACE_WINCE_VERSION >= 0201)
+#if defined (UNDER_CE) && (UNDER_CE > 200)
#define EMFILE WSAEMFILE
#define EINTR WSAEINTR
#define EACCES ERROR_ACCESS_DENIED
@@ -172,14 +172,22 @@ typedef long off_t;
#define ENOMEM ERROR_OUTOFMEMORY
#define ENODEV ERROR_BAD_DEVICE
#define ACE_LACKS_MALLOC_H // We do have malloc.h, but don't use it.
-#endif /* UNDER_CE && UNDER_CE == 2.01 */
+#endif /* UNDER_CE && UNDER_CE > 201 */
+#if defined (UNDER_CE) && (UNDER_CE < 211)
+#define FILE void // Try to map FILE* to HANDLE
#define SEEK_SET FILE_BEGIN
#define SEEK_CUR FILE_CURRENT
#define SEEK_END FILE_END
-
+#define stderr 0
#define stdin 0
#define stdout 0
+#endif /* UNDER_CE && UNDER_CE < 211 */
+
+#if defined (UNDER_CE) && (UNDER_CE >= 211)
+#define ACE_HAS_WINCE_BROKEN_ERRNO
+#define _MAX_FNAME 255
+#endif /* UNDER_CE && UNDER_CE >= 211 */
#define ACE_HAS_STRDUP_EMULATION