OSDN Git Service

Retire LDP man-pages repository
[linuxjm/LDP_man-pages.git] / release / man2 / mmap2.2
diff --git a/release/man2/mmap2.2 b/release/man2/mmap2.2
deleted file mode 100644 (file)
index 5cd9b34..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-.\" Copyright (C) 2002, Michael Kerrisk
-.\"
-.\" %%%LICENSE_START(VERBATIM)
-.\" Permission is granted to make and distribute verbatim copies of this
-.\" manual provided the copyright notice and this permission notice are
-.\" preserved on all copies.
-.\"
-.\" Permission is granted to copy and distribute modified versions of this
-.\" manual under the conditions for verbatim copying, provided that the
-.\" entire resulting derived work is distributed under the terms of a
-.\" permission notice identical to this one.
-.\"
-.\" Since the Linux kernel and libraries are constantly changing, this
-.\" manual page may be incorrect or out-of-date.  The author(s) assume no
-.\" responsibility for errors or omissions, or for damages resulting from
-.\" the use of the information contained herein.  The author(s) may not
-.\" have taken the same level of care in the production of this manual,
-.\" which is licensed free of charge, as they might when working
-.\" professionally.
-.\"
-.\" Formatted or processed versions of this manual, if unaccompanied by
-.\" the source, must acknowledge the copyright and authors of this work.
-.\" %%%LICENSE_END
-.\"
-.\" Modified 31 Jan 2002, Michael Kerrisk <mtk.manpages@gmail.com>
-.\"    Added description of mmap2
-.\" Modified, 2004-11-25, mtk -- removed stray #endif in prototype
-.\"
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.\"
-.\" Japanese Version Copyright (c) 2002 Yuichi SATO
-.\"         all rights reserved.
-.\" Translated 2002-07-18, Yuichi SATO <ysato@h4.dion.ne.jp>
-.\" Updated & Modified 2003-09-06, Yuichi SATO <ysato444@yahoo.co.jp>
-.\" Updated 2006-01-18, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
-.\" Updated 2007-09-07, Akihiro MOTOKI, LDP v2.64
-.\" Updated 2012-05-01, Akihiro MOTOKI <amotoki@gmail.com>
-.\" Updated 2013-03-26, Akihiro MOTOKI <amotoki@gmail.com>
-.\" Updated 2013-07-22, Akihiro MOTOKI <amotoki@gmail.com>
-.\"
-.TH MMAP2 2 2014\-02\-25 Linux "Linux Programmer's Manual"
-.SH 名前
-mmap2 \- ファイルやデバイスをメモリーにマップする
-.SH 書式
-.nf
-\fB#include <sys/mman.h>\fP
-.sp
-\fBvoid *mmap2(void *\fP\fIaddr\fP\fB, size_t \fP\fIlength\fP\fB, int \fP\fIprot\fP\fB,\fP
-\fB            int \fP\fIflags\fP\fB, int \fP\fIfd\fP\fB, off_t \fP\fIpgoffset\fP\fB);\fP
-.fi
-.SH 説明
-これはおそらくあなたが興味のあるシステムコールではないだろう。代わりに
-\fBmmap\fP(2) を見るとよい。そのページにはこのシステムコールを起動する glibc の
-ラッパー関数についての説明がある。
-
-\fBmmap2\fP() システムコールは \fBmmap\fP(2) と同じインターフェースを提供する。ただ
-し、最後の引き数には、ファイルのオフセットを (\fBmmap\fP(2) が行っている、バイト
-単位ではなく) 4096 バイトを単位として指定する。 これにより、32 ビットの
-\fIoff_t\fP を使うアプリケーションで (2^44 バイトまでの) 大きなファイルをマップ
-できるようになる。
-.SH 返り値
-成功した場合、 \fBmmap2\fP()  はマップされた領域へのポインターを返す。 エラーの場合は \-1 が返されて、 \fIerrno\fP
-が適切に設定される。
-.SH エラー
-.TP 
-\fBEFAULT\fP
-ユーザー空間からデータを取得するときに問題があった。
-.TP 
-\fBEINVAL\fP
-(ページサイズが 4096 バイトでないプラットフォームにおいて)  \fIoffset\ *\ 4096\fP がシステムのページサイズの倍数ではない。
-.PP
-\fBmmap2\fP() は \fBmmap\fP(2) に載っているエラーを返すこともある。
-.SH バージョン
-\fBmmap2\fP()  は、Linux 2.3.31 以降で使用可能である。
-.SH 準拠
-このシステムコールは Linux 独自である。
-.SH 注意
-このシステムコールが存在するアーキテクチャーでは、glibc の \fBmmap\fP()  のラッパー関数は、 \fBmmap\fP(2)
-システムコールではなく、このシステムコール (\fBmmap2\fP(2))  を起動する。
-
-このシステムコールは x86\-64 には存在しない。
-
-.\" ia64 can have page sizes ranging from 4kB to 64kB.
-.\" On cris, it looks like the unit might also be the page size,
-.\" which is 8192 bytes. -- mtk, June 2007
-ia64 では、 \fIoffset\fP の単位は、実際にはシステムのページサイズであり、 4096 バイトではない。
-.SH 関連項目
-\fBgetpagesize\fP(2), \fBmmap\fP(2), \fBmremap\fP(2), \fBmsync\fP(2), \fBshm_open\fP(3)
-.SH この文書について
-この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.79 の一部
-である。プロジェクトの説明とバグ報告に関する情報は
-http://www.kernel.org/doc/man\-pages/ に書かれている。