OSDN Git Service

(split) LDP: Update releases based on LDP 3.52 release
[linuxjm/LDP_man-pages.git] / release / man3 / posix_memalign.3
1 .\" Copyright (c) 2001 by John Levon <moz@compsoc.man.ac.uk>
2 .\" Based in part on GNU libc documentation.
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .\" 2001-10-11, 2003-08-22, aeb, added some details
27 .\" 2012-03-23, Michael Kerrisk <mtk.manpages@mail.com>
28 .\"     Document pvalloc() and aligned_alloc()
29 .\"*******************************************************************
30 .\"
31 .\" This file was generated with po4a. Translate the source file.
32 .\"
33 .\"*******************************************************************
34 .TH POSIX_MEMALIGN 3 2012\-03\-23 GNU "Linux Programmer's Manual"
35 .SH 名前
36 posix_memalign, aligned_alloc, memalign, valloc, pvalloc \- アラインメント
37 されたメモリの割り当てを行う
38 .SH 書式
39 .nf
40 \fB#include <stdlib.h>\fP
41 .sp
42 \fBint posix_memalign(void **\fP\fImemptr\fP\fB, size_t \fP\fIalignment\fP\fB, size_t \fP\fIsize\fP\fB);\fP
43 \fBvoid *aligned_alloc(size_t \fP\fIalignment\fP\fB, size_t \fP\fIsize\fP\fB);\fP
44 \fBvoid *valloc(size_t \fP\fIsize\fP\fB);\fP
45 .sp
46 \fB#include <malloc.h>\fP
47 .sp
48 \fBvoid *memalign(size_t \fP\fIalignment\fP\fB, size_t \fP\fIsize\fP\fB);\fP
49 \fBvoid *pvalloc(size_t \fP\fIsize\fP\fB);\fP
50 .fi
51 .sp
52 .in -4n
53 glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
54 .in
55 .sp
56 .ad l
57 \fBposix_memalign\fP(): _POSIX_C_SOURCE\ >=\ 200112L || _XOPEN_SOURCE\ >=\ 600
58 .sp
59 \fBaligned_alloc\fP(): _ISOC11_SOURCE
60 .sp
61 \fBvalloc\fP():
62 .br
63 .PD 0
64 .RS 4
65 .TP  4
66 glibc 2.12 以降:
67 .nf
68 _BSD_SOURCE ||
69     (_XOPEN_SOURCE\ >=\ 500 ||
70         _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED) &&
71     !(_POSIX_C_SOURCE\ >=\ 200112L || _XOPEN_SOURCE\ >=\ 600)
72 .br
73 .fi
74 .TP 
75 glibc 2.12 より前:
76 _BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500 || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
77 .ad b
78 .br
79 ((非標準の) ヘッダファイル \fI<malloc.h>\fP も
80 \fBvalloc\fP() の宣言も公開する。機能検査マクロは不要である。
81 .RE
82 .PD
83 .SH 説明
84 .\" glibc does this:
85 The function \fBposix_memalign\fP()  allocates \fIsize\fP bytes and places the
86 address of the allocated memory in \fI*memptr\fP.  The address of the allocated
87 memory will be a multiple of \fIalignment\fP, which must be a power of two and
88 a multiple of \fIsizeof(void\ *)\fP.  If \fIsize\fP is 0, then \fBposix_memalign\fP()
89 returns either NULL, or a unique pointer value that can later be
90 successfully passed to \fBfree\fP(3).
91
92 .\" The behavior of memalign() for size==0 is as for posix_memalign()
93 .\" but no standards govern this.
94 廃止された関数である \fBmemalign\fP() は、 \fIsize\fP バイトのメモリを割り当て、
95 割り当てられたメモリへのポインタを返す。 メモリのアドレスは \fIalignment\fP
96 の倍数になっているはずである。 \fIalignment\fP は 2 のべき乗でなければならない。
97
98 関数 \fBaligned_alloc\fP() は \fBmemalign\fP() と同じだが、\fIsize\fP が \fIalignment\fP
99 の倍数でなければならないという追加の制限がある点が異なる。
100
101 廃止された関数である \fBvalloc\fP()  は \fIsize\fP バイトのメモリを割り当て、割り当てられたメモリへのポインタを返す。
102 メモリのアドレスはページサイズの倍数になっているはずである。 これは \fImemalign(sysconf(_SC_PAGESIZE),size)\fP
103 と等価である。
104
105 廃止された関数 \fBpvalloc\fP() は \fBvalloc\fP() と同様だが、
106 割り当てられるサイズがシステムのページサイズの倍数に切り上げられる。
107
108 これらの関数はいずれもメモリのゼロクリアを行わない。
109 .SH 返り値
110 \fBaligned_alloc\fP(), \fBmemalign\fP(), \fBvalloc\fP(), \fBpvalloc\fP() は割り当てられた
111 メモリへのポインタを返す。 割り当てに失敗した場合は NULL を返す。
112
113 \fBposix_memalign\fP()  は成功した場合は 0 を返し、 失敗した場合は次のセクションに記載されたエラー値のいずれかを返す。
114 \fIerrno\fP はセットされないことに注意すること。
115 .SH エラー
116 .TP 
117 \fBEINVAL\fP
118 The \fIalignment\fP argument was not a power of two, or was not a multiple of
119 \fIsizeof(void\ *)\fP.
120 .TP 
121 \fBENOMEM\fP
122 割り当て要求を満たすのに十分なメモリがなかった。
123 .SH バージョン
124 関数 \fBmemalign\fP(), \fBvalloc\fP(), \fBpvalloc\fP() は
125 すべての Linux libc ライブラリで使用可能である。
126
127 関数 \fBaligned_alloc\fP() は glibc バージョン 2.16 で追加された。
128
129 関数 \fBposix_fallocate\fP() は glibc 2.1.91 以降で利用可能である。
130 .SH 準拠
131 関数 \fBvalloc\fP() は 3.0BSD で登場した。4.3BSD では廃止されたと記載されており、
132 SUSv2 では過去の名残だと記載されている。 POSIX.1\-2001 には存在しない。
133
134 関数 \fBpvalloc\fP() は GNU による拡張である。
135
136 関数 \fBmemalign\fP() は SunOS 4.1.3 で登場したが、4.4BSD にはない。
137
138 関数 \fBposix_memalign\fP() は POSIX.1d に由来する。
139
140 .\"
141 関数 \fIaligned_alloc\fP() は C11 標準で規定されている。
142 .SS ヘッダ
143 \fBposix_memalign\fP()  の宣言を \fI<stdlib.h>\fP で行うことに関しては、 皆の意見が一致している。
144
145 いくつかのシステムでは、 \fBmemalign\fP()  は \fI<malloc.h>\fP ではなく
146 \fI<stdlib.h>\fP で宣言されている。
147
148 SUSv2 によると、 \fBvalloc\fP() は \fI<stdlib.h>\fP で宣言される。 libc4,5
149 や glibc では \fI<malloc.h>\fP で宣言されており、 さらに適切な機能検査
150 マクロが定義された場合には \fI<stdlib.h>\fP でも宣言される(上記を参照)。
151 .SH 注意
152 多くのシステムでは、アラインメントに関して制限がある。例えば、 ブロックデバイスに対するダイレクト I/O に使用するバッファには
153 アラインメントに関する制限がある。 POSIX では、どんなアラインメントが必要かを知るために
154 \fIpathconf(path,_PC_REC_XFER_ALIGN)\fP コールを規定している。ここで \fBposix_memalign\fP()
155 を使うと、この必要条件を満たすことができる。
156
157 \fBposix_memalign\fP() は \fIalignment\fP が上で詳細に述べた必要条件を満たすか
158 どうかを確かめる。 \fBmemalign\fP() は \fIalignment\fP 引き数が正しいかどうかの
159 確認を行わないかもしれない。
160
161 .\" Other systems allow passing the result of
162 .\" .IR valloc ()
163 .\" to
164 .\" .IR free (3),
165 .\" but not to
166 .\" .IR realloc (3).
167 POSIX では \fBposix_memalign\fP() によって獲得したメモリは \fBfree\fP(3) を
168 使って解放することができる必要がある。 いくつかのシステムでは
169 \fBmemalign\fP() や\fBvalloc\fP() で割り当てられたメモリを再利用する手段が
170 提供されていない(なぜなら \fBfree\fP(3) に渡すことができるのは
171 \fBmalloc\fP(3) から受け取ったポインタだけだが、例えば \fBmemalign\fP() は
172 \fBmalloc\fP(3) を呼び出し、得た値をアラインメントしてしまうからである)。
173 glibc の実装では、 ここに述べた関数のいずれで獲得したメモリも
174 \fBfree\fP(3) で再利用することができる。
175
176 glibc の \fBmalloc\fP(3) は常に 8 バイトにアラインメントされたメモリアドレスを
177 返すので、ここで述べた関数が必要になるのは 8 バイトよりも大きなアラインメント
178 が必要な場合だけである。
179 .SH 関連項目
180 \fBbrk\fP(2), \fBgetpagesize\fP(2), \fBfree\fP(3), \fBmalloc\fP(3)
181 .SH この文書について
182 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.52 の一部
183 である。プロジェクトの説明とバグ報告に関する情報は
184 http://www.kernel.org/doc/man\-pages/ に書かれている。