summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch12.t
blob: 4d9e59843a7187a30ab51f4f9e663d7b763caa8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@c
@c  COPYRIGHT (c) 1988-1999.
@c  On-Line Applications Research Corporation (OAR).
@c  All rights reserved.
@c
@c  $Id$
@c

@chapter Memory Management

@section Memory Locking Functions

@subsection Lock/Unlock the Address Space of a Process

@example
mlockall(), Function, Unimplemented
munlockall(), Function, Unimplemented
MCL_CURRENT, Constant, Unimplemented 
MCL_FUTURE, Constant,  Unimplemented
@end example

@subsection Lock/Unlock a Rand of Process Address Space

@example
mlock(), Function, Unimplemented
munlock(), Function, Unimplemented
@end example

@section Memory Mapping Functions

@subsection Map Process Addresses to a Memory Object

@example
mmap(), Function, Unimplemented
PROT_READ, Constant,  Unimplemented
PROT_WRITE, Constant,  Unimplemented
PROT_EXEC, Constant,  Unimplemented
PROT_NONE, Constant,  Unimplemented
MAP_SHARED, Constant,  Unimplemented
MAP_PRIVATE, Constant,  Unimplemented
MAP_FIXED, Constant,  Unimplemented
@end example

@subsection Unmap Previously Mapped Addresses

@example
munmap(), Function, Unimplemented
@end example

@subsection Change Memory Protection

@example
mprotect(), Function, Unimplemented
@end example

@subsection Memory Object Synchronization

@example
msync(), Function, Unimplemented, Unimplemented
MS_ASYNC, Constant, Unimplemented 
MS_SYNC, Constant,  Unimplemented
MS_INVALIDATE, Constant,  Unimplemented
@end example

@section Shared Memory Functions

@subsection Open a Shared Memory Object

@example
shm_open(), Function, Unimplemented
@end example

@subsection Remove a Shared Memory Object

@example
shm_unlink(), Function, Unimplemented
@end example