[svn-r4326] Purpose:
Code cleanups, mostly..
Description:
Work on pacifying the SGI compiler to get the generic properties working
correctly with --enable-parallel and --enable-fortran. It's not quite
fixed yet, but I need to head home and these patches help... :-/
Platforms tested:
IRIX64 6.5 (modi4)
This commit is contained in:
@@ -1128,7 +1128,7 @@ nh5pset_cache_c(hid_t_f *prp_id, int_f* mdc_nelmts, int_f* rdcc_nelmts, size_t_
|
||||
* Modifications: Changed type of the rdcc_w0 parameter to be real_f instead of double
|
||||
*---------------------------------------------------------------------------*/
|
||||
int_f
|
||||
nh5pget_cache_c(hid_t_f *prp_id, int_f* mdc_nelmts, int_f* rdcc_nelmts, size_t_f* rdcc_nbytes , real_f* rdcc_w0)
|
||||
nh5pget_cache_c(hid_t_f *prp_id, int_f* mdc_nelmts, size_t_f* rdcc_nelmts, size_t_f* rdcc_nbytes , real_f* rdcc_w0)
|
||||
{
|
||||
int ret_value = -1;
|
||||
hid_t c_prp_id;
|
||||
|
||||
@@ -2107,7 +2107,7 @@
|
||||
INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier
|
||||
INTEGER, INTENT(OUT) :: mdc_nelmts !Number of elements (objects)
|
||||
! in the meta data cache
|
||||
INTEGER, INTENT(OUT) :: rdcc_nelmts !Number of elements (objects)
|
||||
INTEGER(SIZE_T), INTENT(OUT) :: rdcc_nelmts !Number of elements (objects)
|
||||
! in the meta data cache
|
||||
INTEGER(SIZE_T), INTENT(OUT) :: rdcc_nbytes !Total size of the raw data
|
||||
!chunk cache, in bytes
|
||||
@@ -2126,7 +2126,7 @@
|
||||
!DEC$ ENDIF
|
||||
INTEGER(HID_T), INTENT(IN) :: prp_id
|
||||
INTEGER, INTENT(OUT) :: mdc_nelmts
|
||||
INTEGER, INTENT(OUT) :: rdcc_nelmts
|
||||
INTEGER(SIZE_T), INTENT(OUT) :: rdcc_nelmts
|
||||
INTEGER(SIZE_T), INTENT(OUT) :: rdcc_nbytes
|
||||
REAL, INTENT(OUT) :: rdcc_w0
|
||||
END FUNCTION h5pget_cache_c
|
||||
|
||||
@@ -120,19 +120,19 @@ nh5close_types_c( hid_t_f * types, int_f *lentypes,
|
||||
|
||||
int ret_value = -1;
|
||||
hid_t c_type_id;
|
||||
herr_t err;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < *lentypes; i++) {
|
||||
c_type_id = types[i];
|
||||
if ( (err = H5Tclose(c_type_id)) < 0) return ret_value;
|
||||
c_type_id = types[i];
|
||||
if ( H5Tclose(c_type_id) < 0) return ret_value;
|
||||
}
|
||||
for (i = 0; i < *floatinglen; i++) {
|
||||
c_type_id = floatingtypes[i];
|
||||
if ( (err = H5Tclose(c_type_id)) < 0) return ret_value;
|
||||
c_type_id = floatingtypes[i];
|
||||
if ( H5Tclose(c_type_id) < 0) return ret_value;
|
||||
}
|
||||
for (i = 0; i < *integerlen; i++) {
|
||||
c_type_id = integertypes[i];
|
||||
if ( (err = H5Tclose(c_type_id)) < 0) return ret_value;
|
||||
c_type_id = integertypes[i];
|
||||
if ( H5Tclose(c_type_id) < 0) return ret_value;
|
||||
}
|
||||
ret_value = 0;
|
||||
return ret_value;
|
||||
|
||||
@@ -764,7 +764,7 @@ nh5pget_fapl_family_c (hid_t_f *prp_id, hsize_t_f* memb_size, hid_t_f* memb_plis
|
||||
__DLL__ int_f
|
||||
nh5pset_cache_c(hid_t_f *prp_id, int_f* mdc_nelmts, int_f* rdcc_nelmts, size_t_f* rdcc_nbytes, real_f* rdcc_w0);
|
||||
__DLL__ int_f
|
||||
nh5pget_cache_c(hid_t_f *prp_id, int_f* mdc_nelmts, int_f* rdcc_nelmts, size_t_f* rdcc_nbytes, real_f* rdcc_w0);
|
||||
nh5pget_cache_c(hid_t_f *prp_id, int_f* mdc_nelmts, size_t_f* rdcc_nelmts, size_t_f* rdcc_nbytes, real_f* rdcc_w0);
|
||||
__DLL__ int_f
|
||||
nh5pget_fapl_split_c(hid_t_f *prp_id, size_t_f* meta_ext_size , _fcd meta_ext, hid_t_f* meta_plist, size_t_f* raw_ext_size, _fcd raw_ext, hid_t_f * raw_plist);
|
||||
__DLL__ int_f
|
||||
|
||||
Reference in New Issue
Block a user