blob: 0ac9c7d6e7a07eb18e004829d0af6ea57559b607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#ifndef __AIO_H
#define __AIO_H
#include <stddef.h>
#include <time.h>
#define __BITS_SIGEVENT_H_
#include <bits/sigevent.h>
#define __BITS_TIMESPEC_H_
#include <bits/timespec.h>
#define AIO_CANCELED 0
#define AIO_NOTCANCELED 1
#define AIO_ALLDONE 2
#define LIO_READ 0
#define LIO_WRITE 1
#define LIO_WAIT 0
#define LIO_NOWAIT 1
#define LIO_NOP 2
typedef __INT64_TYPE__ off_t;
typedef __SIZE_TYPE__ size_t;
typedef __INT64_TYPE__ ssize_t;
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;
};
int aio_cancel(int, struct aiocb *);
int aio_error(const struct aiocb *);
int aio_fsync(int, struct aiocb *);
int aio_read(struct aiocb *);
ssize_t aio_return(struct aiocb *);
int aio_suspend(const struct aiocb *const[], int, const struct timespec *);
int aio_write(struct aiocb *);
int lio_listio(int, struct aiocb *restrict const[restrict], int, struct sigevent *restrict);
#endif
|