summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHDF Tester <hdftest@hdfgroup.org>2008-08-31 11:28:09 (GMT)
committerHDF Tester <hdftest@hdfgroup.org>2008-08-31 11:28:09 (GMT)
commit529585c757a4bb3d902a707feba81aff1cf59ebf (patch)
tree5337dc59d9418b1e829a8b5999c0776c524e52e9 /src
parent489e339019b276fb6b80ac81db74f9e52b2c062e (diff)
downloadhdf5-529585c757a4bb3d902a707feba81aff1cf59ebf.zip
hdf5-529585c757a4bb3d902a707feba81aff1cf59ebf.tar.gz
hdf5-529585c757a4bb3d902a707feba81aff1cf59ebf.tar.bz2
[svn-r15565] Snapshot version 1.9 release 15
Diffstat (limited to 'src')
-rw-r--r--src/H5I.c6
-rw-r--r--src/H5Sall.c1
-rw-r--r--src/H5Snone.c1
-rw-r--r--src/H5public.h4
-rw-r--r--src/Makefile.in23
5 files changed, 22 insertions, 13 deletions
diff --git a/src/H5I.c b/src/H5I.c
index de43f8e..9b6a867 100644
--- a/src/H5I.c
+++ b/src/H5I.c
@@ -391,6 +391,7 @@ H5Itype_exists(H5I_type_t type)
htri_t ret_value = TRUE; /* Return value */
FUNC_ENTER_API(H5Itype_exists, FAIL)
+ H5TRACE1("t", "It", type);
if(type <= H5I_BADID || type >= H5I_next_type)
HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "invalid type number")
@@ -433,6 +434,7 @@ H5Inmembers(H5I_type_t type, hsize_t *num_members)
int ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(H5Inmembers, FAIL)
+ H5TRACE2("e", "It*h", type, num_members);
if(H5I_IS_LIB_TYPE(type))
HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type")
@@ -522,6 +524,7 @@ H5Iclear_type(H5I_type_t type, hbool_t force)
herr_t ret_value; /* Return value */
FUNC_ENTER_API(H5Iclear_type, FAIL)
+ H5TRACE2("e", "Itb", type, force);
if(H5I_IS_LIB_TYPE(type))
HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type")
@@ -703,6 +706,7 @@ H5Idestroy_type(H5I_type_t type)
herr_t ret_value; /* Return value */
FUNC_ENTER_API(H5Idestroy_type, FAIL)
+ H5TRACE1("e", "It", type);
if(H5I_IS_LIB_TYPE(type))
HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type")
@@ -782,6 +786,7 @@ H5Iregister(H5I_type_t type, void *object)
hid_t ret_value; /* Return value */
FUNC_ENTER_API(H5Iregister, H5I_INVALID_HID)
+ H5TRACE2("i", "It*x", type, object);
if(H5I_IS_LIB_TYPE(type))
HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type")
@@ -1685,6 +1690,7 @@ H5Idec_type_ref(H5I_type_t type)
herr_t ret_value; /* Return value */
FUNC_ENTER_API(H5Idec_type_ref, FAIL)
+ H5TRACE1("e", "It", type);
if(H5I_IS_LIB_TYPE(type))
HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type")
diff --git a/src/H5Sall.c b/src/H5Sall.c
index a306aac..1c086b9 100644
--- a/src/H5Sall.c
+++ b/src/H5Sall.c
@@ -832,6 +832,7 @@ H5Sselect_all(hid_t spaceid)
herr_t ret_value = SUCCEED; /* return value */
FUNC_ENTER_API(H5Sselect_all, FAIL)
+ H5TRACE1("e", "i", spaceid);
/* Check args */
if(NULL == (space = (H5S_t *)H5I_object_verify(spaceid, H5I_DATASPACE)))
diff --git a/src/H5Snone.c b/src/H5Snone.c
index a5885a1..e14c417 100644
--- a/src/H5Snone.c
+++ b/src/H5Snone.c
@@ -782,6 +782,7 @@ H5Sselect_none(hid_t spaceid)
herr_t ret_value = SUCCEED; /* return value */
FUNC_ENTER_API(H5Sselect_none, FAIL)
+ H5TRACE1("e", "i", spaceid);
/* Check args */
if(NULL == (space = (H5S_t *)H5I_object_verify(spaceid, H5I_DATASPACE)))
diff --git a/src/H5public.h b/src/H5public.h
index 8e78d21..ec122f0 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -71,10 +71,10 @@ extern "C" {
/* Version numbers */
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
#define H5_VERS_MINOR 9 /* For minor interface/format changes */
-#define H5_VERS_RELEASE 15 /* For tweaks, bug-fixes, or development */
+#define H5_VERS_RELEASE 16 /* For tweaks, bug-fixes, or development */
#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */
/* Empty string for real releases. */
-#define H5_VERS_INFO "HDF5 library version: 1.9.15" /* Full version string */
+#define H5_VERS_INFO "HDF5 library version: 1.9.16" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)
diff --git a/src/Makefile.in b/src/Makefile.in
index 083e235..f68169c 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -86,16 +86,17 @@ am_libhdf5_la_OBJECTS = H5.lo H5checksum.lo H5dbg.lo H5system.lo \
H5Dcontig.lo H5Ddbg.lo H5Ddeprec.lo H5Defl.lo H5Dfill.lo \
H5Dint.lo H5Dio.lo H5Distore.lo H5Dmpio.lo H5Doh.lo \
H5Dscatgath.lo H5Dselect.lo H5Dtest.lo H5E.lo H5Edeprec.lo \
- H5Eint.lo H5EA.lo H5EAcache.lo H5EAhdr.lo H5EAint.lo H5EAtest.lo H5F.lo H5Fdbg.lo H5Ffake.lo \
- H5Fmount.lo H5Fsfile.lo H5Fsuper.lo H5Ftest.lo H5FD.lo \
- H5FDcore.lo H5FDdirect.lo H5FDfamily.lo H5FDlog.lo H5FDmpi.lo \
- H5FDmpio.lo H5FDmpiposix.lo H5FDmulti.lo H5FDsec2.lo \
- H5FDspace.lo H5FDstdio.lo H5FL.lo H5FO.lo H5FS.lo H5FScache.lo \
- H5FSdbg.lo H5FSsection.lo H5G.lo H5Gbtree2.lo H5Gcompact.lo \
- H5Gdense.lo H5Gdeprec.lo H5Gent.lo H5Gint.lo H5Glink.lo \
- H5Gloc.lo H5Gname.lo H5Gnode.lo H5Gobj.lo H5Goh.lo H5Gstab.lo \
- H5Gtest.lo H5Gtraverse.lo H5HF.lo H5HFbtree2.lo H5HFcache.lo \
- H5HFdbg.lo H5HFdblock.lo H5HFdtable.lo H5HFhdr.lo H5HFhuge.lo \
+ H5Eint.lo H5EA.lo H5EAcache.lo H5EAhdr.lo H5EAint.lo \
+ H5EAtest.lo H5F.lo H5Fdbg.lo H5Ffake.lo H5Fmount.lo \
+ H5Fsfile.lo H5Fsuper.lo H5Ftest.lo H5FD.lo H5FDcore.lo \
+ H5FDdirect.lo H5FDfamily.lo H5FDlog.lo H5FDmpi.lo H5FDmpio.lo \
+ H5FDmpiposix.lo H5FDmulti.lo H5FDsec2.lo H5FDspace.lo \
+ H5FDstdio.lo H5FL.lo H5FO.lo H5FS.lo H5FScache.lo H5FSdbg.lo \
+ H5FSsection.lo H5G.lo H5Gbtree2.lo H5Gcompact.lo H5Gdense.lo \
+ H5Gdeprec.lo H5Gent.lo H5Gint.lo H5Glink.lo H5Gloc.lo \
+ H5Gname.lo H5Gnode.lo H5Gobj.lo H5Goh.lo H5Gstab.lo H5Gtest.lo \
+ H5Gtraverse.lo H5HF.lo H5HFbtree2.lo H5HFcache.lo H5HFdbg.lo \
+ H5HFdblock.lo H5HFdtable.lo H5HFhdr.lo H5HFhuge.lo \
H5HFiblock.lo H5HFiter.lo H5HFman.lo H5HFsection.lo \
H5HFspace.lo H5HFstat.lo H5HFtest.lo H5HFtiny.lo H5HG.lo \
H5HGdbg.lo H5HL.lo H5HLdbg.lo H5HP.lo H5I.lo H5L.lo \
@@ -403,7 +404,7 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog
# Add libtool shared library version numbers to the HDF5 library
# See libtool versioning documentation online.
LT_VERS_INTERFACE = 6
-LT_VERS_REVISION = 5
+LT_VERS_REVISION = 6
LT_VERS_AGE = 0
H5detect_CFLAGS = -g