Query: mincore
OS: mojave
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MINCORE(2) BSD System Calls Manual MINCORE(2)NAMEmincore -- determine residency of memory pagesSYNOPSIS#include <sys/types.h> #include <sys/mman.h> int mincore(caddr_t addr, size_t len, char *vec);DESCRIPTIONThe mincore() system call allows a process to obtain information about whether pages are core resident. The current core residency of the pages is returned in the character array vec. For each entry in the character array vec, the following bit values may be set depending upon the state of the page: MINCORE_INCORE 0x1 /* Page is incore */ MINCORE_REFERENCED 0x2 /* Page has been referenced by us */ MINCORE_MODIFIED 0x4 /* Page has been modified by us */ MINCORE_REFERENCED_OTHER 0x8 /* Page has been referenced */ MINCORE_MODIFIED_OTHER 0x10 /* Page has been modified */RETURN VALUESUpon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and errno is set to indicate the error.ERRORS[EINVAL] addr is not a valid address for user mode. [EFAULT] an error occurred trying to copy to the output character array vec.SEE ALSOmadvise(2), minherit(2), mlock(2), mprotect(2), msync(2), munmap(2)HISTORYThe mincore() function first appeared in 4.4BSD.BSDJune 9, 1993 BSD
Related Man Pages |
---|
mincore(2) - opensolaris |
mincore(2) - debian |
mincore(2) - centos |
mincore(2) - osx |
mincore(2) - freebsd |
Similar Topics in the Unix Linux Community |
---|
High Page Faults |
map Page Down and Page up to ] and [ |
Excessive Page INs |
Load Averages on Home Page for Admins, Mods, Underground |
Dealing with geany core |