diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-11-11 22:00:09 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-11-11 22:00:09 (GMT) |
commit | cf61e58985ab4c8f2f382b0969cc057505a33f41 (patch) | |
tree | f4d45338b1f81eaee2135b11d7195fefafbb6de5 /src/H5D.c | |
parent | 02a2fc238c27eada6e4df8af14d363402d6bb44e (diff) | |
download | hdf5-cf61e58985ab4c8f2f382b0969cc057505a33f41.zip hdf5-cf61e58985ab4c8f2f382b0969cc057505a33f41.tar.gz hdf5-cf61e58985ab4c8f2f382b0969cc057505a33f41.tar.bz2 |
[svn-r6072] Purpose:
Code Movement
Description:
Moved definition of the H5D_t data structure into the H5Dprivate.h
header file. With the FPHDF5 stuff, we need access to this data
structure.
Platforms tested:
Eirene...change small, so no need for all three tests.
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -50,16 +50,6 @@ /* Local typedefs */ -/* - * A dataset is the following struct. - */ -struct H5D_t { - H5G_entry_t ent; /* cached object header stuff */ - H5T_t *type; /* datatype of this dataset */ - hid_t dcpl_id; /* dataset creation property id */ - H5O_layout_t layout; /* data layout */ -}; - /* Enumerated type for allocating dataset's storage */ typedef enum { H5D_ALLOC_CREATE, /* Dataset is being created */ @@ -3711,7 +3701,7 @@ H5Dget_offset(hid_t dset_id) haddr_t ret_value; /* Return value */ FUNC_ENTER_API(H5Dget_offset, HADDR_UNDEF); - H5TRACE1("h","i",dset_id); + H5TRACE1("a","i",dset_id); /* Check args */ if (NULL==(dset=H5I_object_verify(dset_id, H5I_DATASET))) |