diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-05-24 07:55:50 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-05-24 07:55:50 +0000 |
commit | c9ef547e6cb8a2d4fb74cc256c125482a18f0570 (patch) | |
tree | eaac20ba19d505bb98cc22857396b51d780bded5 /ACE/ace/Mem_Map.h | |
parent | 1334f93dda7ddb001d065692e887b4d31ed980c2 (diff) | |
download | ATCD-c9ef547e6cb8a2d4fb74cc256c125482a18f0570.tar.gz |
Thu May 24 07:54:55 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Mem_Map.h')
-rw-r--r-- | ACE/ace/Mem_Map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Mem_Map.h b/ACE/ace/Mem_Map.h index 157ecf796ac..903583c5512 100644 --- a/ACE/ace/Mem_Map.h +++ b/ACE/ace/Mem_Map.h @@ -152,19 +152,19 @@ public: int sync (void *addr, size_t len, int flags = MS_SYNC); /** - * Change the protection of the pages of the mapped region to <prot> + * Change the protection of the pages of the mapped region to @a prot * starting at <base_addr_> up to @a len bytes. */ int protect (size_t len, int prot = PROT_RDWR); /** - * Change the protection of all the pages of the mapped region to <prot> + * Change the protection of all the pages of the mapped region to @a prot * starting at <base_addr_>. */ int protect (int prot = PROT_RDWR); - /// Change the protection of the pages of the mapped region to <prot> - /// starting at <addr> up to @a len bytes. + /// Change the protection of the pages of the mapped region to @a prot + /// starting at @a addr up to @a len bytes. int protect (void *addr, size_t len, int prot = PROT_RDWR); /// Close and remove the file from the file system. |