summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch12.t
diff options
context:
space:
mode:
Diffstat (limited to 'doc/posix1003.1/ch12.t')
-rw-r--r--doc/posix1003.1/ch12.t44
1 files changed, 44 insertions, 0 deletions
diff --git a/doc/posix1003.1/ch12.t b/doc/posix1003.1/ch12.t
index 1342d17ab7..0b92c83fe8 100644
--- a/doc/posix1003.1/ch12.t
+++ b/doc/posix1003.1/ch12.t
@@ -7,15 +7,59 @@
@c
@chapter Memory Management
+
@section Memory Locking Functions
+
@subsection Lock/Unlock the Address Space of a Process
+
+@example
+mlockall()
+munlockall()
+@end example
+
@subsection Lock/Unlock a Rand of Process Address Space
+
+@example
+mlock()
+munlock()
+@end example
+
@section Memory Mapping Functions
+
@subsection Map Process Addresses to a Memory Object
+
+@example
+mmap()
+@end example
+
@subsection Unmap Previously Mapped Addresses
+
+@example
+munmap()
+@end example
+
@subsection Change Memory Protection
+
+@example
+mprotect()
+@end example
+
@subsection Memory Object Synchronization
+
+@example
+msync()
+@end example
+
@section Shared Memory Functions
+
@subsection Open a Shared Memory Object
+
+@example
+shm_open()
+@end example
+
@subsection Remove a Shared Memory Object
+@example
+shm_unlink()
+@end example