summaryrefslogtreecommitdiffstats
path: root/src/H5S.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-08-27 16:48:50 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-08-27 16:48:50 (GMT)
commiteb5e01d37ca2570afc50756c9ed6a0be214502ec (patch)
tree08281269dc5b2eeef48286fb991bd6a05f71f6a3 /src/H5S.c
parent11f1b67c878b17abc225d09fb2a2019f338f92b2 (diff)
downloadhdf5-eb5e01d37ca2570afc50756c9ed6a0be214502ec.zip
hdf5-eb5e01d37ca2570afc50756c9ed6a0be214502ec.tar.gz
hdf5-eb5e01d37ca2570afc50756c9ed6a0be214502ec.tar.bz2
[svn-r620] Changes since 19980825
---------------------- ./MANIFEST ./src/H5R.c [NEW] ./src/H5Rprivate.h [NEW] ./src/H5Rpublic.h [NEW] ./src/Makefile.in ./src/hdf5.h ./test/ragged.c [NEW] Preliminary support for 2d ragged arrays for Mark Miller and Jim Reus. Not fully implemented yet. The test is not actually part of `make test' because we still have some memory problems. ./src/H5E.c ./src/H5Epublic.h Added H5E_RAGGED as a major error number. ./bin/release Checks the MANIFEST file against `svf ls' on systems that have it. ./bin/trace Fixed a bug that caused arguments of type `void *x[]' to not be handled. ./src/H5.c Removed unused variables and changed a couple types to fix compiler warnings. Added tracing support for ragged array object ID's and arrays of pointers. ./src/H5D.c H5Dcreate() will complain if either of the property lists are invalid (instead of using the default). ./src/H5D.c ./src/H5Dprivate.h Split H5Dget_space() into an API and internal function so it can be called from the new ragged array layer. ./src/H5Fistore.c Fixed warnings about unsigned vs. signed comparisons. ./src/H5Flow.c Fixed a warning about a variable being shadowed in the MPI-IO stuff. ./src/H5Iprivate.h ./src/H5Ipublic.h Added the H5_RAGGED atom group. ./src/H5Shyper.c Fixed some freeing-free-memory errors that resulted when certain arrays were freed but the pointers were left in the data structures. I simply set the pointers to null after they were freed. ./src/H5Sprivate.h ./src/H5Sselect.c Split the H5Sselect_hyperslab() function into an API and a private function so it could be called from the ragged array layer. Added H5S_SEL_ERROR and H5S_SEL_N to the switch statements to get rid or compiler warnings. ./src/H5Tconv.c Removed a misleading comment. ./test/bittests.c Fixed a warning about a printf(). ./test/cmpd_dset.c Fixed warnings about unused variables because of test #11 being commented out. ./bin/trace Shortened the right margin for the output to allow room for the `);' at the end of the TRACE() macros.
Diffstat (limited to 'src/H5S.c')
-rw-r--r--src/H5S.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/H5S.c b/src/H5S.c
index 48bde7c..7ff39bb 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -292,7 +292,7 @@ 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;
@@ -426,7 +426,7 @@ H5S_close(H5S_t *ds)
*-------------------------------------------------------------------------
*/
herr_t
-H5Sclose (hid_t space_id)
+H5Sclose(hid_t space_id)
{
FUNC_ENTER(H5Sclose, FAIL);
H5TRACE1("e","i",space_id);
@@ -492,7 +492,7 @@ H5S_release_simple(H5S_simple_t *simple)
*-------------------------------------------------------------------------
*/
hid_t
-H5Scopy (hid_t space_id)
+H5Scopy(hid_t space_id)
{
H5S_t *src = NULL;
H5S_t *dst = NULL;
@@ -535,7 +535,7 @@ H5Scopy (hid_t space_id)
*-------------------------------------------------------------------------
*/
herr_t
-H5Sextent_copy (hid_t dst_id,hid_t src_id)
+H5Sextent_copy(hid_t dst_id,hid_t src_id)
{
H5S_t *src = NULL;
H5S_t *dst = NULL;
@@ -730,7 +730,7 @@ H5S_extent_npoints(const H5S_t *ds)
*-------------------------------------------------------------------------
*/
hsize_t
-H5Sextent_npoints (hid_t space_id)
+H5Sextent_npoints(hid_t space_id)
{
H5S_t *ds = NULL;
hsize_t ret_value = 0;
@@ -832,7 +832,7 @@ H5S_get_npoints_max(const H5S_t *ds)
*-------------------------------------------------------------------------
*/
int
-H5Sextent_ndims (hid_t space_id)
+H5Sextent_ndims(hid_t space_id)
{
H5S_t *ds = NULL;
intn ret_value = 0;
@@ -922,7 +922,7 @@ H5S_extent_ndims(const H5S_t *ds)
*-------------------------------------------------------------------------
*/
int
-H5Sextent_dims (hid_t space_id, hsize_t dims[]/*out*/,
+H5Sextent_dims(hid_t space_id, hsize_t dims[]/*out*/,
hsize_t maxdims[]/*out*/)
{
H5S_t *ds = NULL;
@@ -1215,7 +1215,7 @@ H5S_is_simple(const H5S_t *sdim)
has orthogonal, evenly spaced dimensions.
--------------------------------------------------------------------------*/
hbool_t
-H5Sis_simple (hid_t space_id)
+H5Sis_simple(hid_t space_id)
{
H5S_t *space = NULL; /* dataspace to modify */
hbool_t ret_value = FAIL;
@@ -1262,7 +1262,7 @@ H5Sis_simple (hid_t space_id)
dimension in the array (the slowest) may be unlimited in size.
--------------------------------------------------------------------------*/
herr_t
-H5Sset_extent_simple (hid_t space_id, int rank, const hsize_t dims[/*rank*/],
+H5Sset_extent_simple(hid_t space_id, int rank, const hsize_t dims[/*rank*/],
const hsize_t max[/*rank*/])
{
H5S_t *space = NULL; /* dataspace to modify */
@@ -1578,7 +1578,7 @@ H5S_extend (H5S_t *space, const hsize_t *size)
*-------------------------------------------------------------------------
*/
hid_t
-H5Screate_simple (int rank, const hsize_t dims[/*rank*/],
+H5Screate_simple(int rank, const hsize_t dims[/*rank*/],
const hsize_t maxdims[/*rank*/])
{
hid_t ret_value = FAIL;
@@ -1646,7 +1646,7 @@ H5Screate_simple (int rank, const hsize_t dims[/*rank*/],
*-------------------------------------------------------------------------
*/
H5S_class_t
-H5Sextent_class (hid_t sid)
+H5Sextent_class(hid_t sid)
{
H5S_class_t ret_value = H5S_NO_CLASS;
H5S_t *space = NULL;
@@ -1680,7 +1680,7 @@ H5Sextent_class (hid_t sid)
extent information stored for the dataspace.
--------------------------------------------------------------------------*/
herr_t
-H5Sset_extent_none (hid_t space_id)
+H5Sset_extent_none(hid_t space_id)
{
H5S_t *space = NULL; /* dataspace to modify */
@@ -1718,7 +1718,7 @@ H5Sset_extent_none (hid_t space_id)
dataspace without requiring it to be re-defined.
--------------------------------------------------------------------------*/
herr_t
-H5Soffset_simple (hid_t space_id, const hssize_t *offset)
+H5Soffset_simple(hid_t space_id, const hssize_t *offset)
{
H5S_t *space = NULL; /* dataspace to modify */