diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-19 09:11:03 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-19 09:11:03 +0000 |
commit | bb76358b0035d7ce30cb26e88df15c5647ed3f16 (patch) | |
tree | d9d4aef2560d545313423c06c21072e59b588927 /ace/Service_Config.cpp | |
parent | b387da33a585455ea4ede00f8ce7b30ae86ba19a (diff) | |
download | ATCD-bb76358b0035d7ce30cb26e88df15c5647ed3f16.tar.gz |
CE stuff.
Diffstat (limited to 'ace/Service_Config.cpp')
-rw-r--r-- | ace/Service_Config.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ace/Service_Config.cpp b/ace/Service_Config.cpp index 38faf6456e0..9e7aee972ae 100644 --- a/ace/Service_Config.cpp +++ b/ace/Service_Config.cpp @@ -10,7 +10,9 @@ #include "ace/Service_Types.h" #include "ace/Containers.h" #include "ace/Auto_Ptr.h" -#include "ace/Proactor.h" +#if !defined (ACE_HAS_WINCE) +# include "ace/Proactor.h" +#endif /* !ACE_HAS_WINCE */ #include "ace/Reactor.h" #include "ace/Thread_Manager.h" @@ -547,7 +549,9 @@ ACE_Service_Config::close_singletons (void) ACE_TRACE ("ACE_Service_Config::close_singletons"); ACE_Reactor::close_singleton (); +#if !defined (ACE_HAS_WINCE) ACE_Proactor::close_singleton (); +#endif /* !ACE_HAS_WINCE */ ACE_Thread_Manager::close_singleton (); return 0; |