diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-12 23:40:52 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-12 23:40:52 +0000 |
commit | aeba65a2d9c65dfb0c17fb120ed162fc4f0c87cd (patch) | |
tree | 210e9ebe8ca873a27d012b8807895afd4e338667 /ace/Mem_Map.h | |
parent | 896ebcb37a6f445fe0231284acacafd70959ad39 (diff) | |
download | ATCD-aeba65a2d9c65dfb0c17fb120ed162fc4f0c87cd.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Mem_Map.h')
-rw-r--r-- | ace/Mem_Map.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ace/Mem_Map.h b/ace/Mem_Map.h index f08578d8f64..2dfbfce7c15 100644 --- a/ace/Mem_Map.h +++ b/ace/Mem_Map.h @@ -38,7 +38,7 @@ public: int prot = PROT_RDWR, int share = ACE_MAP_PRIVATE, void *addr = 0, - off_t pos = 0, + off_t offset = 0, LPSECURITY_ATTRIBUTES sa = 0); // Map a file from an open file descriptor <handle>. This function // will lookup the length of the file if it is not given. @@ -50,7 +50,7 @@ public: int prot = PROT_RDWR, int share = ACE_MAP_PRIVATE, void *addr = 0, - off_t pos = 0, + off_t offset = 0, LPSECURITY_ATTRIBUTES sa = 0); // Map a file specified by <file_name>. @@ -59,7 +59,7 @@ public: int prot = PROT_RDWR, int share = ACE_MAP_PRIVATE, void *addr = 0, - off_t pos = 0, + off_t offset = 0, LPSECURITY_ATTRIBUTES sa = 0); // Map a file from an open file descriptor <handle>. This function // will lookup the length of the file if it is not given. @@ -68,7 +68,7 @@ public: int prot = PROT_RDWR, int share = ACE_MAP_PRIVATE, void *addr = 0, - off_t pos = 0, + off_t offset = 0, LPSECURITY_ATTRIBUTES sa = 0); // Remap the file associated with <handle_>. @@ -79,7 +79,7 @@ public: int prot = PROT_RDWR, int share = ACE_MAP_PRIVATE, void *addr = 0, - off_t pos = 0, + off_t offset = 0, LPSECURITY_ATTRIBUTES sa = 0); // Map a file specified by <filename>. @@ -186,7 +186,7 @@ private: int prot = PROT_RDWR, int share = MAP_SHARED, void *addr = 0, - off_t pos = 0, + off_t offset = 0, LPSECURITY_ATTRIBUTES sa = 0); // This method does the dirty work of actually calling ::mmap to map // the file into memory. |