summaryrefslogtreecommitdiffstats
path: root/src/H5FPserver.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-03-11 02:33:09 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-03-11 02:33:09 (GMT)
commit45a16682e29fdb5d7bf071ebb6d52cca157e1718 (patch)
tree10833d71b36dba1d688d056a54f5491755f185e3 /src/H5FPserver.c
parent4d86e9e8b87f5abd5d1c6fcfbcef738d36db387f (diff)
downloadhdf5-45a16682e29fdb5d7bf071ebb6d52cca157e1718.zip
hdf5-45a16682e29fdb5d7bf071ebb6d52cca157e1718.tar.gz
hdf5-45a16682e29fdb5d7bf071ebb6d52cca157e1718.tar.bz2
[svn-r10187] Purpose:
Code cleanup, mostly Description: Remove remaining TBBT error info Add new error code for block tracker Platforms tested: FreeBSD 4.11 (sleipnir) Solaris 2.9 (shanti)
Diffstat (limited to 'src/H5FPserver.c')
-rw-r--r--src/H5FPserver.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FPserver.c b/src/H5FPserver.c
index 8c12aed..9eee898 100644
--- a/src/H5FPserver.c
+++ b/src/H5FPserver.c
@@ -194,7 +194,7 @@ H5FP_sap_receive_loop(void)
/* Create the file structure tree. */
if ((file_info_list = H5SL_create(H5SL_TYPE_UNSIGNED,0.5,H5FP_DEFAULT_SKIPLIST_HEIGHT)) == NULL)
- HGOTO_ERROR(H5E_FPHDF5, H5E_CANTMAKETREE, FAIL, "cannot make skip list")
+ HGOTO_ERROR(H5E_FPHDF5, H5E_CANTCREATE, FAIL, "cannot make skip list")
for (;;) {
char *buf = NULL;
@@ -969,13 +969,13 @@ H5FP_new_file_info_node(unsigned file_id)
if ((ret_value->mod_list = H5SL_create(H5SL_TYPE_HADDR,0.5,H5FP_DEFAULT_SKIPLIST_HEIGHT)) == NULL) {
HDfree(ret_value);
- HGOTO_ERROR(H5E_FPHDF5, H5E_CANTMAKETREE, NULL, "cannot make skip list")
+ HGOTO_ERROR(H5E_FPHDF5, H5E_CANTCREATE, NULL, "cannot make skip list")
}
if ((ret_value->locks = H5SL_create(H5SL_TYPE_HADDR,0.5,H5FP_DEFAULT_SKIPLIST_HEIGHT)) == NULL) {
H5SL_close(ret_value->mod_list);
HDfree(ret_value);
- HGOTO_ERROR(H5E_FPHDF5, H5E_CANTMAKETREE, NULL, "cannot make skip list")
+ HGOTO_ERROR(H5E_FPHDF5, H5E_CANTCREATE, NULL, "cannot make skip list")
}
done:
@@ -1166,7 +1166,7 @@ H5FP_dump(H5FP_file_info *info, unsigned to, unsigned req_id, unsigned file_id)
/* Free up the nodes in the modification list */
if(H5SL_free(info->mod_list, H5FP_free_mod_node_cb, NULL)<0)
- HGOTO_ERROR(H5E_FPHDF5, H5E_CANTMAKETREE, FAIL, "cannot make skip list")
+ HGOTO_ERROR(H5E_FPHDF5, H5E_CANTFREE, FAIL, "cannot free skip list")
info->num_mods = 0;