From 214aa4a3672c585d7afcf31a869e01cc48a53dd2 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 1 May 2002 10:03:12 -0500 Subject: [svn-r5308] Purpose: Update API tracing information Platforms tested: Linux 2.2 (eirene) --- bin/trace | 6 ++++++ src/H5FDgass.c | 1 + src/H5FDsrb.c | 1 + src/H5T.c | 2 +- 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/bin/trace b/bin/trace index e5c3cc0..af6adb2 100755 --- a/bin/trace +++ b/bin/trace @@ -18,13 +18,16 @@ $Source = ""; "hbool_t" => "b", "htri_t" => "b", "double" => "d", + "H5D_fill_value_t" => "Df", "H5D_layout_t" => "Dl", + "H5D_space_time_t" => "Ds", "H5FD_mpio_xfer_t" => "Dt", "herr_t" => "e", "H5E_direction_t" => "Ed", "H5E_error_t*" => "Ee", "H5E_major_t" => "Ej", "H5E_minor_t" => "En", + "H5F_close_degree_t" => "Fc", "H5F_scope_t" => "Fs", "H5FD_t*" => "x", "H5FD_class_t*" => "x", @@ -66,6 +69,9 @@ $Source = ""; "H5G_iterate_t" => "x", "H5MM_allocate_t" => "x", "H5MM_free_t" => "x", + "H5P_cls_create_func_t" => "x", + "H5P_cls_copy_func_t" => "x", + "H5P_cls_close_func_t" => "x", "H5T_cdata_t**" => "x", "H5T_conv_t" => "x", "H5T_overflow_t" => "x", diff --git a/src/H5FDgass.c b/src/H5FDgass.c index c43843e..f8bf0d1 100644 --- a/src/H5FDgass.c +++ b/src/H5FDgass.c @@ -233,6 +233,7 @@ H5Pset_fapl_gass(hid_t fapl_id, GASS_Info info) herr_t ret_value=FAIL; FUNC_ENTER(H5Pset_fapl_gass, FAIL); + /*NO TRACE*/ /* Check arguments */ if(TRUE!=H5P_isa_class(fapl_id,H5P_FILE_ACCESS) || NULL == (plist = H5I_object(fapl_id))) diff --git a/src/H5FDsrb.c b/src/H5FDsrb.c index 6031b5c..7b92ec7 100644 --- a/src/H5FDsrb.c +++ b/src/H5FDsrb.c @@ -201,6 +201,7 @@ H5Pset_fapl_srb(hid_t fapl_id, SRB_Info info) herr_t ret_value = FAIL; FUNC_ENTER(H5Pset_fapl_srb, FAIL); + /*NO TRACE*/ if(TRUE!=H5P_isa_class(fapl_id,H5P_FILE_ACCESS) || NULL == (plist = H5I_object(fapl_id))) HRETURN_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list"); diff --git a/src/H5T.c b/src/H5T.c index 684181a..3c06b78 100644 --- a/src/H5T.c +++ b/src/H5T.c @@ -7885,7 +7885,7 @@ done: */ hid_t H5Tarray_create(hid_t base_id, int ndims, const hsize_t dim[/* ndims */], - const int * UNUSED perm/* ndims */) + const int UNUSED *perm/* ndims */) { H5T_t *base = NULL; /* base data type */ H5T_t *dt = NULL; /* new array data type */ -- cgit v0.12