diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-02-18 16:21:34 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-02-18 16:21:34 (GMT) |
commit | 37cfaf1665f1a036c4a907367c7e25b7ac849013 (patch) | |
tree | cbdea15114da44de5f1d74057fdb8de449d18f41 /src/H5Oprivate.h | |
parent | 901051cecb91bffb1920c0b31bec2f0661363a1a (diff) | |
download | hdf5-37cfaf1665f1a036c4a907367c7e25b7ac849013.zip hdf5-37cfaf1665f1a036c4a907367c7e25b7ac849013.tar.gz hdf5-37cfaf1665f1a036c4a907367c7e25b7ac849013.tar.bz2 |
[svn-r1078] Changes since 19990215
----------------------
./src/H5.c
Fixed more dependency problems in H5_term_library(). There was
a bug in the previous version that could cause the wrong EOF
marker to be written to the boot block under certain
circumstances. Hopefully this fixes it although I don't ready
access to a test case (Mark Miller will test it).
./src/H5F.c
./src/H5Fprivate.h
Added an H5F_close_all() that is similar to
H5F_term_interface() but which doesn't close the
interface. Files that don't have open object headers are
closed, others are delayed until all object headers close. All
files are flushed.
./src/H5ACprivate.h
./src/H5Bprivate.h
./src/H5Dprivate.h
./src/H5Eprivate.h
./src/H5Fprivate.h
./src/H5Gpkg.h
./src/H5Gprivate.h
./src/H5Gpublic.h
./src/H5HGprivate.h
./src/H5HLprivate.h
./src/H5Iprivate.h
./src/H5MFprivate.h
./src/H5MMprivate.h
./src/H5Oprivate.h
./src/H5Pprivate.h
./src/H5Ppublic.h
./src/H5RAprivate.h
./src/H5Sprivate.h
./src/H5Spublic.h
./src/H5Tpkg.h
./src/H5Tprivate.h
./src/H5Tpublic.h
./src/H5Vprivate.h
./src/H5Zprivate.h
./src/H5private.h
./src/H5public.h
Reindented after __DLL__ was added.
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 57 |
1 files changed, 29 insertions, 28 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index a6778cb..07181e0 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -151,7 +151,7 @@ typedef struct H5O_fill_t { #define H5O_EFL_ID 0x0007 /*external file list id */ #define H5O_EFL_ALLOC 16 /*number of slots to alloc at once */ #define H5O_EFL_UNLIMITED H5F_UNLIMITED /*max possible file size */ -__DLLVAR__ const H5O_class_t H5O_EFL[1]; /*external file list class */ +__DLLVAR__ const H5O_class_t H5O_EFL[1];/*external file list class */ typedef struct H5O_efl_entry_t { size_t name_offset; /*offset of name within heap */ @@ -259,8 +259,8 @@ typedef struct H5O_cont_t { #define H5O_STAB_ID 0x0011 __DLLVAR__ const H5O_class_t H5O_STAB[1]; -void *H5O_stab_fast (const H5G_cache_t *cache, const H5O_class_t *type, - void *_mesg); +__DLL__ void *H5O_stab_fast(const H5G_cache_t *cache, const H5O_class_t *type, + void *_mesg); typedef struct H5O_stab_t { haddr_t btree_addr; /*address of B-tree */ @@ -268,34 +268,35 @@ typedef struct H5O_stab_t { } H5O_stab_t; /* General message operators */ -__DLL__ herr_t H5O_create (H5F_t *f, size_t size_hint, - H5G_entry_t *ent/*out*/); -__DLL__ herr_t H5O_open (H5G_entry_t *ent); -__DLL__ herr_t H5O_close (H5G_entry_t *ent); -__DLL__ intn H5O_link (H5G_entry_t *ent, intn adjust); -__DLL__ intn H5O_count (H5G_entry_t *ent, const H5O_class_t *type); -__DLL__ htri_t H5O_exists(H5G_entry_t *ent, const H5O_class_t *type, intn sequence); -__DLL__ void *H5O_read (H5G_entry_t *ent, const H5O_class_t *type, - intn sequence, void *mesg); -__DLL__ intn H5O_modify (H5G_entry_t *ent, const H5O_class_t *type, - intn overwrite, uintn flags, const void *mesg); +__DLL__ herr_t H5O_create(H5F_t *f, size_t size_hint, + H5G_entry_t *ent/*out*/); +__DLL__ herr_t H5O_open(H5G_entry_t *ent); +__DLL__ herr_t H5O_close(H5G_entry_t *ent); +__DLL__ intn H5O_link(H5G_entry_t *ent, intn adjust); +__DLL__ intn H5O_count(H5G_entry_t *ent, const H5O_class_t *type); +__DLL__ htri_t H5O_exists(H5G_entry_t *ent, const H5O_class_t *type, + intn sequence); +__DLL__ void *H5O_read(H5G_entry_t *ent, const H5O_class_t *type, + intn sequence, void *mesg); +__DLL__ intn H5O_modify(H5G_entry_t *ent, const H5O_class_t *type, + intn overwrite, uintn flags, const void *mesg); __DLL__ herr_t H5O_touch(H5G_entry_t *ent, hbool_t force); -__DLL__ herr_t H5O_remove (H5G_entry_t *ent, const H5O_class_t *type, - intn sequence); -__DLL__ herr_t H5O_reset (const H5O_class_t *type, void *native); -__DLL__ void *H5O_free (const H5O_class_t *type, void *mesg); -__DLL__ void *H5O_copy (const H5O_class_t *type, const void *mesg, void *dst); -__DLL__ herr_t H5O_share (H5F_t *f, const H5O_class_t *type, const void *mesg, - H5HG_t *hobj/*out*/); -__DLL__ herr_t H5O_debug (H5F_t *f, const haddr_t *addr, FILE * stream, - intn indent, intn fwidth); +__DLL__ herr_t H5O_remove(H5G_entry_t *ent, const H5O_class_t *type, + intn sequence); +__DLL__ herr_t H5O_reset(const H5O_class_t *type, void *native); +__DLL__ void *H5O_free(const H5O_class_t *type, void *mesg); +__DLL__ void *H5O_copy(const H5O_class_t *type, const void *mesg, void *dst); +__DLL__ herr_t H5O_share(H5F_t *f, const H5O_class_t *type, const void *mesg, + H5HG_t *hobj/*out*/); +__DLL__ herr_t H5O_debug(H5F_t *f, const haddr_t *addr, FILE * stream, + intn indent, intn fwidth); /* EFL operators */ -__DLL__ hsize_t H5O_efl_total_size (H5O_efl_t *efl); -__DLL__ herr_t H5O_efl_read (H5F_t *f, const H5O_efl_t *efl, haddr_t *addr, - hsize_t size, uint8_t *buf); -__DLL__ herr_t H5O_efl_write (H5F_t *f, const H5O_efl_t *efl, haddr_t *addr, - hsize_t size, const uint8_t *buf); +__DLL__ hsize_t H5O_efl_total_size(H5O_efl_t *efl); +__DLL__ herr_t H5O_efl_read(H5F_t *f, const H5O_efl_t *efl, haddr_t *addr, + hsize_t size, uint8_t *buf); +__DLL__ herr_t H5O_efl_write(H5F_t *f, const H5O_efl_t *efl, haddr_t *addr, + hsize_t size, const uint8_t *buf); /* Fill value operators */ __DLL__ herr_t H5O_fill_convert(H5O_fill_t *fill, H5T_t *type); |