mprotect - control the protection of pages
Standard C Library (libc, -lc)
#include <sys/mman.h>
int
mprotect(void *addr, size_t len, int prot);
The mprotect() system call changes the specified pages to have protection
prot. Not all implementations will guarantee protection on a page basis;
the granularity of protection changes may be as large as an entire
region.
madvise(2), mincore(2), msync(2), munmap(2)
The mprotect() function first appeared in 4.4BSD.
BSD June 9, 1993 BSD
[ Back ] |