diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-11-17 16:53:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-11-17 16:53:38 (GMT) |
commit | 1878ad9c2cc038e1739887b12a26512daf76eefc (patch) | |
tree | 948052b3e450ede9f30c2c4db7ba6e6f0657bc53 /src/H5Apkg.h | |
parent | 94b852d15a0e2a52251071929e451ea7af414108 (diff) | |
download | hdf5-1878ad9c2cc038e1739887b12a26512daf76eefc.zip hdf5-1878ad9c2cc038e1739887b12a26512daf76eefc.tar.gz hdf5-1878ad9c2cc038e1739887b12a26512daf76eefc.tar.bz2 |
[svn-r9537] Purpose:
Code cleanup & optimizations
Description:
Clean up some of the code in attributes to avoid allocating memory and
performing type conversions when the conversion is a noop.
Avoid memory allocations of attribute data structures by switching to use
library's free list memory allocator routines.
Avoid memory allocations of object header continuation data structures by
switching to use library's free list memory allocator routines.
Rearrange threaded, balanced binary tree macros slightly to avoid some
overhead.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Solaris 2.7 (arabica)
Too minor to require h5committest
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r-- | src/H5Apkg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h index 9c837ab..a354a48 100644 --- a/src/H5Apkg.h +++ b/src/H5Apkg.h @@ -55,7 +55,8 @@ struct H5A_t { }; /* Function prototypes for H5A package scope */ -H5_DLL H5A_t *H5A_copy(const H5A_t *old_attr); +H5_DLL H5A_t *H5A_copy(H5A_t *new_attr, const H5A_t *old_attr); +H5_DLL herr_t H5A_free(H5A_t *attr); H5_DLL herr_t H5A_close(H5A_t *attr); #endif |