summaryrefslogtreecommitdiff
path: root/ace/FIFO_Send.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO_Send.i')
-rw-r--r--ace/FIFO_Send.i7
1 files changed, 4 insertions, 3 deletions
diff --git a/ace/FIFO_Send.i b/ace/FIFO_Send.i
index 9b85feb9902..eb503d9b831 100644
--- a/ace/FIFO_Send.i
+++ b/ace/FIFO_Send.i
@@ -4,15 +4,16 @@
// FIFO_Send.i
#include "ace/ACE.h"
+#include "ace/OS_NS_unistd.h"
-ASYS_INLINE ssize_t
+ACE_INLINE ssize_t
ACE_FIFO_Send::send (const void *buf, size_t len)
{
ACE_TRACE ("ACE_FIFO_Send::send");
- return ACE_OS::write (this->get_handle (), (const char *) buf, len);
+ return ACE_OS::write (this->get_handle (), (const char *) buf, len);
}
-ASYS_INLINE ssize_t
+ACE_INLINE ssize_t
ACE_FIFO_Send::send_n (const void *buf, size_t n)
{
ACE_TRACE ("ACE_FIFO_Send::send_n");