mincoreのヘルプ・マニュアル
日本語 英語
mincore --help
man mincore
MINCORE(2) Linux Programmer’s Manual MINCORE(2)
名前
mincore - ページがメモリ内にあるかどうかを判定する
書式
#include
#include
int mincore(void *addr, size_t length, unsigned char *vec);
glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):
mincore(): _BSD_SOURCE || _SVID_SOURCE
説明
mincore() は、呼び出し元プロセスの仮想メモリのページがコア (RAM) 内に存
在し、ページ参照時にディスクアクセス (ページ・フォールト) を起こさな い
か ど う か を 示すベクトルを返す。カーネルは、アドレス addr から始まる
length バイトの範囲のページに関する存在情報を返す。
addr 引き数はシステムのページサイズの倍数でなければならない。 length 引
き 数はページサイズの倍数である必要はないが、ページ全体に関する存在情報
が返されるので、事実上 length はページサイズの倍数に切り上げられるこ と
に なる。ページサイズ (PAGE_SIZE) は sysconf(_SC_PAGESIZE) を使って入手
できる。
vec 引き数は、少なくとも (length+PAGE_SIZE-1) / PAGE_SIZE バイトが格 納
で きる配列を指していなければならない。この呼び出しが返るとき、各バイト
の最下位ビットは、対応するページがメモリ内にそのとき存在すればセット さ
れ 、そうでない場合はクリアされる (各バイトのその他のビットは未定義であ
り、これらのビットは将来の使用にそなえて予約されている)。もちろん、 vec
で 返された情報はスナップショットでしかない。メモリ内にロックされていな
いページは、任意の時点でメモリ内に入ったり出たりでき、この呼び出しが 返
るときには vec の内容はすでに古くなっているかもしれない。
返り値
成 功 し た 場 合、 mincore() は 0 を返す。エラーの場合は -1 を返して、
errno を適切な値に設定する。
エラー
EAGAIN カーネルが一時的にリソースを使い果たしている。
EFAULT vec が無効なアドレスを指している。
EINVAL addr がページサイズの倍数でない。
ENOMEM length が (TASK_SIZE - addr) より大きい。 (length に負の値が指定
された場合、その値が大きな符号なし整数として解釈されるために起こ
ることがある。) Linux 2.6.11 以前では、この条件の場合は エ ラ ー
EINVAL が返されていた。
ENOMEM addr から addr + length の間にマップされていないメモリがあった。
バージョン
Linux 2.3.99pre1 と glibc 2.2 から利用可能である。
準拠
mincore() は POSIX.1-2001 に記述されておらず、全ての Unix 実装で利用 可
能であるわけではない。
バグ
カ ーネル 2.6.21 より前は、 mincore() は、 MAP_PRIVATE マッピングや非線
形マッピング (remap_file_pages(2) を使って作成される) について正しい 情
報を返さなかった。
関連項目
mlock(2), mmap(2)
Linux 2008-04-22 MINCORE(2)
MINCORE(2) Linux Programmer’s Manual MINCORE(2)
NAME
mincore - determine whether pages are resident in memory
SYNOPSIS
#include
#include
int mincore(void *addr, size_t length, unsigned char *vec);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
mincore(): _BSD_SOURCE || _SVID_SOURCE
DESCRIPTION
mincore() returns a vector that indicates whether pages of the calling
process’s virtual memory are resident in core (RAM), and so will not
cause a disk access (page fault) if referenced. The kernel returns
residency information about the pages starting at the address addr, and
continuing for length bytes.
The addr argument must be a multiple of the system page size. The
length argument need not be a multiple of the page size, but since res-
idency information is returned for whole pages, length is effectively
rounded up to the next multiple of the page size. One may obtain the
page size (PAGE_SIZE) using sysconf(_SC_PAGESIZE).
The vec argument must point to an array containing at least
(length+PAGE_SIZE-1) / PAGE_SIZE bytes. On return, the least signifi-
cant bit of each byte will be set if the corresponding page is cur-
rently resident in memory, and be clear otherwise. (The settings of
the other bits in each byte are undefined; these bits are reserved for
possible later use.) Of course the information returned in vec is only
a snapshot: pages that are not locked in memory can come and go at any
moment, and the contents of vec may already be stale by the time this
call returns.
RETURN VALUE
On success, mincore() returns zero. On error, -1 is returned, and
errno is set appropriately.
ERRORS
EAGAIN kernel is temporarily out of resources.
EFAULT vec points to an invalid address.
EINVAL addr is not a multiple of the page size.
ENOMEM length is greater than (TASK_SIZE - addr). (This could occur if
a negative value is specified for length, since that value will
be interpreted as a large unsigned integer.) In Linux 2.6.11
and earlier, the error EINVAL was returned for this condition.
ENOMEM addr to addr + length contained unmapped memory.
VERSIONS
Available since Linux 2.3.99pre1 and glibc 2.2.
CONFORMING TO
mincore() is not specified in POSIX.1-2001, and it is not available on
all Unix implementations.
BUGS
Before kernel 2.6.21, mincore() did not return correct information for
MAP_PRIVATE mappings, or for non-linear mappings (established using
remap_file_pages(2)).
SEE ALSO
mlock(2), mmap(2)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
Linux 2008-04-22 MINCORE(2)