summaryrefslogtreecommitdiff
path: root/ace/WIN32_Proactor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/WIN32_Proactor.cpp')
-rw-r--r--ace/WIN32_Proactor.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/ace/WIN32_Proactor.cpp b/ace/WIN32_Proactor.cpp
index 56bd9ceb779..d4e50430e23 100644
--- a/ace/WIN32_Proactor.cpp
+++ b/ace/WIN32_Proactor.cpp
@@ -12,6 +12,8 @@
#include "ace/OS_NS_errno.h"
#include "ace/OS_NS_unistd.h"
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
/**
* @class ACE_WIN32_Wakeup_Completion
*
@@ -19,7 +21,7 @@
* ACE_Proactor interface to wake up all the threads blocking
* for completions.
*/
-class ACE_Export ACE_WIN32_Wakeup_Completion : public ACE_WIN32_Asynch_Result
+class ACE_WIN32_Wakeup_Completion : public ACE_WIN32_Asynch_Result
{
public:
@@ -710,7 +712,7 @@ ACE_WIN32_Proactor::post_completion (ACE_WIN32_Asynch_Result *result)
}
// If Proactor event is valid, signal it
- if (handle != ACE_INVALID_HANDLE
+ if (handle != ACE_INVALID_HANDLE
&& handle != 0)
ACE_OS::event_signal (&handle);
@@ -812,4 +814,6 @@ ACE_WIN32_Wakeup_Completion::complete (size_t /* bytes_transferred */,
handler->handle_wakeup ();
}
+ACE_END_VERSIONED_NAMESPACE_DECL
+
#endif /* ACE_WIN32 */