aio.h 1.3 KB
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef _AIO_H
#define _AIO_H

#ifdef __cplusplus
extern "C" {
#endif

#include <signal.h>
#include <time.h>

#define __NEED_ssize_t
#define __NEED_off_t

#include <bits/alltypes.h>

struct aiocb {
17
	int aio_fildes, aio_lio_opcode, aio_reqprio;
R
Rich Felker 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
	volatile void *aio_buf;
	size_t aio_nbytes;
	struct sigevent aio_sigevent;
	void *__td;
	int __lock[2];
	int __err;
	ssize_t __ret;
	off_t aio_offset;
	void *__next, *__prev;
	char __dummy4[32-2*sizeof(void *)];
};

#define AIO_CANCELED 0
#define AIO_NOTCANCELED 1
#define AIO_ALLDONE 2

#define LIO_READ 0
#define LIO_WRITE 1
#define LIO_NOP 2

#define LIO_WAIT 0
#define LIO_NOWAIT 1

41 42
int aio_read(struct aiocb *);
int aio_write(struct aiocb *);
43
int aio_error(const struct aiocb *);
R
Rich Felker 已提交
44 45
ssize_t aio_return(struct aiocb *);
int aio_cancel(int, struct aiocb *);
46
int aio_suspend(const struct aiocb *const [], int, const struct timespec *);
R
Rich Felker 已提交
47 48 49 50
int aio_fsync(int, struct aiocb *);

int lio_listio(int, struct aiocb *const [], int, struct sigevent *);

51 52 53 54 55 56 57 58 59 60 61 62 63
#ifdef _LARGEFILE64_SOURCE
#define aiocb64 aiocb
#define aio_read64 aio_read
#define aio_write64 aio_write
#define aio_error64 aio_error
#define aio_return64 aio_return
#define aio_cancel64 aio_cancel
#define aio_suspend64 aio_suspend
#define aio_fsync64 aio_fsync
#defile lio_listio64 lio_listio
#define off64_t off_t
#endif

R
Rich Felker 已提交
64 65 66 67 68
#ifdef __cplusplus
}
#endif

#endif