summaryrefslogtreecommitdiff
path: root/ace/WFMO_Reactor.cpp
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-19 09:11:03 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-19 09:11:03 +0000
commitbb76358b0035d7ce30cb26e88df15c5647ed3f16 (patch)
treed9d4aef2560d545313423c06c21072e59b588927 /ace/WFMO_Reactor.cpp
parentb387da33a585455ea4ede00f8ce7b30ae86ba19a (diff)
downloadATCD-bb76358b0035d7ce30cb26e88df15c5647ed3f16.tar.gz
CE stuff.
Diffstat (limited to 'ace/WFMO_Reactor.cpp')
-rw-r--r--ace/WFMO_Reactor.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/ace/WFMO_Reactor.cpp b/ace/WFMO_Reactor.cpp
index 135091e3aa8..0ede7bfae7a 100644
--- a/ace/WFMO_Reactor.cpp
+++ b/ace/WFMO_Reactor.cpp
@@ -8,12 +8,12 @@
#include "ace/Timer_Heap.h"
#include "ace/Thread.h"
-#if defined (ACE_WIN32)
-
#if !defined (__ACE_INLINE__)
#include "ace/WFMO_Reactor.i"
#endif /* __ACE_INLINE__ */
+#if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)
+
#include "ace/Auto_Ptr.h"
ACE_WFMO_Reactor_Handler_Repository::ACE_WFMO_Reactor_Handler_Repository (ACE_WFMO_Reactor &wfmo_reactor)
@@ -868,8 +868,8 @@ ACE_WFMO_Reactor::open (size_t size,
// Open the handle repository
// Two additional handles for internal purposes
if (this->handler_rep_.open (size + 2) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n",
- "opening handler repository"),
+ ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"),
+ ASYS_TEXT ("opening handler repository")),
-1);
else
this->delete_handler_rep_ = 1;
@@ -879,15 +879,15 @@ ACE_WFMO_Reactor::open (size_t size,
// Open the notification handler
if (this->notify_handler_.open (*this, this->timer_queue_) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n",
- "opening notify handler "),
+ ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"),
+ ASYS_TEXT ("opening notify handler ")),
-1);
// Register for <wakeup_all_threads> event
if (this->register_handler (&this->wakeup_all_threads_handler_,
this->wakeup_all_threads_.handle ()) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n",
- "registering thread wakeup handler"),
+ ACE_ERROR_RETURN ((LM_ERROR, ASYS_TEXT ("%p\n"),
+ ASYS_TEXT ("registering thread wakeup handler")),
-1);
// Since we have added two handles into the handler repository,
@@ -1621,7 +1621,7 @@ ACE_WFMO_Reactor_Notify::handle_signal (int signum,
result = buffer->eh_->handle_exception (ACE_INVALID_HANDLE);
break;
default:
- ACE_ERROR ((LM_ERROR, "invalid mask = %d\n", buffer->mask_));
+ ACE_ERROR ((LM_ERROR, ASYS_TEXT ("invalid mask = %d\n"), buffer->mask_));
break;
}
if (result == -1)