[svn-r13353] Description:

Checkpoint progress on H5Aiterate2().

    Mark H5Aiterate() as deprecated.

    Various code cleanups.

Tested on:
    Linux/32 2.6 (chicago)
    Linux/64 2.6 (chicago2)
This commit is contained in:
Quincey Koziol
2007-02-20 14:58:09 -05:00
parent 8eecc944d7
commit d08fabd66d
17 changed files with 874 additions and 96 deletions

View File

@@ -37,7 +37,7 @@
/* Static local functions */
static herr_t H5T_commit(H5F_t *file, H5T_t *type,
hid_t dxpl_id, hid_t tcpl_id, hid_t tapl_id);
static H5T_t *H5T_open_oid(H5G_loc_t *loc, hid_t dxpl_id);
static H5T_t *H5T_open_oid(const H5G_loc_t *loc, hid_t dxpl_id);
/*--------------------------------------------------------------------------
@@ -667,7 +667,7 @@ done:
*-------------------------------------------------------------------------
*/
H5T_t *
H5T_open(H5G_loc_t *loc, hid_t dxpl_id)
H5T_open(const H5G_loc_t *loc, hid_t dxpl_id)
{
H5T_shared_t *shared_fo = NULL;
H5T_t *dt = NULL;
@@ -776,7 +776,7 @@ done:
*-------------------------------------------------------------------------
*/
static H5T_t *
H5T_open_oid(H5G_loc_t *loc, hid_t dxpl_id)
H5T_open_oid(const H5G_loc_t *loc, hid_t dxpl_id)
{
H5T_t *dt = NULL;
H5T_t *ret_value;