diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-21 19:58:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-21 19:58:48 (GMT) |
commit | 1e07756ac265fad1171cd18efcdb2b0ba9bb903d (patch) | |
tree | 92f09eaab8d0ad899a15ef089cc1b7c5f4e07440 /src/H5HF.c | |
parent | 9deb5961eeb5265c54df1a8a9daf0cea6c3cded6 (diff) | |
download | hdf5-1e07756ac265fad1171cd18efcdb2b0ba9bb903d.zip hdf5-1e07756ac265fad1171cd18efcdb2b0ba9bb903d.tar.gz hdf5-1e07756ac265fad1171cd18efcdb2b0ba9bb903d.tar.bz2 |
[svn-r13367] Description:
Allow "big" attributes to push attribute storage into "dense" form
immediately, to accomodate storing the attribute. (This is only allowed
in the "latest" version of the format).
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5HF.c')
-rw-r--r-- | src/H5HF.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -602,12 +602,12 @@ H5HF_write(H5HF_t *fh, hid_t dxpl_id, void *_id, hbool_t UNUSED *id_changed, /* Operate on object from managed heap blocks */ /* (ID can't change and modifying object is "easy" to manage) */ if(H5HF_man_write(fh->hdr, dxpl_id, id, obj) < 0) - HGOTO_ERROR(H5E_HEAP, H5E_CANTOPERATE, FAIL, "can't operate on object from fractal heap") + HGOTO_ERROR(H5E_HEAP, H5E_WRITEERROR, FAIL, "can't write to 'managed' heap object") } /* end if */ else if((id_flags & H5HF_ID_TYPE_MASK) == H5HF_ID_TYPE_HUGE) { - /* Check for writing a 'huge' object */ - /* (which isn't supported yet - ID could change and lots of work to re-compress changed object) */ - HGOTO_ERROR(H5E_HEAP, H5E_UNSUPPORTED, FAIL, "modifying 'huge' object not supported yet") + /* Operate on "huge" object */ + if(H5HF_huge_write(fh->hdr, dxpl_id, id, obj) < 0) + HGOTO_ERROR(H5E_HEAP, H5E_WRITEERROR, FAIL, "can't write to 'huge' heap object") } /* end if */ else if((id_flags & H5HF_ID_TYPE_MASK) == H5HF_ID_TYPE_TINY) { /* Check for writing a 'tiny' object */ |