diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-22 15:27:29 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-22 15:27:29 (GMT) |
commit | fdfb6dfd26410b931b4452f832b5a4aedec283e0 (patch) | |
tree | 052c551e3cb4f99b2c77af519dce3d3d6ae7429c /test/istore.c | |
parent | 851b17c87ad6f841efb5a5ba1b90b8c6636a2ffd (diff) | |
download | hdf5-fdfb6dfd26410b931b4452f832b5a4aedec283e0.zip hdf5-fdfb6dfd26410b931b4452f832b5a4aedec283e0.tar.gz hdf5-fdfb6dfd26410b931b4452f832b5a4aedec283e0.tar.bz2 |
[svn-r163] Changes since 19980121
----------------------
./Makefile.in
Added more dependencies to .PHONY.
./src/H5D.c
The write side of the I/O pipeline is implemented now too.
Things are looking good for the prototype and it's just a
matter of populating the library with the data type and data
space conversion functions.
./src/H5Farray.c
./src/H5Fprivate.h
./test/istore.c
Changed the order of the arguments for H5F_arr_read() and
H5F_arr_write().
./src/H5P.c
./src/H5Pprivate.h
Changed the names of the arguments of H5P_find(). Fleshed out
the mgath and fscat callback types.
./src/H5Psimp.c
Added stubs for H5P_simp_mgath() and H5P_simp_fscat() that
operate on the entire data space. Quincey, once you have the
data space hyperslab stuff in place let me know and I'll
finish the H5P_simp_*() functions to do partial I/O. Or you
can take a look at it too if you like; there's some comments
in there for you.
./src/H5V.c
./src/H5Vprivate.h
Changed dimensionality arguments from `size_t' to `intn' to be
consistent with the rest of the library and to get rid of
warnings on 64-bit Irix.
Diffstat (limited to 'test/istore.c')
-rw-r--r-- | test/istore.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/istore.c b/test/istore.c index 2bd092c..324cb49 100644 --- a/test/istore.c +++ b/test/istore.c @@ -122,7 +122,7 @@ new_object(H5F_t *f, const char *name, size_t ndims, H5G_entry_t *ent/*out*/) layout.dim[i] = 2; } } - H5F_arr_create(f, &layout /*in,out */ ); + H5F_arr_create(f, &layout/*in,out*/); if (H5O_modify(ent, H5O_LAYOUT, H5O_NEW_MESG, 0, &layout) < 0) { printf("*FAILED*\n"); if (!isatty(1)) { @@ -314,7 +314,7 @@ test_extend(H5F_t *f, const char *prefix, memset(buf, 128 + ctr, nelmts); /* Write to disk */ - if (H5F_arr_write(f, &layout, size, offset, zero, size, buf) < 0) { + if (H5F_arr_write(f, &layout, size, size, zero, offset, buf) < 0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -324,7 +324,7 @@ test_extend(H5F_t *f, const char *prefix, } /* Read from disk */ memset(check, 0xff, nelmts); - if (H5F_arr_read(f, &layout, size, offset, zero, size, check) < 0) { + if (H5F_arr_read(f, &layout, size, size, zero, offset, check) < 0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -357,7 +357,7 @@ test_extend(H5F_t *f, const char *prefix, /* Now read the entire array back out and check it */ memset(buf, 0xff, nx * ny * nz); - if (H5F_arr_read(f, &layout, whole_size, zero, zero, whole_size, buf)<0) { + if (H5F_arr_read(f, &layout, whole_size, whole_size, zero, zero, buf)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -476,7 +476,7 @@ test_sparse(H5F_t *f, const char *prefix, size_t nblocks, memset(buf, 128 + ctr, nx * ny * nz); /* write to disk */ - if (H5F_arr_write(f, &layout, size, offset, zero, size, buf) < 0) { + if (H5F_arr_write(f, &layout, size, size, zero, offset, buf) < 0) { puts("*FAILED*"); if (!isatty(1)) { AT(); |