This source file includes following definitions.
- io_base_request_constructor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #include "ompi_config.h"
22
23 #ifdef HAVE_SYS_TIME_H
24 #include <sys/time.h>
25 #endif
26 #ifdef HAVE_UNISTD_H
27 #include <unistd.h>
28 #endif
29
30 #include "opal/class/opal_object.h"
31 #include "ompi/file/file.h"
32 #include "opal/mca/base/base.h"
33 #include "ompi/mca/io/base/base.h"
34 #include "ompi/mca/io/base/io_base_request.h"
35
36
37
38
39
40 static void io_base_request_constructor(mca_io_base_request_t *req)
41 {
42 req->super.req_type = OMPI_REQUEST_IO;
43 req->free_called = false;
44 }
45
46 OBJ_CLASS_INSTANCE(mca_io_base_request_t,
47 ompi_request_t,
48 io_base_request_constructor,
49 NULL);