aio_suspendのヘルプ・マニュアル
日本語 英語
aio_suspend --help
man aio_suspend
AIO_SUSPEND(3) Linux Programmer’s Manual AIO_SUSPEND(3)
名前
aio_suspend - 非同期 I/O 操作またはタイムアウトを待つ
書式
#include
int aio_suspend(const struct aiocb * const cblist[],
int n, const struct timespec *timeout);
-lrt でリンクする。
説明
aio_suspend() 関数は、長さ n のリスト cblist に含まれる非同期 I/O リク
エストのうち少なくとも 1 つが完了するか、シグナルが配送されるか、 time-
out が NULL でなく、かつその時間が過ぎるまで、呼び出したプロセスを停止
(suspend) する。
リストの各アイテムは、NULL (これは無 視 さ れ る) か 、 aio_read(3),
aio_write(3), lio_listio(3) を使って I/O が開始された制御ブロックへのポ
インタでなければならない。
CLOCK_MONOTONIC がサポートされる場合、このクロックを使ってタイムアウ ト
の間隔が計測される。
返り値
指示されたリクエストの 1 つが完了した後にこの関数が返る場合は、0 を返す
。それ以外の場合は -1 を返して、 errno を適切に設定する。
エラー
EAGAIN 指示された操作のどれも完了しないうちに、この呼び出しがタイムアウ
トによって終了させられた。
EINTR この呼び出しがシグナルによって終了させられた。 signal(7) 参照。
(このシグナルは、完了を待っていた操作のいずれかの完了シグナル の
可能性もある。)
準拠
POSIX.1-2001.
注意
時 間間隔が 0 であることを指定する NULL ではない timeout を使って、ポー
リングを行うこともできる。
関連項目
aio_cancel(3), aio_error(3), aio_fsync(3), aio_read(3), aio_return(3),
aio_write(3), time(7)
2003-11-14 AIO_SUSPEND(3)
AIO_SUSPEND(3) Linux Programmer’s Manual AIO_SUSPEND(3)
NAME
aio_suspend - wait for asynchronous I/O operation or timeout
SYNOPSIS
#include
int aio_suspend(const struct aiocb * const cblist[],
int n, const struct timespec *timeout);
Link with -lrt.
DESCRIPTION
The aio_suspend() function suspends the calling process until at least
one of the asynchronous I/O requests in the list cblist of length n
have completed, a signal is delivered, or timeout is not NULL and the
time interval it indicates has passed.
Each item in the list must either be NULL (and then is ignored), or a
pointer to a control block on which I/O was initiated using
aio_read(3), aio_write(3), or lio_listio(3).
If CLOCK_MONOTONIC is supported, this clock is used to measure the
timeout interval.
RETURN VALUE
If this function returns after completion of one of the indicated
requests, it returns 0. Otherwise it returns -1 and sets errno appro-
priately.
ERRORS
EAGAIN The call was ended by timeout, before any of the indicated oper-
ations had completed.
EINTR The call was ended by signal; see signal(7). (Possibly the com-
pletion signal of one of the operations we were waiting for.)
CONFORMING TO
POSIX.1-2001.
NOTES
One can achieve polling by using a non-NULL timeout that specifies a
zero time interval.
SEE ALSO
aio_cancel(3), aio_error(3), aio_fsync(3), aio_read(3), aio_return(3),
aio_write(3), time(7)
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/.
2003-11-14 AIO_SUSPEND(3)