diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2002-04-11 22:52:48 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2002-04-11 22:52:48 (GMT) |
commit | ce920c6c041c88a64b0553db538842f912ebda8e (patch) | |
tree | 3f3ebbafc532eb23a2ed43a7d4c5cfc07a609d58 /src/H5Dprivate.h | |
parent | 19c8cfa8617156fa99caa4349fecb40ab652753c (diff) | |
download | hdf5-ce920c6c041c88a64b0553db538842f912ebda8e.zip hdf5-ce920c6c041c88a64b0553db538842f912ebda8e.tar.gz hdf5-ce920c6c041c88a64b0553db538842f912ebda8e.tar.bz2 |
[svn-r5170]
Purpose:
New feature
Description:
Fill-value's behaviors for contiguous dataset have been redefined.
Basicly, dataset won't allocate space until it's necessary. Full details
are available at http://hdf.ncsa.uiuc.edu/RFC/Fill_Value, at this moment.
Platforms tested:
Linux 2.2.
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index 33fa930..8bbdc74 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -55,10 +55,19 @@ #define H5D_CRT_CHUNK_SIZE_SIZE sizeof(hsize_t[32]) #define H5D_CRT_CHUNK_SIZE_DEF {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1} -/* Definitions for fill value */ -#define H5D_CRT_FILL_VALUE_NAME "fill" +/* Definitions for fill value. size=0 means fill value will be 0 as + * library default; size=-1 means fill value is undefined. */ +#define H5D_CRT_FILL_VALUE_NAME "fill_value" #define H5D_CRT_FILL_VALUE_SIZE sizeof(H5O_fill_t) #define H5D_CRT_FILL_VALUE_DEF {NULL, 0, NULL} +/* Definitions for space allocation time */ +#define H5D_CRT_SPACE_TIME_NAME "space_time" +#define H5D_CRT_SPACE_TIME_SIZE sizeof(H5D_space_time_t) +#define H5D_CRT_SPACE_TIME_DEF H5D_SPACE_ALLOC_LATE +/* Definitions for time of fill value writing */ +#define H5D_CRT_FILL_TIME_NAME "fill_time" +#define H5D_CRT_FILL_TIME_SIZE sizeof(H5D_fill_time_t) +#define H5D_CRT_FILL_TIME_DEF H5D_FILL_TIME_ALLOC /* Definitions for external file list */ #define H5D_CRT_EXT_FILE_LIST_NAME "efl" #define H5D_CRT_EXT_FILE_LIST_SIZE sizeof(H5O_efl_t) |