summaryrefslogtreecommitdiffstats
path: root/src/H5VLiod_encdec.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-04-22 18:25:47 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-04-22 18:25:47 (GMT)
commit898033f75c7ba67b502514da459e57a2c8f6e528 (patch)
treeb72ae7ab1ffbe97720f9602021c5eaa470674764 /src/H5VLiod_encdec.c
parent3c737ee83ed7da73741cf68eee915feecfae1fa8 (diff)
downloadhdf5-898033f75c7ba67b502514da459e57a2c8f6e528.zip
hdf5-898033f75c7ba67b502514da459e57a2c8f6e528.tar.gz
hdf5-898033f75c7ba67b502514da459e57a2c8f6e528.tar.bz2
[svn-r23606] add support for named datatypes in the IOD plugin:
- H5Topen_ff is still implemented synchronously because the async implementation will be very ugly. It's better to think of a better way to implement asynchronously. add a native backend to the server: - Enabling this enforces that create calls are independent for now, since we are not just printfing at the server anymore.
Diffstat (limited to 'src/H5VLiod_encdec.c')
-rw-r--r--src/H5VLiod_encdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5VLiod_encdec.c b/src/H5VLiod_encdec.c
index 31171fd..a6a7293 100644
--- a/src/H5VLiod_encdec.c
+++ b/src/H5VLiod_encdec.c
@@ -43,7 +43,8 @@ int hg_proc_iod_handle_t(hg_proc_t proc, void *data)
int ret = HG_SUCCESS;
iod_handle_t *struct_data = (iod_handle_t *)data;
- ret = hg_proc_uint64_t(proc, &struct_data->cookie);
+ //ret = hg_proc_uint64_t(proc, &struct_data->cookie);
+ ret = hg_proc_int32_t(proc, &struct_data->cookie);
if (ret != HG_SUCCESS) {
HG_ERROR_DEFAULT("Proc error");
ret = HG_FAIL;