summaryrefslogtreecommitdiff
path: root/ace/FIFO_Send.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO_Send.h')
-rw-r--r--ace/FIFO_Send.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/ace/FIFO_Send.h b/ace/FIFO_Send.h
index 45e02c87c38..125f1a42e15 100644
--- a/ace/FIFO_Send.h
+++ b/ace/FIFO_Send.h
@@ -25,8 +25,6 @@
#include "ace/os_include/os_fcntl.h"
#include "ace/Default_Constants.h"
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
/**
* @class ACE_FIFO_Send
*
@@ -42,13 +40,13 @@ public:
/// Open up a bytestream named pipe for writing.
ACE_FIFO_Send (const ACE_TCHAR *rendezvous,
int flags = O_WRONLY,
- mode_t perms = ACE_DEFAULT_FILE_PERMS,
+ int perms = ACE_DEFAULT_FILE_PERMS,
LPSECURITY_ATTRIBUTES sa = 0);
/// Open up a bytestream named pipe for writing.
int open (const ACE_TCHAR *rendezvous,
int flags = O_WRONLY,
- mode_t perms = ACE_DEFAULT_FILE_PERMS,
+ int perms = ACE_DEFAULT_FILE_PERMS,
LPSECURITY_ATTRIBUTES sa = 0);
/// Send <buf> of up to <len> bytes.
@@ -64,8 +62,6 @@ public:
ACE_ALLOC_HOOK_DECLARE;
};
-ACE_END_VERSIONED_NAMESPACE_DECL
-
#if defined (__ACE_INLINE__)
#include "ace/FIFO_Send.inl"
#endif /* __ACE_INLINE__ */