diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-06 22:08:05 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-06 22:08:05 (GMT) |
commit | c7cce26e6ac7dee24d04bd3f7fdad864b156016a (patch) | |
tree | aa328cd7f4d79997de3f87020114e8dc36396c5b /src/H5FP.c | |
parent | 76457aac6c20f0bad5d5affa10244288726f9f1b (diff) | |
download | hdf5-c7cce26e6ac7dee24d04bd3f7fdad864b156016a.zip hdf5-c7cce26e6ac7dee24d04bd3f7fdad864b156016a.tar.gz hdf5-c7cce26e6ac7dee24d04bd3f7fdad864b156016a.tar.bz2 |
[svn-r6379] Purpose:
Update
Description:
H5FP.c, H5FPclient.c, H5FPprivate.h, H5FPserver.c:
Update. More progression towards the SAP as metadata cache. It
only lacks the ability to take care of metadata allocations.
H5FDfphdf5.[ch]:
Start of a new driver for FPHDF5. Not fully implemented just
yet...
Platforms tested:
Linux
Diffstat (limited to 'src/H5FP.c')
-rw-r--r-- | src/H5FP.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -266,7 +266,7 @@ H5FP_read_metadata(char **mdata, int len, int from) HDmemset(*mdata, 0, (size_t)len + 1); - if ((mrc = MPI_Recv(*mdata, len, MPI_BYTE, from, H5FP_TAG_METADATA, + if ((mrc = MPI_Recv(*mdata, len + 1, MPI_BYTE, from, H5FP_TAG_METADATA, H5FP_SAP_COMM, &status)) != MPI_SUCCESS) { HDfree(*mdata); *mdata = NULL; |