summaryrefslogtreecommitdiff
path: root/src/aio/struct_aiocb.c
blob: 801074e2d557c6e300449bd8de85ea35177347b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#if 0

#include <aio.h>

struct aiocb {
	int		aio_fildes;
	off_t		aio_offset;
	volatile void *	aio_buf;
	size_t		aio_nbytes;
	int		aio_reqprio;
	struct sigevent	aio_sigevent;
	int		aio_lio_opcode;
};

/*
POSIX(199309)
*/


#endif