diff options
author | James Laird <jlaird@hdfgroup.org> | 2007-01-08 14:54:12 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2007-01-08 14:54:12 (GMT) |
commit | 77a2e54459cee60effc94513bdb047dbf2ef847b (patch) | |
tree | 810b00b0eb408c86d3edce96884c61ab851c6516 /src/H5Oshared.c | |
parent | 7fc6a486b94dcd8eff19db8816d9ab3b0bbeb440 (diff) | |
download | hdf5-77a2e54459cee60effc94513bdb047dbf2ef847b.zip hdf5-77a2e54459cee60effc94513bdb047dbf2ef847b.tar.gz hdf5-77a2e54459cee60effc94513bdb047dbf2ef847b.tar.bz2 |
[svn-r13119] More code cleanup. Made shared messages zero-indexed instead of
one-indexed. Changed the names of some constants to be more consistent.
Tested on juniper, smirom, and copper.
Diffstat (limited to 'src/H5Oshared.c')
-rw-r--r-- | src/H5Oshared.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/H5Oshared.c b/src/H5Oshared.c index 579e08f..4112865 100644 --- a/src/H5Oshared.c +++ b/src/H5Oshared.c @@ -223,9 +223,6 @@ H5O_shared_link_adj(H5F_t *f, hid_t dxpl_id, const H5O_shared_t *shared, int adj /* check args */ HDassert(f); HDassert(shared); - /* JAMES - * NEW THOUGHT: I should increment SOHM ref count here (or in a parallel function) - */ /* * The shared message is stored in some other object header. @@ -562,10 +559,6 @@ H5O_shared_link(H5F_t *f, hid_t dxpl_id, const void *_mesg) HDassert(f); HDassert(shared); - /* JAMES_HEAP: see comment in link_adj. Unneccessary except for shared attributes, I think, - * and they may yet take care of themselves. - */ - /* Increment the reference count on the shared object */ if(H5O_shared_link_adj(f, dxpl_id, shared, 1) < 0) HGOTO_ERROR(H5E_OHDR, H5E_LINKCOUNT, FAIL, "unable to adjust shared object link count") |