diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-03-07 15:05:24 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-03-07 15:05:24 (GMT) |
commit | c7b3e19329bb9f417b397d945c20b27c56a7420f (patch) | |
tree | c362eeafee075a301b449d0f93a42eeff0457b17 /src/H5I.c | |
parent | a318d2846c5e6f5cef635c8aa1e54d004aa33ff7 (diff) | |
parent | 5ee3764068f93cab6ab9518a8b0ff64ee5d62178 (diff) | |
download | hdf5-c7b3e19329bb9f417b397d945c20b27c56a7420f.zip hdf5-c7b3e19329bb9f417b397d945c20b27c56a7420f.tar.gz hdf5-c7b3e19329bb9f417b397d945c20b27c56a7420f.tar.bz2 |
[svn-r22034] merge from trunk r 22032
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 90 |
1 files changed, 45 insertions, 45 deletions
@@ -149,7 +149,7 @@ H5I_init_interface(void) { herr_t ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI_NOINIT(H5I_init_interface) + FUNC_ENTER_NOAPI_NOINIT if(H5I_register_type(H5I_UID, (size_t)H5I_UID_HASHSIZE, 0, (H5I_free_t)NULL)<H5I_UID) HGOTO_ERROR(H5E_ATOM, H5E_CANTINIT, FAIL, "unable to initialize interface") @@ -182,7 +182,7 @@ H5I_term_interface(void) H5I_type_t type; int n = 0; - FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5I_term_interface) + FUNC_ENTER_NOAPI_NOINIT_NOERR if(H5_interface_initialize_g) { /* How many types are still being used? */ @@ -234,7 +234,7 @@ H5Iregister_type(size_t hash_size, unsigned reserved, H5I_free_t free_func) { H5I_type_t ret_value; /* Return value */ - FUNC_ENTER_API(H5Iregister_type, H5I_BADID) + FUNC_ENTER_API(H5I_BADID) H5TRACE3("It", "zIux", hash_size, reserved, free_func); /* Call H5I_register_type with a value of 0 to get a new type */ @@ -276,7 +276,7 @@ H5I_register_type(H5I_type_t type_id, size_t hash_size, unsigned reserved, H5I_id_type_t *type_ptr = NULL; /*ptr to the atomic type*/ H5I_type_t ret_value = H5I_BADID; /* type ID to return */ - FUNC_ENTER_NOAPI(H5I_register_type, H5I_BADID) + FUNC_ENTER_NOAPI(H5I_BADID) /* Check that type_id is either a library type or zero */ if(type_id < 0 || type_id >= H5I_NTYPES) @@ -377,7 +377,7 @@ H5Itype_exists(H5I_type_t type) { htri_t ret_value = TRUE; /* Return value */ - FUNC_ENTER_API(H5Itype_exists, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("t", "It", type); if(type <= H5I_BADID || type >= H5I_next_type) @@ -413,7 +413,7 @@ H5Inmembers(H5I_type_t type, hsize_t *num_members) { int ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_API(H5Inmembers, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE2("e", "It*h", type, num_members); if(H5I_IS_LIB_TYPE(type)) @@ -463,7 +463,7 @@ H5I_nmembers(H5I_type_t type) H5I_id_type_t *type_ptr = NULL; int ret_value; - FUNC_ENTER_NOAPI(H5I_nmembers, FAIL) + FUNC_ENTER_NOAPI(FAIL) if(type <= H5I_BADID || type >= H5I_next_type) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "invalid type number") @@ -499,7 +499,7 @@ H5Iclear_type(H5I_type_t type, hbool_t force) { herr_t ret_value; /* Return value */ - FUNC_ENTER_API(H5Iclear_type, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE2("e", "Itb", type, force); if(H5I_IS_LIB_TYPE(type)) @@ -552,7 +552,7 @@ H5I_clear_type(H5I_type_t type, hbool_t force, hbool_t app_ref) unsigned i; /* Local index variable */ int ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI(H5I_clear_type, FAIL) + FUNC_ENTER_NOAPI(FAIL) if(type <= H5I_BADID || type >= H5I_next_type) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "invalid type number") @@ -679,7 +679,7 @@ H5Idestroy_type(H5I_type_t type) { herr_t ret_value; /* Return value */ - FUNC_ENTER_API(H5Idestroy_type, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("e", "It", type); if(H5I_IS_LIB_TYPE(type)) @@ -713,7 +713,7 @@ H5I_destroy_type(H5I_type_t type) H5I_id_type_t *type_ptr; /* ptr to the atomic type */ herr_t ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI(H5I_destroy_type, FAIL) + FUNC_ENTER_NOAPI(FAIL) if(type <= H5I_BADID || type >= H5I_next_type) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "invalid type number") @@ -754,7 +754,7 @@ H5Iregister(H5I_type_t type, const void *object) { hid_t ret_value; /* Return value */ - FUNC_ENTER_API(H5Iregister, H5I_INVALID_HID) + FUNC_ENTER_API(H5I_INVALID_HID) H5TRACE2("i", "It*x", type, object); if(H5I_IS_LIB_TYPE(type)) @@ -804,7 +804,7 @@ H5I_register(H5I_type_t type, const void *object, hbool_t app_ref) unsigned i; /*counter */ hid_t ret_value = SUCCEED; /*return value */ - FUNC_ENTER_NOAPI(H5I_register, FAIL) + FUNC_ENTER_NOAPI(FAIL) /* Check arguments */ if(type <= H5I_BADID || type >= H5I_next_type) @@ -909,7 +909,7 @@ H5I_subst(hid_t id, const void *new_object) H5I_id_info_t *id_ptr; /* Ptr to the atom */ void *ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_subst, NULL) + FUNC_ENTER_NOAPI(NULL) /* General lookup of the ID */ if(NULL == (id_ptr = H5I_find_id(id))) @@ -946,7 +946,7 @@ H5I_object(hid_t id) H5I_id_info_t *id_ptr; /*ptr to the new atom */ void *ret_value = NULL; /*return value */ - FUNC_ENTER_NOAPI(H5I_object, NULL) + FUNC_ENTER_NOAPI(NULL) /* General lookup of the ID */ if(NULL != (id_ptr = H5I_find_id(id))) { @@ -984,7 +984,7 @@ H5Iobject_verify(hid_t uid, H5I_type_t id_type) hid_t id; void * ret_value; /* Return value */ - FUNC_ENTER_API(H5Iobject_verify, NULL) + FUNC_ENTER_API(NULL) /* Check arguments */ if(uid < 0) @@ -1033,7 +1033,7 @@ H5I_object_verify(hid_t id, H5I_type_t id_type) H5I_id_info_t *id_ptr = NULL; /*ptr to the new atom */ void *ret_value = NULL; /*return value */ - FUNC_ENTER_NOAPI(H5I_object_verify, NULL) + FUNC_ENTER_NOAPI(NULL) HDassert(id_type >= 1 && id_type < H5I_next_type); @@ -1070,7 +1070,7 @@ H5I_get_type(hid_t id) { H5I_type_t ret_value = H5I_BADID; - FUNC_ENTER_NOAPI(H5I_get_type, H5I_BADID) + FUNC_ENTER_NOAPI(H5I_BADID) if(id > 0) ret_value = H5I_TYPE(id); @@ -1104,7 +1104,7 @@ H5Iget_type(hid_t uid) hid_t id; H5I_type_t ret_value = H5I_BADID; /* Return value */ - FUNC_ENTER_API(H5Iget_type, H5I_BADID) + FUNC_ENTER_API(H5I_BADID) H5TRACE1("It", "i", id); /* Check arguments */ @@ -1154,7 +1154,7 @@ H5Iremove_verify(hid_t uid, H5I_type_t id_type) hid_t id; void * ret_value; /* Return value */ - FUNC_ENTER_API(H5Iremove_verify, NULL) + FUNC_ENTER_API(NULL) /* Check arguments */ if(uid < 0) @@ -1201,7 +1201,7 @@ H5I_remove_verify(hid_t id, H5I_type_t id_type) { void * ret_value = NULL; /*return value */ - FUNC_ENTER_NOAPI(H5I_remove_verify, NULL) + FUNC_ENTER_NOAPI(NULL) /* Argument checking will be performed by H5I_remove() */ @@ -1239,7 +1239,7 @@ H5I_remove(hid_t id) unsigned hash_loc; /*atom's hash table location */ void * ret_value = NULL; /*return value */ - FUNC_ENTER_NOAPI(H5I_remove, NULL) + FUNC_ENTER_NOAPI(NULL) /* Check arguments */ type = H5I_TYPE(id); @@ -1308,7 +1308,7 @@ H5Idec_ref(hid_t uid) hid_t id; int ret_value; /* Return value */ - FUNC_ENTER_API(H5Idec_ref, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("Is", "i", uid); /* Check arguments */ @@ -1362,7 +1362,7 @@ H5I_dec_ref(hid_t id) H5I_id_info_t *id_ptr; /*ptr to the new ID */ int ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_dec_ref, FAIL) + FUNC_ENTER_NOAPI(FAIL) /* Sanity check */ HDassert(id >= 0); @@ -1433,7 +1433,7 @@ H5I_dec_app_ref(hid_t id) H5I_id_info_t *id_ptr; /*ptr to the new ID */ int ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_dec_app_ref, FAIL) + FUNC_ENTER_NOAPI(FAIL) /* Sanity check */ HDassert(id >= 0); @@ -1480,7 +1480,7 @@ H5I_dec_app_ref_always_close(hid_t id) { int ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_dec_app_ref_always_close, FAIL) + FUNC_ENTER_NOAPI(FAIL) /* Sanity check */ HDassert(id >= 0); @@ -1526,7 +1526,7 @@ H5Iinc_ref(hid_t uid) hid_t id; int ret_value; /* Return value */ - FUNC_ENTER_API(H5Iinc_ref, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("Is", "i", id); /* Check arguments */ @@ -1583,7 +1583,7 @@ H5I_inc_ref(hid_t id, hbool_t app_ref) H5I_id_info_t *id_ptr; /*ptr to the ID */ int ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_inc_ref, FAIL) + FUNC_ENTER_NOAPI(FAIL) /* Sanity check */ HDassert(id >= 0); @@ -1633,7 +1633,7 @@ H5Iget_ref(hid_t uid) hid_t id; int ret_value; /* Return value */ - FUNC_ENTER_API(H5Iget_ref, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("Is", "i", uid); /* Check arguments */ @@ -1690,7 +1690,7 @@ H5I_get_ref(hid_t id, hbool_t app_ref) H5I_id_info_t *id_ptr; /*ptr to the ID */ int ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_get_ref, FAIL) + FUNC_ENTER_NOAPI(FAIL) /* Sanity check */ HDassert(id >= 0); @@ -1734,7 +1734,7 @@ H5Iinc_type_ref(H5I_type_t type) { int ret_value; /* Return value */ - FUNC_ENTER_API(H5Iinc_type_ref, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("Is", "It", type); /* Check arguments */ @@ -1773,7 +1773,7 @@ H5I_inc_type_ref(H5I_type_t type) H5I_id_type_t *type_ptr; /* ptr to the type */ int ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_inc_type_ref, FAIL) + FUNC_ENTER_NOAPI(FAIL) /* Sanity check */ HDassert(type > 0 && type < H5I_next_type); @@ -1818,7 +1818,7 @@ H5Idec_type_ref(H5I_type_t type) { herr_t ret_value; /* Return value */ - FUNC_ENTER_API(H5Idec_type_ref, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("e", "It", type); if(H5I_IS_LIB_TYPE(type)) @@ -1857,7 +1857,7 @@ H5I_dec_type_ref(H5I_type_t type) H5I_id_type_t *type_ptr; /* Pointer to the ID type */ herr_t ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_dec_type_ref, FAIL) + FUNC_ENTER_NOAPI(FAIL) if(type <= H5I_BADID || type >= H5I_next_type) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "invalid type number") @@ -1905,7 +1905,7 @@ H5Iget_type_ref(H5I_type_t type) { int ret_value; /* Return value */ - FUNC_ENTER_API(H5Iget_type_ref, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("Is", "It", type); /* Check arguments */ @@ -1945,7 +1945,7 @@ H5I_get_type_ref(H5I_type_t type) H5I_id_type_t *type_ptr; /*ptr to the type */ int ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_get_type_ref, FAIL) + FUNC_ENTER_NOAPI(FAIL) /* Sanity check */ HDassert(type >= 0); @@ -1986,7 +1986,7 @@ H5Iis_valid(hid_t uid) hid_t id; htri_t ret_value = TRUE; /* Return value */ - FUNC_ENTER_API(H5Iis_valid, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("t", "i", uid); id = uid; @@ -2046,7 +2046,7 @@ H5Isearch(H5I_type_t type, H5I_search_func_t func, void *key) { void * ret_value; /* Return value */ - FUNC_ENTER_API(H5Isearch, NULL) + FUNC_ENTER_API(NULL) if(H5I_IS_LIB_TYPE(type)) HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, NULL, "cannot call public function on library type") @@ -2091,7 +2091,7 @@ H5I_search(H5I_type_t type, H5I_search_func_t func, void *key, hbool_t app_ref) H5I_id_type_t *type_ptr; /*ptr to the type */ void *ret_value = NULL; /*return value */ - FUNC_ENTER_NOAPI(H5I_search, NULL) + FUNC_ENTER_NOAPI(NULL) /* Check arguments */ if(type <= H5I_BADID || type >= H5I_next_type) @@ -2151,7 +2151,7 @@ H5I_find_id(hid_t id) unsigned hash_loc; /*bucket pointer */ H5I_id_info_t *ret_value; /*return value */ - FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5I_find_id) + FUNC_ENTER_NOAPI_NOINIT_NOERR /* Check arguments */ type = H5I_TYPE(id); @@ -2221,7 +2221,7 @@ H5Iget_name(hid_t id, char *name/*out*/, size_t size) H5G_loc_t loc; /* Object location */ ssize_t ret_value; /* Return value */ - FUNC_ENTER_API(H5Iget_name, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE3("Zs", "ixz", id, name, size); /* Get object location */ @@ -2259,7 +2259,7 @@ H5Iget_file_id(hid_t uid) hid_t id; hid_t ret_value; /* Return value */ - FUNC_ENTER_API(H5Iget_file_id, FAIL) + FUNC_ENTER_API(FAIL) H5TRACE1("i", "i", uid); /* Check arguments */ @@ -2309,7 +2309,7 @@ H5I_get_file_id(hid_t obj_id, hbool_t app_ref) H5I_type_t type; /* ID type */ hid_t ret_value; /* Return value */ - FUNC_ENTER_NOAPI_NOINIT(H5I_get_file_id) + FUNC_ENTER_NOAPI_NOINIT /* Get object type */ type = H5I_TYPE(obj_id); @@ -2361,7 +2361,7 @@ H5I_replace_with_uids(hid_t *oid_list, ssize_t num_ids) ssize_t j; int ret_value = 0; /* Return value */ - FUNC_ENTER_NOAPI(H5I_replace_with_uids, FAIL) + FUNC_ENTER_NOAPI(FAIL) for (j=0 ; j<num_ids ; j++) { H5I_id_type_t *type_ptr; /*ptr to the type */ @@ -2429,7 +2429,7 @@ H5I_debug(H5I_type_t type) unsigned int iu; herr_t ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5I_debug, FAIL) + FUNC_ENTER_NOAPI(FAIL) fprintf(stderr, "Dumping ID type %d\n", (int)type); type_ptr = H5I_id_type_list_g[type]; |