OSDN Git Service

(split) LDP: Release pages for LDP v3.39.
[linuxjm/LDP_man-pages.git] / release / man3 / aio_error.3
1 .\" Copyright (c) 2003 Andries Brouwer (aeb@cwi.nl)
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" The GNU General Public License's references to "object code"
9 .\" and "executables" are to be interpreted as the output of any
10 .\" document formatting or typesetting system, including
11 .\" intermediate and printed output.
12 .\"
13 .\" This manual is distributed in the hope that it will be useful,
14 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
15 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 .\" GNU General Public License for more details.
17 .\"
18 .\" You should have received a copy of the GNU General Public
19 .\" License along with this manual; if not, write to the Free
20 .\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
21 .\" USA.
22 .\"
23 .\"*******************************************************************
24 .\"
25 .\" This file was generated with po4a. Translate the source file.
26 .\"
27 .\"*******************************************************************
28 .TH AIO_ERROR 3 2010\-10\-03 "" "Linux Programmer's Manual"
29 .SH 名前
30 aio_error \- 非同期 I/O 操作のエラー状態を取得する
31 .SH 書式
32 \fB#include <aio.h>\fP
33 .sp
34 \fBint aio_error(const struct aiocb *\fP\fIaiocbp\fP\fB);\fP
35 .sp
36 \fI\-lrt\fP でリンクする。
37 .SH 説明
38 \fBaio_error\fP() 関数は \fIaiocbp\fP で指された制御ブロックでの非同期 I/O リクエス
39 トのエラー状態を返す。(\fIaiocb\fP 構造体の説明は \fBaio\fP(7) を参照)
40 .SH 返り値
41 この関数の返り値は以下のいずれかである。
42 .IP * 3
43 \fBEINPROGRESS\fP (リクエストがまだ完了していない場合)
44 .IP *
45 \fBECANCELED\fP (リクエストがキャンセルされた場合)
46 .IP *
47 0 (リクエストが正常に完了した場合)
48 .IP *
49 正のエラー (非同期 I/O 命令が失敗した場合)。
50 同期の \fBread\fP(2), \fBwrite\fP(2), \fBfsync\fP(2), \fBfdatasync\fP(2) の呼び出しの場合で
51 \fIerrno\fP 変数に格納されるのと同じ値になる。
52 .SH エラー
53 .TP 
54 \fBEINVAL\fP
55 \fIaiocbp\fP が、まだ返り値 (return status)  (\fBaio_return\fP(3)  を参照) が取得されていない非同期 I/O
56 リクエストの制御ブロックを指していない。
57 .SH バージョン
58 \fBaio_error\fP() 関数は glibc 2.1 以降で利用できる。
59 .SH 準拠
60 POSIX.1\-2001, POSIX.1\-2008.
61 .SH 例
62 \fBaio\fP(7) を参照。
63 .SH 関連項目
64 \fBaio_cancel\fP(3), \fBaio_fsync\fP(3), \fBaio_read\fP(3), \fBaio_return\fP(3),
65 \fBaio_suspend\fP(3), \fBaio_write\fP(3), \fBlio_listio\fP(3), \fBaio\fP(7)