summaryrefslogtreecommitdiff
path: root/ace/FIFO.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO.h')
-rw-r--r--ace/FIFO.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/ace/FIFO.h b/ace/FIFO.h
index 066e3e98035..1b88db74a1d 100644
--- a/ace/FIFO.h
+++ b/ace/FIFO.h
@@ -1,4 +1,4 @@
-// -*- C++ -*-
+/* -*- C++ -*- */
//==========================================================================
/**
@@ -24,8 +24,6 @@
#include "ace/IPC_SAP.h"
#include "ace/os_include/os_limits.h"
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
/**
* @class ACE_FIFO
*
@@ -41,7 +39,7 @@ class ACE_Export ACE_FIFO : public ACE_IPC_SAP
public:
/// Open up the named pipe on the <rendezvous> in accordance with the
/// flags.
- int open (const ACE_TCHAR *rendezvous, int flags, mode_t perms,
+ int open (const ACE_TCHAR *rendezvous, int flags, int perms,
LPSECURITY_ATTRIBUTES sa = 0);
/// Close down the ACE_FIFO without removing the rendezvous point.
@@ -67,7 +65,7 @@ protected:
/// Open up the named pipe on the <rendezvous> in accordance with the
/// flags.
- ACE_FIFO (const ACE_TCHAR *rendezvous, int flags, mode_t perms,
+ ACE_FIFO (const ACE_TCHAR *rendezvous, int flags, int perms,
LPSECURITY_ATTRIBUTES sa = 0);
private:
@@ -75,8 +73,6 @@ private:
ACE_TCHAR rendezvous_[MAXPATHLEN + 1];
};
-ACE_END_VERSIONED_NAMESPACE_DECL
-
#if defined (__ACE_INLINE__)
#include "ace/FIFO.inl"
#endif /* __ACE_INLINE__ */