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/H5Fprivate.h | |
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/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 9d45af8..2856b6a 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -32,26 +32,12 @@ #define H5F_SIZEOF_OFFSET(F) ((F)->file_create_parms.offset_size) #define H5F_SIZEOF_SIZE(F) ((F)->file_create_parms.length_size) -/* Size of the default error stack for file IDs */ -#define HDF5_FILE_ERRSTACK 16 - -/* - * If we're using POSIXUNBUFIO and lseek64() is available, then use - * 64-bit file offsets. Otherwise use whatever `off_t' is. - */ -#if (FILELIB==POSIXUNBUFIO) && defined(H5_HAVE_OFF64_T) && defined(H5_HAVE_LSEEK64) -typedef off64_t haddr_t; -#else -typedef off_t haddr_t; -#endif - /* Define the structure to store the file information for HDF5 files */ typedef struct { char *dir; /* Directory the file is located within */ char *filename; /* Filename of file */ uintn acc_perm; /* Access Permissions for file */ hdf_file_t file_handle; /* File handle for actual I/O */ - int32 file_err; /* Error stack ID for this file */ uintn ref_count; /* Reference count for number of times file is opened */ uint32 consist_flags; /* File Consistency Flags */ haddr_t smallobj_off; /* Offset of small-object heap within the file */ |