diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-10 18:48:09 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-10 18:48:09 (GMT) |
commit | 7ce626721c33d1ce3e33cbac963a98a1f42098be (patch) | |
tree | e6460970dda5b41652407357cf8fb041efac11d0 /src/H5Tcommit.c | |
parent | 52fa2f94ca927b2da1478e5cc48d92cd22aca15e (diff) | |
download | hdf5-7ce626721c33d1ce3e33cbac963a98a1f42098be.zip hdf5-7ce626721c33d1ce3e33cbac963a98a1f42098be.tar.gz hdf5-7ce626721c33d1ce3e33cbac963a98a1f42098be.tar.bz2 |
[svn-r8646] *** empty log message ***
Diffstat (limited to 'src/H5Tcommit.c')
-rw-r--r-- | src/H5Tcommit.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c index fccb313..3a3b7a1 100644 --- a/src/H5Tcommit.c +++ b/src/H5Tcommit.c @@ -140,13 +140,17 @@ H5T_commit (H5G_entry_t *loc, const char *name, H5T_t *type, hid_t dxpl_id) if (H5T_STATE_IMMUTABLE==type->state) HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "data type is immutable"); + /* Find the insertion file */ + if (NULL==(file=H5G_insertion_file(loc, name, dxpl_id))) + HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to find insertion point"); + /* Check for a "sensible" datatype to store on disk */ if(H5T_is_sensible(type)!=TRUE) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "datatype is not sensible"); - /* Find the insertion file */ - if (NULL==(file=H5G_insertion_file(loc, name, dxpl_id))) - HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to find insertion point"); + /* Mark datatype as being on disk now */ + if(H5T_set_loc(type, file, H5T_LOC_DISK)<0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "cannot mark datatype on disk") /* * Create the object header and open it for write access. Insert the data @@ -160,6 +164,10 @@ H5T_commit (H5G_entry_t *loc, const char *name, H5T_t *type, hid_t dxpl_id) HGOTO_ERROR (H5E_DATATYPE, H5E_CANTINIT, FAIL, "unable to name data type"); type->state = H5T_STATE_OPEN; + /* Mark datatype as being on memory now */ + if(H5T_set_loc(type, NULL, H5T_LOC_MEMORY)<0) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "cannot mark datatype in memory") + done: if (ret_value<0) { if ((type->state==H5T_STATE_TRANSIENT || type->state==H5T_STATE_RDONLY) && H5F_addr_defined(type->ent.header)) { @@ -170,6 +178,7 @@ done: type->ent.header = HADDR_UNDEF; } } + FUNC_LEAVE_NOAPI(ret_value); } |