summaryrefslogtreecommitdiff
path: root/ace/FIFO_Send_Msg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO_Send_Msg.cpp')
-rw-r--r--ace/FIFO_Send_Msg.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/ace/FIFO_Send_Msg.cpp b/ace/FIFO_Send_Msg.cpp
index f39c5d865e9..1575f7ae98c 100644
--- a/ace/FIFO_Send_Msg.cpp
+++ b/ace/FIFO_Send_Msg.cpp
@@ -11,8 +11,6 @@
ACE_RCSID(ace, FIFO_Send_Msg, "$Id$")
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
ACE_ALLOC_HOOK_DEFINE(ACE_FIFO_Send_Msg)
void
@@ -59,8 +57,8 @@ ACE_FIFO_Send_Msg::ACE_FIFO_Send_Msg (void)
int
ACE_FIFO_Send_Msg::open (const ACE_TCHAR *fifo_name,
- int flags,
- mode_t perms,
+ int flags,
+ int perms,
LPSECURITY_ATTRIBUTES sa)
{
ACE_TRACE ("ACE_FIFO_Send_Msg::open");
@@ -68,13 +66,11 @@ ACE_FIFO_Send_Msg::open (const ACE_TCHAR *fifo_name,
}
ACE_FIFO_Send_Msg::ACE_FIFO_Send_Msg (const ACE_TCHAR *fifo_name,
- int flags,
- mode_t perms,
+ int flags,
+ int perms,
LPSECURITY_ATTRIBUTES sa)
{
ACE_TRACE ("ACE_FIFO_Send_Msg::ACE_FIFO_Send_Msg");
if (this->ACE_FIFO_Send_Msg::open (fifo_name, flags, perms, sa) == -1)
ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("%p\n"), ACE_LIB_TEXT ("ACE_FIFO_Send_Msg")));
}
-
-ACE_END_VERSIONED_NAMESPACE_DECL