diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-06-17 21:15:32 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-06-17 21:15:32 (GMT) |
commit | dd23059807cd092c50747479141be92a8fd80813 (patch) | |
tree | 830d7defcf4faa2fce7f10bb178dbd3bc8338048 | |
parent | 22538a0c799bcb82b40346849776e354fbc18fee (diff) | |
download | hdf5-dd23059807cd092c50747479141be92a8fd80813.zip hdf5-dd23059807cd092c50747479141be92a8fd80813.tar.gz hdf5-dd23059807cd092c50747479141be92a8fd80813.tar.bz2 |
[svn-r430] Changes since 19980617
----------------------
./src/H5T.c
Fixed a potential division by zero error.
./src/H5Fistore.c
Fixed an assertion failure that I accidently introduced with
the previous changes.
-rw-r--r-- | src/H5Distore.c | 2 | ||||
-rw-r--r-- | src/H5Fistore.c | 2 | ||||
-rw-r--r-- | src/H5T.c | 11 |
3 files changed, 10 insertions, 5 deletions
diff --git a/src/H5Distore.c b/src/H5Distore.c index 9634457..de6a1cb 100644 --- a/src/H5Distore.c +++ b/src/H5Distore.c @@ -1052,7 +1052,7 @@ H5F_istore_lock (H5F_t *f, const H5O_layout_t *layout, } } - assert (chunk_size>0); + assert (found>=0 || chunk_size>0); if (found<0 && chunk_size<=f->shared->access_parms->rdcc_nbytes) { /* * Add the chunk to the beginning of the cache after pruning the cache diff --git a/src/H5Fistore.c b/src/H5Fistore.c index 9634457..de6a1cb 100644 --- a/src/H5Fistore.c +++ b/src/H5Fistore.c @@ -1052,7 +1052,7 @@ H5F_istore_lock (H5F_t *f, const H5O_layout_t *layout, } } - assert (chunk_size>0); + assert (found>=0 || chunk_size>0); if (found<0 && chunk_size<=f->shared->access_parms->rdcc_nbytes) { /* * Add the chunk to the beginning of the cache after pruning the cache @@ -595,14 +595,19 @@ H5T_term_interface(void) H5T_get_size (path->dst)); nbytes *= path->cdata.stats->nelmts; HDfprintf (stderr, - " %-*s %8Hd/%-5d %8.2f %8.2f %8.2f %15g\n", + " %-*s %8Hd/%-5d %8.2f %8.2f %8.2f", H5T_NAMELEN-1, path->name, path->cdata.stats->nelmts, path->cdata.stats->ncalls, path->cdata.stats->timer.utime, path->cdata.stats->timer.stime, - path->cdata.stats->timer.etime, - nbytes / path->cdata.stats->timer.etime); + path->cdata.stats->timer.etime); + if (path->cdata.stats->timer.etime>0) { + HDfprintf (stderr, " %15g\n", + nbytes / path->cdata.stats->timer.etime); + } else { + HDfprintf (stderr, " %15s\n", "Inf"); + } } #endif H5T_close (path->src); |