diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-30 19:25:44 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-30 19:25:44 (GMT) |
commit | b227b388533896337f436f01763ad26def14844c (patch) | |
tree | 4771c187539c0f8bd36572914b63b0137fde2ea8 /RELEASE | |
parent | 0a7b2071a0589bef1abf8fd1b2f7cd470312d7f9 (diff) | |
download | hdf5-b227b388533896337f436f01763ad26def14844c.zip hdf5-b227b388533896337f436f01763ad26def14844c.tar.gz hdf5-b227b388533896337f436f01763ad26def14844c.tar.bz2 |
[svn-r204] Changes since 19980129
----------------------
./RELEASE
Added Library functions that I missed the first time.
./html/Datasets.html
Added an example for Elena's question about how to read a
single member of a compound data type so it becomes an array
of that member in memory.
./src/H5Pprivate.h
Fixed the prototype for H5P_get_hyperslab() to match the
definition.
./src/H5Psimp.c
Oops, added the kludge back in for the offset argument, which
is still an `intn' instead of a `size_t'.
./src/H5.c
./src/H5public.h
./src/H5F.c
./src/H5T.c
./src/H5Tpublic.h
Changed H5init() to H5open() and added an H5close() to fit our
create/open/close paradigm. The H5open() happens
automatically on the first call to the HDF5 library. The
H5close() happens automatically on exit() (unless the app
turns off that feature). H5close() closes all datasets and
files and releases all resources used by the library.
./test/dsets.c
Added calls to H5open() and H5close() to test them.
./test/dtypes.c
Removed call to H5init() since we no longer need it there.
./src/H5Fstdio.c
Changed the PABLO_MASK to the right value. Thanks Kim.
Diffstat (limited to 'RELEASE')
-rw-r--r-- | RELEASE | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -10,6 +10,11 @@ The following functions are implemented. Errors are returned if an attempt is made to use some feature which is not implemented and printing the error stack will show `not implemented yet'. +Library + H5dont_atexit - don't call library close on exit + H5init - initialize library (happens automatically) + H5version - retrieve library version info + Templates H5Cclose - release template resources H5Ccopy - copy a template |