[svn-r5064]

Purpose:
    updated the H5D_update_chunk function
Description:
    removed some debugging code headers
Platforms tested:
    w2000, linux
This commit is contained in:
Pedro Vicente Nunes 2002-03-14 12:52:58 -05:00
parent e739b76295
commit c33fd20d54

View File

@ -40,6 +40,10 @@
#define PABLO_MASK H5D_mask #define PABLO_MASK H5D_mask
/* forward declarations */
static herr_t H5D_update_chunk( H5D_t *dataset );
/* /*
* A dataset is the following struct. * A dataset is the following struct.
*/ */
@ -3687,10 +3691,6 @@ herr_t H5Dset_extend( hid_t dset_id, const hsize_t *size )
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
/* declaration*/
static herr_t H5D_update_chunck( H5D_t *dataset );
herr_t H5D_set_extend( H5D_t *dataset, const hsize_t *size ) herr_t H5D_set_extend( H5D_t *dataset, const hsize_t *size )
{ {
herr_t changed; herr_t changed;
@ -3752,7 +3752,7 @@ herr_t H5D_set_extend( H5D_t *dataset, const hsize_t *size )
if ( H5D_CHUNKED == dataset->layout.type ) if ( H5D_CHUNKED == dataset->layout.type )
{ {
if ( H5D_update_chunck( dataset ) < 0 ) if ( H5D_update_chunk( dataset ) < 0 )
goto done; goto done;
@ -3772,7 +3772,7 @@ done:
/*------------------------------------------------------------------------- /*-------------------------------------------------------------------------
* Function: H5D_update_chunck * Function: H5D_update_chunk
* *
* Purpose: * Purpose:
* *
@ -3791,25 +3791,14 @@ done:
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#if 1 herr_t H5D_update_chunk( H5D_t *dset )
#define H5F_PACKAGE /*suppress error about including H5Fpkg */
#include "H5Fpkg.h"
herr_t H5D_update_chunck( H5D_t *dset )
{ {
herr_t status;
H5F_istore_dump_btree( dset->ent.file, stdout, dset->layout.ndims, dset->layout.addr ); H5F_istore_dump_btree( dset->ent.file, stdout, dset->layout.ndims, dset->layout.addr );
status = H5F_istore_debug( dset->ent.file, dset->layout.addr, stdout, 0, 50,
dset->layout.ndims );
return 0; return 0;
} }
#endif