aio64.c
来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 68 行
C
68 行
/* 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>intaio_cancel64 (int fd, struct aiocb64 *cb){ errno = ENOSYS; return -1;}intaio_error64 (const struct aiocb64 *cb){ errno = ENOSYS; return -1;}intaio_fsync64 (int op, struct aiocb64 *cb){ errno = ENOSYS; return -1;}intaio_read64 (struct aiocb64 *cb){ errno = ENOSYS; return -1;}ssize_taio_return64 (struct aiocb64 *cb){ errno = ENOSYS; return -1;}intaio_suspend64 (const struct aiocb64 *const list[], int nent, const struct timespec *timeout){ errno = ENOSYS; return -1;}intaio_write64 (struct aiocb64 *cb){ errno = ENOSYS; return -1;}intlio_listio64 (int mode, struct aiocb64 * const list[], int nent, struct sigevent *sig){ errno = ENOSYS; return -1;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?