summaryrefslogtreecommitdiff
path: root/ace/Mem_Map.i
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/Mem_Map.i
parente1b4cf4c52e6e689ab6c16c602951c928551e74c (diff)
downloadATCD-0b674e109bc2f9b86b428817fa921adf6bde90d6.tar.gz
Added LPSECURITY_ATTRIBUTES to a bunch of methods.
Diffstat (limited to 'ace/Mem_Map.i')
-rw-r--r--ace/Mem_Map.i10
1 files changed, 6 insertions, 4 deletions
diff --git a/ace/Mem_Map.i b/ace/Mem_Map.i
index 6598146fbf6..6dae08d1373 100644
--- a/ace/Mem_Map.i
+++ b/ace/Mem_Map.i
@@ -24,10 +24,11 @@ ACE_Mem_Map::map (ACE_HANDLE handle,
int prot,
int share,
void *addr,
- off_t pos)
+ off_t pos,
+ LPSECURITY_ATTRIBUTES sa)
{
ACE_TRACE ("ACE_Mem_Map::map");
- return this->map_it (handle, len, prot, share, addr, pos);
+ return this->map_it (handle, len, prot, share, addr, pos, sa);
}
// Remap the file associated with <this->handle_>.
@@ -37,11 +38,12 @@ ACE_Mem_Map::map (int len,
int prot,
int share,
void *addr,
- off_t pos)
+ off_t pos,
+ LPSECURITY_ATTRIBUTES sa)
{
ACE_TRACE ("ACE_Mem_Map::map");
return this->map_it (this->handle (), len, prot,
- share, addr, pos);
+ share, addr, pos, sa);
}
// This operator passes back the starting address of the mapped file.