diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-07-29 17:40:10 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-07-29 17:40:10 +0000 |
commit | 60d99bce80566bc3458eb4e00e46d87569c17cba (patch) | |
tree | 481efb2f6ff2b2109c3e02c696792958986714d1 /newlib/libc/sys/linux/aio64.c | |
parent | bda7fbff4889b64b9adef29fd466feaf382bfb27 (diff) | |
download | cygnal-60d99bce80566bc3458eb4e00e46d87569c17cba.tar.gz cygnal-60d99bce80566bc3458eb4e00e46d87569c17cba.tar.bz2 cygnal-60d99bce80566bc3458eb4e00e46d87569c17cba.zip |
2002-07-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/Makefile.am: Add aio64.c.
* libc/sys/linux/Makefile.in: Regenerated.
* libc/sys/linux/aio.c (aio_init): ENOSYS stub added.
* libc/sys/linux/aio64.c: New file.
Diffstat (limited to 'newlib/libc/sys/linux/aio64.c')
-rw-r--r-- | newlib/libc/sys/linux/aio64.c | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/newlib/libc/sys/linux/aio64.c b/newlib/libc/sys/linux/aio64.c new file mode 100644 index 000000000..5a9cdd928 --- /dev/null +++ b/newlib/libc/sys/linux/aio64.c @@ -0,0 +1,67 @@ +/* libc/sys/linux/aio64.c - asychronous I/O */ + +/* Copyright 2002, Red Hat Inc. */ + +/* Currently asynchronous I/O is not implemented. */ + +#include <sys/types.h> +#include <aio.h> +#include <errno.h> + +int +aio_cancel64 (int fd, struct aiocb64 *cb) +{ + errno = ENOSYS; + return -1; +} + +int +aio_error64 (const struct aiocb64 *cb) +{ + errno = ENOSYS; + return -1; +} + +int +aio_fsync64 (int op, struct aiocb64 *cb) +{ + errno = ENOSYS; + return -1; +} + +int +aio_read64 (struct aiocb64 *cb) +{ + errno = ENOSYS; + return -1; +} + +ssize_t +aio_return64 (struct aiocb64 *cb) +{ + errno = ENOSYS; + return -1; +} + +int +aio_suspend64 (const struct aiocb64 *const list[], int nent, + const struct timespec *timeout) +{ + errno = ENOSYS; + return -1; +} + +int +aio_write64 (struct aiocb64 *cb) +{ + errno = ENOSYS; + return -1; +} + +int +lio_listio64 (int mode, struct aiocb64 * const list[], int nent, + struct sigevent *sig) +{ + errno = ENOSYS; + return -1; +} |