Lines Matching +full:data +full:- +full:addr
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 Text, data and stack
38 called text, data and stack.
39 The text area is read-only and shared, while the data and stack
40 areas are private to the process. Both the data and stack areas may
43 addr = sbrk(incr);
44 result caddr_t addr; int incr;
46 changes the size of the data area by \fIincr\fP bytes and
47 returns the new end of the data area, while
49 addr = sstk(incr);
50 result caddr_t addr; int incr;
54 On the VAX the text and data areas are adjacent in the P0 region,
59 The system supports sharing of data between processes
66 /* protections are chosen from these bits, or-ed together */
88 #define MAP_FIXED 0x0020 /* map addr must be exactly as requested */
93 The cpu-dependent size of a page is returned by the
102 maddr = mmap(addr, len, prot, flags, fd, pos);
103 result caddr_t maddr; caddr_t addr; int *len, prot, flags, fd; off_t pos;
105 causes the pages starting at \fIaddr\fP and continuing
114 The \fIaddr\fP, \fIlen\fP, and \fIpos\fP parameters
128 mapping a regular file or character-special device memory,
131 for naming, and may be given as \-1 if no name
155 msync(addr, len);
156 caddr_t addr; int len;
160 If \fIlen\fP is 0, all modified pages within the region containing \fIaddr\fP
162 if \fIlen\fP is non-zero, only the pages containing \fIaddr\fP and \fIlen\fP
171 munmap(addr, len);
172 caddr_t addr; int len;
182 mprotect(addr, len, prot);
183 caddr_t addr; int len, prot;
194 madvise(addr, len, behav);
195 caddr_t addr; int len, behav;
211 mincore(addr, len, vec)
212 caddr_t addr; int len; result char *vec;
216 that the page is in-core.
234 If \fIwait\fP is true and the previous value is non-zero,
245 If the ``WANT'' flag is non-zero in the previous value,