diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2011-07-18 22:33:18 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2011-07-18 22:33:18 (GMT) |
commit | 69d7f7312a6664d1f0ce4d617f08fee7f0154442 (patch) | |
tree | 92828d3cc85d58512d9b340d5e386df49eb894a3 /examples/h5_reference.c | |
parent | 4401ddb8c0ae933630516c4aba6eb219b93f5678 (diff) | |
download | hdf5-69d7f7312a6664d1f0ce4d617f08fee7f0154442.zip hdf5-69d7f7312a6664d1f0ce4d617f08fee7f0154442.tar.gz hdf5-69d7f7312a6664d1f0ce4d617f08fee7f0154442.tar.bz2 |
[svn-r21119] Description:
Simplify use of property lists to H5Rdereference, and switch to use
H5Rdereference2.
Tested on:
Mac OS X/32 10.6.8 (amazon)
(too small to require h5committest)
Diffstat (limited to 'examples/h5_reference.c')
-rw-r--r-- | examples/h5_reference.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/examples/h5_reference.c b/examples/h5_reference.c index 3820345..758002f 100644 --- a/examples/h5_reference.c +++ b/examples/h5_reference.c @@ -35,7 +35,6 @@ main(void) { hid_t gid_a; /* and dataspaces identifiers */ hid_t did_b, sid_b, tid_b; hid_t did_r, tid_r, sid_r; - hid_t dapl_id; /* Dataset access property list */ H5O_type_t obj_type; herr_t status; @@ -56,11 +55,6 @@ main(void) { */ gid_a = H5Gcreate2(fid, "A", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - /* - * Create dataset access property list - */ - dapl_id = H5Pcreate(H5P_DATASET_ACCESS); - /* * Create dataset "B" in the file. */ @@ -134,7 +128,7 @@ main(void) { /* * Get datatype of the dataset "B" */ - did_b = H5Rdereference(did_r, dapl_id, H5R_OBJECT, &rbuf[1]); + did_b = H5Rdereference2(did_r, H5P_DEFAULT, H5R_OBJECT, &rbuf[1]); tid_b = H5Dget_type(did_b); if(H5Tequal(tid_b, H5T_NATIVE_FLOAT)) printf("Datatype of the dataset is H5T_NATIVE_FLOAT.\n"); @@ -143,7 +137,6 @@ main(void) { /* * Close all objects and free memory buffers. */ - H5Pclose(dapl_id); H5Dclose(did_r); H5Dclose(did_b); H5Tclose(tid_b); |