aboutsummaryrefslogtreecommitdiff
path: root/include/apos/mem.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-05-28 20:01:58 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-05-28 20:01:58 +0300
commit013a27aec9370221e8afae188a8ed08ed2d406b0 (patch)
treeb2bec6ae390b944f86607f34fb10dc0b438191bd /include/apos/mem.h
parent8911a377da22e5a8ad5ca2a0443fbd935f572991 (diff)
downloadkmi-013a27aec9370221e8afae188a8ed08ed2d406b0.tar.gz
kmi-013a27aec9370221e8afae188a8ed08ed2d406b0.zip
continue documenting source
Diffstat (limited to 'include/apos/mem.h')
-rw-r--r--include/apos/mem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apos/mem.h b/include/apos/mem.h
index b6d76c1..1486400 100644
--- a/include/apos/mem.h
+++ b/include/apos/mem.h
@@ -48,11 +48,11 @@
__page((x) + BASE_PAGE_SIZE))
#define __bytes(x) (__addr(x))
-/** If memory region is used or not */
+/** Memory region is used. */
#define MR_USED (1 << 8)
-/** If memory region is shared */
+/** Memory region is shared. */
#define MR_SHARED (1 << 9)
-/** Owner of shared region */
+/** Owner of shared region. */
#define MR_OWNED (1 << 10)
/** Copy on write. */
#define MR_COW (1 << 11)