summaryrefslogtreecommitdiff
path: root/protocols/ace/RMCast/Socket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/ace/RMCast/Socket.cpp')
-rw-r--r--protocols/ace/RMCast/Socket.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/protocols/ace/RMCast/Socket.cpp b/protocols/ace/RMCast/Socket.cpp
index 8f433f7c6ed..448d4692e81 100644
--- a/protocols/ace/RMCast/Socket.cpp
+++ b/protocols/ace/RMCast/Socket.cpp
@@ -3,8 +3,6 @@
// cvs-id : $Id$
#include "ace/OS_Memory.h"
-#include "ace/OS_NS_stdio.h"
-#include "ace/OS_NS_stdlib.h"
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_unistd.h"
#include "ace/OS_NS_sys_time.h" // gettimeofday
@@ -185,7 +183,7 @@ namespace ACE_RMCast
Message_ptr m;
if (queue_.dequeue_head (m) == -1)
- ACE_OS::abort ();
+ abort ();
if (queue_.is_empty ())
@@ -198,8 +196,8 @@ namespace ACE_RMCast
if (signal_pipe_.recv (&c, 1) != 1)
{
- ACE_OS::perror ("read: ");
- ACE_OS::abort ();
+ perror ("read: ");
+ abort ();
}
}
}
@@ -254,10 +252,10 @@ namespace ACE_RMCast
Message_ptr m;
if (queue_.dequeue_head (m) == -1)
- ACE_OS::abort ();
+ abort ();
if (queue_.enqueue_head (m) == -1)
- ACE_OS::abort ();
+ abort ();
if (m->find (NoData::id) != 0)
{
@@ -317,7 +315,7 @@ namespace ACE_RMCast
if (signal_pipe_.send (&c, 1) != 1)
{
// perror ("write: ");
- ACE_OS::abort ();
+ abort ();
}
}