summaryrefslogtreecommitdiff
path: root/ace/FIFO.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO.h')
-rw-r--r--ace/FIFO.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/FIFO.h b/ace/FIFO.h
index dc4ffac7f40..4d4ba938932 100644
--- a/ace/FIFO.h
+++ b/ace/FIFO.h
@@ -25,7 +25,8 @@ class ACE_Export ACE_FIFO : public ACE_IPC_SAP
// Abstract base class for UNIX FIFOs (a.k.a. Named Pipes).
{
public:
- int open (const char *rendezvous, int flags, int perms);
+ int open (const char *rendezvous, int flags, int perms,
+ LPSECURITY_ATTRIBUTES sa = 0);
// Open up the named pipe on the <rendezvous> in accordance with the
// flags.
@@ -50,7 +51,8 @@ protected:
ACE_FIFO (void);
// Default constructor.
- ACE_FIFO (const char *rendezvous, int flags, int perms);
+ ACE_FIFO (const char *rendezvous, int flags, int perms,
+ LPSECURITY_ATTRIBUTES sa = 0);
// Open up the named pipe on the <rendezvous> in accordance with the
// flags.