diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-01 22:48:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-01 22:48:01 (GMT) |
commit | 5cc4d0dcde9fb0f5a941c90a1de9ab964d09a163 (patch) | |
tree | f726cf0393700434fd482040c13826c8e3518ffc /src/H5F.c | |
parent | f474322ca57d2bc5b5f99a7b92cf34d9ad319389 (diff) | |
download | hdf5-5cc4d0dcde9fb0f5a941c90a1de9ab964d09a163.zip hdf5-5cc4d0dcde9fb0f5a941c90a1de9ab964d09a163.tar.gz hdf5-5cc4d0dcde9fb0f5a941c90a1de9ab964d09a163.tar.bz2 |
[svn-r11] Moved haddr_t from H5Fprivate.h to H5Fproto.h (so I can store the address of
the object header in the dataset structure). Also deleted the support for a
"per file" error stack, since we've decided to go with a "per thread" model
(currently).
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -345,9 +345,6 @@ H5F_new (void) { hdf5_file_t *f = H5MM_xcalloc (1, sizeof(hdf5_file_t)); - /* Create an error stack for errors with this file */ - f->file_err = H5Enew_err_stack(HDF5_FILE_ERRSTACK); - /* Create a cache */ H5AC_new (f); @@ -383,7 +380,6 @@ H5F_dest (hdf5_file_t *f) { if (f) { H5AC_dest (f); - if(f->file_err!=0) H5Edelete_err_stack (f->file_err); f->dir = H5MM_xfree (f->dir); f->filename = H5MM_xfree (f->filename); H5MM_xfree (f); |