summaryrefslogtreecommitdiff
path: root/ACE/tests/Network_Adapters_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-16 18:40:12 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-16 18:40:12 +0000
commit1c2b427620803aeb60560008c733e4354978f08d (patch)
tree26b301e83e02c9da805d88a46ba8fe40f1ad93c5 /ACE/tests/Network_Adapters_Test.cpp
parent3b43904315fad23b73957024f90217303dd6dce3 (diff)
downloadATCD-1c2b427620803aeb60560008c733e4354978f08d.tar.gz
Thu Oct 16 18:39:00 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/tests/Network_Adapters_Test.cpp')
-rw-r--r--ACE/tests/Network_Adapters_Test.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/ACE/tests/Network_Adapters_Test.cpp b/ACE/tests/Network_Adapters_Test.cpp
index 0cecac17e20..f88d4f966ed 100644
--- a/ACE/tests/Network_Adapters_Test.cpp
+++ b/ACE/tests/Network_Adapters_Test.cpp
@@ -32,15 +32,14 @@
#include "ace/Reactor.h"
#include "ace/Timer_Queue.h"
#include "ace/OS_NS_string.h"
+#include "ace/OS_NS_signal.h"
#include "Network_Adapters_Test.h"
-
ACE_RCSID (tests,
Network_Adapters_Test,
"$Id$")
-
/**
* There are two major uses of the functionality:
*
@@ -821,7 +820,7 @@ Repeats_Handler::handle_timeout (ACE_Time_Value const &,
this->counter_++ ;
if (one_button_test && this->counter_ > 3)
{
- ::raise (SIGINT);
+ ACE_OS::raise (SIGINT);
}
if (this->check_handler_)
{
@@ -858,7 +857,7 @@ BOOL CtrlHandler(DWORD fdwCtrlType)
case CTRL_SHUTDOWN_EVENT:
case CTRL_CLOSE_EVENT:
case CTRL_LOGOFF_EVENT:
- ::raise (SIGINT);
+ ACE_OS::raise (SIGINT);
return TRUE;
// Pass other signals to the next handler.