summaryrefslogtreecommitdiff
path: root/libaio-0.3.109/man/aio_error64.3
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2009-10-09 18:17:02 +0000
committer <>2013-09-20 15:53:04 +0000
commite6a27c468cae77ce26f6aa924b22bd39055892fe (patch)
tree5799c05ec62d99e582db411ed0fe5ffd2ba519db /libaio-0.3.109/man/aio_error64.3
downloadlibaio-tarball-e6a27c468cae77ce26f6aa924b22bd39055892fe.tar.gz
Imported from /home/lorry/working-area/delta_libaio-tarball/libaio_0.3.109.orig.tar.gz.HEADlibaio_0.3.109.origmaster
Diffstat (limited to 'libaio-0.3.109/man/aio_error64.3')
-rw-r--r--libaio-0.3.109/man/aio_error64.364
1 files changed, 64 insertions, 0 deletions
diff --git a/libaio-0.3.109/man/aio_error64.3 b/libaio-0.3.109/man/aio_error64.3
new file mode 100644
index 0000000..3333161
--- /dev/null
+++ b/libaio-0.3.109/man/aio_error64.3
@@ -0,0 +1,64 @@
+.TH aio_error64 3 2002-09-12 "Linux 2.4" Linux AIO"
+.SH NAME
+aio_error64 \- Return errors
+.SH SYNOPSYS
+.nf
+.B #include <errno.h>
+.sp
+.br
+.B #include <aio.h>
+.sp
+.br
+.BI "int aio_error64 (const struct aiocb64 *aiocbp)"
+.fi
+.SH DESCRIPTION
+This function is similar to
+.IR aio_error
+with the only difference
+that the argument is a reference to a variable of type
+.IR "struct aiocb64".
+.PP
+When the sources are compiled with
+.IR "_FILE_OFFSET_BITS == 64"
+this
+function is available under the name
+.IR aio_error
+and so
+transparently replaces the interface for small files on 32 bit
+machines.
+.SH "RETURN VALUES"
+If the request has not yet terminated the value returned is always
+.IR "EINPROGRESS"
+. Once the request has terminated the value
+.IR "aio_error"
+returns is either
+.I 0
+if the request completed successfully or it returns the value which would be stored in the
+.IR "errno"
+variable if the request would have been done using
+.IR "read"
+,
+.IR "write"
+, or
+.IR "fsync"
+.
+.SH ERRORS
+See
+.IR aio_error(3).
+.SH "SEE ALSO"
+.BR aio(3),
+.BR aio_cancel(3),
+.BR aio_cancel64(3),
+.BR aio_error(3),
+.BR aio_fsync(3),
+.BR aio_fsync64(3),
+.BR aio_init(3),
+.BR aio_read(3),
+.BR aio_read64(3),
+.BR aio_return(3),
+.BR aio_return64(3),
+.BR aio_suspend(3),
+.BR aio_suspend64(3),
+.BR aio_write(3),
+.BR aio_write64(3),
+.BR errno(3),