diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-14 19:07:32 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-14 19:07:32 (GMT) |
commit | bb12f5d5d2e76bad01222f214a8e492e6f13e07b (patch) | |
tree | c49420fb1d15712fd6c0e1005968692e20e72e9a /src/H5Fprivate.h | |
parent | 0a77488511419bb82b7901bd63d8fdc2a0a4ec9b (diff) | |
download | hdf5-bb12f5d5d2e76bad01222f214a8e492e6f13e07b.zip hdf5-bb12f5d5d2e76bad01222f214a8e492e6f13e07b.tar.gz hdf5-bb12f5d5d2e76bad01222f214a8e492e6f13e07b.tar.bz2 |
[svn-r2147] Corrected a few problems in the free-list code and added more assert() macros
to double-check things. I've turned them back on again now. I also changed
the internal representation of a few struct fields to be float instead of
double, since the HP/UX 10.20 compiler was having problems with the alignment
of the doubles.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index d9952a8..5acb280 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -251,7 +251,7 @@ typedef struct H5F_access_t { intn mdc_nelmts; /* Size of meta data cache (elements) */ intn rdcc_nelmts; /* Size of raw data chunk cache (elmts) */ size_t rdcc_nbytes; /* Size of raw data chunk cache (bytes) */ - double rdcc_w0; /* Preempt read chunks first? [0.0..1.0]*/ + float rdcc_w0; /* Preempt read chunks first? [0.0..1.0]*/ hsize_t threshold; /* Threshold for alignment */ hsize_t alignment; /* Alignment */ uintn gc_ref; /* Garbage-collect references? */ @@ -265,7 +265,7 @@ typedef struct H5F_xfer_t { void *tconv_buf; /*type conversion buffer or null */ void *bkg_buf; /*background buffer or null */ H5T_bkg_t need_bkg; /*type of background buffer needed */ - double split_ratios[3];/*B-tree node splitting ratios */ + float split_ratios[3];/*B-tree node splitting ratios */ uintn cache_hyper; /*cache hyperslab blocks during I/O? */ uintn block_limit; /*largest hyperslab block to cache */ H5MM_allocate_t vlen_alloc; /*VL datatype allocation function */ @@ -315,7 +315,7 @@ typedef struct H5F_file_t { intn mdc_nelmts; /* Size of meta data cache (elements) */ intn rdcc_nelmts; /* Size of raw data chunk cache (elmts) */ size_t rdcc_nbytes; /* Size of raw data chunk cache (bytes) */ - double rdcc_w0; /* Preempt read chunks first? [0.0..1.0]*/ + float rdcc_w0; /* Preempt read chunks first? [0.0..1.0]*/ hsize_t threshold; /* Threshold for alignment */ hsize_t alignment; /* Alignment */ uintn gc_ref; /* Garbage-collect references? */ |