📄 aio64.c
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -