1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 #ifndef PMIX_PSENSOR_FILE_H
17 #define PMIX_PSENSOR_FILE_H
18
19 #include <src/include/pmix_config.h>
20
21 #include "src/class/pmix_list.h"
22
23 #include "src/mca/psensor/psensor.h"
24
25 BEGIN_C_DECLS
26
27 typedef struct {
28 pmix_psensor_base_component_t super;
29 pmix_list_t trackers;
30 } pmix_psensor_file_component_t;
31
32 PMIX_EXPORT extern pmix_psensor_file_component_t mca_psensor_file_component;
33 extern pmix_psensor_base_module_t pmix_psensor_file_module;
34
35
36 END_C_DECLS
37
38 #endif