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.i18
1 files changed, 18 insertions, 0 deletions
diff --git a/ace/FIFO_Send.i b/ace/FIFO_Send.i
new file mode 100644
index 00000000000..5785229f167
--- /dev/null
+++ b/ace/FIFO_Send.i
@@ -0,0 +1,18 @@
+/* -*- C++ -*- */
+// $Id$
+
+// FIFO_Send.i
+
+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);
+}
+
+inline ssize_t
+ACE_FIFO_Send::send_n (const void *buf, size_t n)
+{
+ ACE_TRACE ("ACE_FIFO_Send::send_n");
+ return ACE::send_n (this->get_handle (), buf, n);
+}