[svn-r7623]

Purpose: Bug fix

Description: The third parameter to the h5pget(set)_cache_f subroutines
             had a wrong type

Solution: Fixed the type and changed the docs.

Platforms tested: kelgia, arabica 64-bit, copper 64-bit

Misc. update:
This commit is contained in:
Elena Pourmal 2003-10-13 17:29:11 -05:00
parent bf8a376ee3
commit a34ed1f634

View File

@ -797,7 +797,7 @@ FORTRAN Property List API -- h5p
INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier
INTEGER, INTENT(IN) :: mdc_nelmts ! Number of elements (objects) INTEGER, INTENT(IN) :: mdc_nelmts ! Number of elements (objects)
! in the meta data cache ! in the meta data cache
INTEGER, INTENT(IN) :: rdcc_nelmts ! Number of elements (objects) INTEGER(SIZE_T), INTENT(IN) :: rdcc_nelmts ! Number of elements (objects)
! in the meta data cache ! in the meta data cache
INTEGER(SIZE_T), INTENT(IN) :: rdcc_nbytes ! Total size of the raw data INTEGER(SIZE_T), INTENT(IN) :: rdcc_nbytes ! Total size of the raw data
! chunk cache, in bytes ! chunk cache, in bytes
@ -826,7 +826,7 @@ FORTRAN Property List API -- h5p
INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier
INTEGER, INTENT(OUT) :: mdc_nelmts ! Number of elements (objects) INTEGER, INTENT(OUT) :: mdc_nelmts ! Number of elements (objects)
! in the meta data cache ! 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 ! in the meta data cache
INTEGER(SIZE_T), INTENT(OUT) :: rdcc_nbytes ! Total size of the raw data INTEGER(SIZE_T), INTENT(OUT) :: rdcc_nbytes ! Total size of the raw data
! chunk cache, in bytes ! chunk cache, in bytes