diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-07-08 16:46:16 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-07-08 16:46:16 (GMT) |
commit | 6a1bea937dd076a9d7ce56179e3daa9bb78b8f86 (patch) | |
tree | 74aee19b5f80eafc8508edb3b6002f2e3be011e7 /src/H5S.c | |
parent | a8e53d788448a10071799ded2c8d78dddbc53d63 (diff) | |
download | hdf5-6a1bea937dd076a9d7ce56179e3daa9bb78b8f86.zip hdf5-6a1bea937dd076a9d7ce56179e3daa9bb78b8f86.tar.gz hdf5-6a1bea937dd076a9d7ce56179e3daa9bb78b8f86.tar.bz2 |
[svn-r469] Changes since 19980707
----------------------
./bin/trace
./src/H5.c
Added tracing support for H5S_seloper_t and H5S_class_t.
./src/H5Sselect.c
./src/H5S.c
Added tracing statements that weren't inserted previously
because of formatting problems.
./src/H5T.c
./src/H5Tconv.c
./src/H5Tpkg.h
./src/H5Tprivate.h
./src/H5Tpublic.h
./test/cmpd_dset.c
Added H5Tinsert_array() for inserting an array member into a
compound data type. Added support to the struct conversion
function for member arrays. The index permutation is not
supported yet in the conversion (source and destination must
have the same permutations).
Diffstat (limited to 'src/H5S.c')
-rw-r--r-- | src/H5S.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -138,12 +138,13 @@ done: REVISION LOG --------------------------------------------------------------------------*/ hid_t -H5Screate(H5S_class_t type) +H5Screate (H5S_class_t type) { H5S_t *new_ds=NULL; hid_t ret_value = FAIL; FUNC_ENTER(H5Screate, FAIL); + H5TRACE1("i","Sc",type); /* Check args */ if(type<=H5S_NO_CLASS || type> H5S_SIMPLE) /* don't allow complex dataspace yet */ |