Lines 139-145
Link Here
|
139 |
#if (H5_VERS_MAJOR>1)||((H5_VERS_MAJOR==1)&&(H5_VERS_MINOR>=8)) |
139 |
#if (H5_VERS_MAJOR>1)||((H5_VERS_MAJOR==1)&&(H5_VERS_MINOR>=8)) |
140 |
static haddr_t H5FD_dsm_get_eoa(const H5FD_t *_file, H5FD_mem_t type); |
140 |
static haddr_t H5FD_dsm_get_eoa(const H5FD_t *_file, H5FD_mem_t type); |
141 |
static herr_t H5FD_dsm_set_eoa(H5FD_t *_file, H5FD_mem_t type, haddr_t addr); |
141 |
static herr_t H5FD_dsm_set_eoa(H5FD_t *_file, H5FD_mem_t type, haddr_t addr); |
|
|
142 |
#if (H5_VERS_MAJOR>1)||((H5_VERS_MAJOR==1)&&(H5_VERS_MINOR>=10)) |
143 |
static haddr_t H5FD_dsm_get_eof(const H5FD_t *_file, H5FD_mem_t type); |
144 |
#else |
142 |
static haddr_t H5FD_dsm_get_eof(const H5FD_t *_file); |
145 |
static haddr_t H5FD_dsm_get_eof(const H5FD_t *_file); |
|
|
146 |
#endif |
143 |
#else |
147 |
#else |
144 |
static haddr_t H5FD_dsm_get_eoa(H5FD_t *_file); |
148 |
static haddr_t H5FD_dsm_get_eoa(H5FD_t *_file); |
145 |
static herr_t H5FD_dsm_set_eoa(H5FD_t *_file, haddr_t addr); |
149 |
static herr_t H5FD_dsm_set_eoa(H5FD_t *_file, haddr_t addr); |
Lines 155-160
Link Here
|
155 |
"dsm", /*name */ |
159 |
"dsm", /*name */ |
156 |
MAXADDR, /*maxaddr */ |
160 |
MAXADDR, /*maxaddr */ |
157 |
H5F_CLOSE_WEAK, /*fc_degree */ |
161 |
H5F_CLOSE_WEAK, /*fc_degree */ |
|
|
162 |
#if (H5_VERS_MAJOR>1)||((H5_VERS_MAJOR==1)&&(H5_VERS_MINOR>=8)) |
163 |
NULL, /* terminate */ |
164 |
#endif |
158 |
NULL, /*sb_size */ |
165 |
NULL, /*sb_size */ |
159 |
NULL, /*sb_encode */ |
166 |
NULL, /*sb_encode */ |
160 |
NULL, /*sb_decode */ |
167 |
NULL, /*sb_decode */ |
Lines 687-693
Link Here
|
687 |
*------------------------------------------------------------------------- |
694 |
*------------------------------------------------------------------------- |
688 |
*/ |
695 |
*/ |
689 |
static haddr_t |
696 |
static haddr_t |
690 |
#if (H5_VERS_MAJOR>1)||((H5_VERS_MAJOR==1)&&(H5_VERS_MINOR>=8)) |
697 |
#if (H5_VERS_MAJOR>1)||((H5_VERS_MAJOR==1)&&(H5_VERS_MINOR>=10)) |
|
|
698 |
H5FD_dsm_get_eof(const H5FD_t *_file, H5FD_mem_t type) |
699 |
#elif (H5_VERS_MAJOR>1)||((H5_VERS_MAJOR==1)&&(H5_VERS_MINOR>=8)) |
691 |
H5FD_dsm_get_eof(const H5FD_t *_file) |
700 |
H5FD_dsm_get_eof(const H5FD_t *_file) |
692 |
#else |
701 |
#else |
693 |
H5FD_dsm_get_eof(H5FD_t *_file) |
702 |
H5FD_dsm_get_eof(H5FD_t *_file) |