diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-05 04:04:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-05 04:04:54 (GMT) |
commit | 9845d40eb5e13f31c33678f834b77451c84a24b7 (patch) | |
tree | e027e8a5a4d6064fabb5f1783ef27eaad0bcc3ce /src/H5Einit.h | |
parent | 009f57c1ba45645f3029f54f9e0cdc74f9fe5822 (diff) | |
download | hdf5-9845d40eb5e13f31c33678f834b77451c84a24b7.zip hdf5-9845d40eb5e13f31c33678f834b77451c84a24b7.tar.gz hdf5-9845d40eb5e13f31c33678f834b77451c84a24b7.tar.bz2 |
[svn-r10153] Purpose:
New feature
Description:
Allow records in internal nodes to be removed, not just records in leaf
nodes.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Solaris 2.9 (shanti)
Diffstat (limited to 'src/H5Einit.h')
-rw-r--r-- | src/H5Einit.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Einit.h b/src/H5Einit.h index 05a2aa1..8164584 100644 --- a/src/H5Einit.h +++ b/src/H5Einit.h @@ -605,6 +605,11 @@ if((msg = H5E_create_msg(cls, H5E_MINOR, "Unable to redistribute records"))==NUL HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed") if((H5E_CANTREDISTRIBUTE_g = H5I_register(H5I_ERROR_MSG, msg))<0) HGOTO_ERROR(H5E_ERROR, H5E_CANTREGISTER, FAIL, "can't register error message") +assert(H5E_CANTSWAP_g==(-1)); +if((msg = H5E_create_msg(cls, H5E_MINOR, "Unable to swap records"))==NULL) + HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed") +if((H5E_CANTSWAP_g = H5I_register(H5I_ERROR_MSG, msg))<0) + HGOTO_ERROR(H5E_ERROR, H5E_CANTREGISTER, FAIL, "can't register error message") assert(H5E_CANTINSERT_g==(-1)); if((msg = H5E_create_msg(cls, H5E_MINOR, "Unable to insert object"))==NULL) HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed") |