summaryrefslogtreecommitdiff
path: root/ACE/ace/Malloc_Base.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Malloc_Base.h')
-rw-r--r--ACE/ace/Malloc_Base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Malloc_Base.h b/ACE/ace/Malloc_Base.h
index 0104acdda4b..eb992bdd26a 100644
--- a/ACE/ace/Malloc_Base.h
+++ b/ACE/ace/Malloc_Base.h
@@ -135,13 +135,13 @@ public:
/**
* Change the protection of the pages of the mapped region to <prot>
- * starting at <this->base_addr_> up to <len> bytes. If <len> == -1
+ * starting at <this->base_addr_> up to @a len bytes. If @a len == -1
* then change protection of all pages in the mapped region.
*/
virtual int protect (ssize_t len = -1, int prot = PROT_RDWR) = 0;
/// Change the protection of the pages of the mapped region to <prot>
- /// starting at <addr> up to <len> bytes.
+ /// starting at <addr> up to @a len bytes.
virtual int protect (void *addr, size_type len, int prot = PROT_RDWR) = 0;
#if defined (ACE_HAS_MALLOC_STATS)