summaryrefslogtreecommitdiffstats
path: root/man2/mincore.2
diff options
context:
space:
mode:
Diffstat (limited to 'man2/mincore.2')
-rw-r--r--man2/mincore.216
1 files changed, 8 insertions, 8 deletions
diff --git a/man2/mincore.2 b/man2/mincore.2
index 9ffca56..efba7fc 100644
--- a/man2/mincore.2
+++ b/man2/mincore.2
@@ -11,7 +11,7 @@
.\" after message from <gordon.jin@intel.com>
.\" 2007-01-08 mtk, rewrote various parts
.\"
-.TH mincore 2 2023-03-30 "Linux man-pages 6.05.01"
+.TH mincore 2 2023-10-31 "Linux man-pages 6.7"
.SH NAME
mincore \- determine whether pages are resident in memory
.SH LIBRARY
@@ -20,15 +20,15 @@ Standard C library
.SH SYNOPSIS
.nf
.B #include <sys/mman.h>
-.PP
+.P
.BI "int mincore(void " addr [. length "], size_t " length ", unsigned char *" vec );
.fi
-.PP
+.P
.RS -4
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.RE
-.PP
+.P
.BR mincore ():
.nf
Since glibc 2.19:
@@ -47,7 +47,7 @@ starting at the address
and continuing for
.I length
bytes.
-.PP
+.P
The
.I addr
argument must be a multiple of the system page size.
@@ -61,7 +61,7 @@ One may obtain the page size
.RB ( PAGE_SIZE )
using
.IR sysconf(_SC_PAGESIZE) .
-.PP
+.P
The
.I vec
argument must point to an array containing at least
@@ -122,9 +122,9 @@ None.
.SH HISTORY
Linux 2.3.99pre1,
glibc 2.2.
-.PP
+.P
First appeared in 4.4BSD.
-.PP
+.P
NetBSD, FreeBSD, OpenBSD, Solaris 8,
AIX 5.1, SunOS 4.1.
.SH BUGS