summaryrefslogtreecommitdiffstats
path: root/src/H5Tdeprec.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-10-17 13:32:22 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-10-17 13:32:22 (GMT)
commitf7f7fd655ac398a86d599c2d4bbd4cf567bd92dc (patch)
tree1de545839a48597b87f2947f58de2e55ed62f2cc /src/H5Tdeprec.c
parentae573ecf56160fb3383b4ca7b8811a2085d2762f (diff)
downloadhdf5-f7f7fd655ac398a86d599c2d4bbd4cf567bd92dc.zip
hdf5-f7f7fd655ac398a86d599c2d4bbd4cf567bd92dc.tar.gz
hdf5-f7f7fd655ac398a86d599c2d4bbd4cf567bd92dc.tar.bz2
[svn-r24311] change event queue to event stack (just variable names)
Diffstat (limited to 'src/H5Tdeprec.c')
-rw-r--r--src/H5Tdeprec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Tdeprec.c b/src/H5Tdeprec.c
index ff54e5a..267852b 100644
--- a/src/H5Tdeprec.c
+++ b/src/H5Tdeprec.c
@@ -156,7 +156,7 @@ H5Tcommit1(hid_t loc_id, const char *name, hid_t type_id)
/* commit the datatype through the VOL */
if (NULL == (dt = H5VL_datatype_commit(obj, loc_params, vol_plugin, name, type_id,
H5P_LINK_CREATE_DEFAULT, H5P_DATATYPE_CREATE_DEFAULT,
- H5P_DATATYPE_ACCESS_DEFAULT, H5AC_dxpl_id, H5_EVENT_QUEUE_NULL)))
+ H5P_DATATYPE_ACCESS_DEFAULT, H5AC_dxpl_id, H5_EVENT_STACK_NULL)))
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to commit datatype")
/* attach the vol object created using the commit call to the
@@ -217,7 +217,7 @@ H5Topen1(hid_t loc_id, const char *name)
/* Create the datatype through the VOL */
if(NULL == (dt = H5VL_datatype_open(obj, loc_params, vol_plugin, name,
- H5P_DATATYPE_ACCESS_DEFAULT, H5AC_dxpl_id, H5_EVENT_QUEUE_NULL)))
+ H5P_DATATYPE_ACCESS_DEFAULT, H5AC_dxpl_id, H5_EVENT_STACK_NULL)))
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to open datatype")
/* Get an atom for the datatype */
@@ -226,7 +226,7 @@ H5Topen1(hid_t loc_id, const char *name)
done:
if (ret_value < 0 && dt)
- if(H5VL_datatype_close (dt, vol_plugin, H5AC_dxpl_id, H5_EVENT_QUEUE_NULL) < 0)
+ if(H5VL_datatype_close (dt, vol_plugin, H5AC_dxpl_id, H5_EVENT_STACK_NULL) < 0)
HDONE_ERROR(H5E_SYM, H5E_CLOSEERROR, FAIL, "unable to release dataset")
FUNC_LEAVE_API(ret_value)
} /* end H5Topen1() */