summaryrefslogtreecommitdiff
path: root/ace/FIFO.h
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-20 18:33:11 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-20 18:33:11 +0000
commit0b674e109bc2f9b86b428817fa921adf6bde90d6 (patch)
tree27270cb30bc40f06521f1755284179c868581ca7 /ace/FIFO.h
parente1b4cf4c52e6e689ab6c16c602951c928551e74c (diff)
downloadATCD-0b674e109bc2f9b86b428817fa921adf6bde90d6.tar.gz
Added LPSECURITY_ATTRIBUTES to a bunch of methods.
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.