This source file includes following definitions.
- ADIOI_GEN_IODone
1
2
3
4
5
6
7
8 #include "adio.h"
9
10 #ifdef HAVE_UNISTD_H
11 #include <unistd.h>
12 #endif
13 #ifdef HAVE_SIGNAL_H
14 #include <signal.h>
15 #endif
16 #ifdef HAVE_SYS_TYPES_H
17 #include <sys/types.h>
18 #endif
19
20 #ifdef HAVE_AIO_LITE_H
21 #include <aio-lite.h>
22 #else
23 #ifdef HAVE_AIO_H
24 #include <aio.h>
25 #endif
26 #ifdef HAVE_SYS_AIO_H
27 #include <sys/aio.h>
28 #endif
29 #endif
30
31
32
33 #if !defined(__REDIRECT) && defined(__USE_FILE_OFFSET64)
34 #define aiocb aiocb64
35 #endif
36
37
38
39
40
41
42
43
44
45
46
47 int ADIOI_GEN_IODone(ADIO_Request *request, ADIO_Status *status,
48 int *error_code)
49 {
50 return 0;
51
52 }