diff options
Diffstat (limited to 'ace/Mem_Map.i')
-rw-r--r-- | ace/Mem_Map.i | 10 |
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. |