This source file includes following definitions.
- ADIOI_GEN_IOComplete
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 #ifdef HAVE_AIO_H
20 #include <aio.h>
21 #endif
22 #ifdef HAVE_SYS_AIO_H
23 #include <sys/aio.h>
24 #endif
25
26
27
28 #if !defined(__REDIRECT) && defined(__USE_FILE_OFFSET64)
29 #define aiocb aiocb64
30 #endif
31
32
33
34
35
36
37
38
39
40
41
42 void ADIOI_GEN_IOComplete(ADIO_Request *request, ADIO_Status *status,
43 int *error_code)
44 {
45 return;
46
47 }