summaryrefslogtreecommitdiff
path: root/ace/FIFO_Recv_Msg.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-06-21 21:18:43 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-06-21 21:18:43 +0000
commitb5f6bde478f3a0aecc6956a8ebdd815522078b1b (patch)
treed63d31d06a4549605f6a85d9719e1f84b2bd2e29 /ace/FIFO_Recv_Msg.cpp
parentd6d266b2f42bdc2ef1ddfaca63964232237fbe35 (diff)
downloadATCD-b5f6bde478f3a0aecc6956a8ebdd815522078b1b.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/FIFO_Recv_Msg.cpp')
-rw-r--r--ace/FIFO_Recv_Msg.cpp29
1 files changed, 21 insertions, 8 deletions
diff --git a/ace/FIFO_Recv_Msg.cpp b/ace/FIFO_Recv_Msg.cpp
index f2712048c08..879df61cb8e 100644
--- a/ace/FIFO_Recv_Msg.cpp
+++ b/ace/FIFO_Recv_Msg.cpp
@@ -15,15 +15,22 @@ ACE_FIFO_Recv_Msg::dump (void) const
ACE_FIFO_Recv::dump ();
}
-/* Note that persistent means "open fifo for writing, as well as reading."
- This ensures that the fifo never gets EOF, even if there aren't
- any writers at the moment! */
+// Note that persistent means "open FIFO for writing, as well as
+// reading." This ensures that the FIFO never gets EOF, even if there
+// aren't any writers at the moment!
int
-ACE_FIFO_Recv_Msg::open (const char *fifo_name, int flags, int perms, int persistent)
+ACE_FIFO_Recv_Msg::open (const char *fifo_name,
+ int flags,
+ int perms,
+ int persistent)
{
ACE_TRACE ("ACE_FIFO_Recv_Msg::open");
- return ACE_FIFO_Recv::open (fifo_name, flags, perms, persistent);
+
+ return ACE_FIFO_Recv::open (fifo_name,
+ flags,
+ perms,
+ persistent);
}
ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg (void)
@@ -31,10 +38,16 @@ ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg (void)
ACE_TRACE ("ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg");
}
-ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg (const char *fifo_name, int flags, int perms, int persistent)
+ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg (const char *fifo_name,
+ int flags,
+ int perms,
+ int persistent)
{
ACE_TRACE ("ACE_FIFO_Recv_Msg::ACE_FIFO_Recv_Msg");
- if (this->ACE_FIFO_Recv_Msg::open (fifo_name, flags, perms,
- persistent) == -1)
+
+ if (this->ACE_FIFO_Recv_Msg::open (fifo_name,
+ flags,
+ perms,
+ persistent) == -1)
ACE_ERROR ((LM_ERROR, "%p\n", "ACE_FIFO_Recv_Msg"));
}