diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-11-12 00:31:27 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-11-12 00:31:27 (GMT) |
commit | 494a595d73bbf1edaeaea6b363d71c9828a8c8a7 (patch) | |
tree | 874681993d6846b55fdf89fd8459bd6da3983ca4 /src/H5FPserver.c | |
parent | cf61e58985ab4c8f2f382b0969cc057505a33f41 (diff) | |
download | hdf5-494a595d73bbf1edaeaea6b363d71c9828a8c8a7.zip hdf5-494a595d73bbf1edaeaea6b363d71c9828a8c8a7.tar.gz hdf5-494a595d73bbf1edaeaea6b363d71c9828a8c8a7.tar.bz2 |
[svn-r6073] Purpose:
Update
Description:
Added code which performs an update when there's a dataset creation.
Commented on some FIXMEs which were in the code.
Platforms tested:
Eirene PP
Arabica Fortran
Modi4 PP Fortran
Diffstat (limited to 'src/H5FPserver.c')
-rw-r--r-- | src/H5FPserver.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/H5FPserver.c b/src/H5FPserver.c index 2794a2a..d6df905 100644 --- a/src/H5FPserver.c +++ b/src/H5FPserver.c @@ -801,6 +801,14 @@ H5FP_sap_handle_open_request(struct SAP_request req, char *mdata, int md_len) /* broadcast the file id to all processes */ /* FIXME: Isn't there some way to broadcast this result to the barrier group? -QAK */ + /* + * XXX: + * MPI_Bcast doesn't work in this way and I don't know how + * to get it to work for us. From what I gather, all of the + * processes need to execute the same bit of code (the + * MPI_Bcast function) to get the value to be passed to + * everyone. -BW + */ for (i = 0; i < H5FP_comm_size; ++i) if ((unsigned)i != H5FP_sap_rank) if ((mrc = MPI_Send(&new_file_id, 1, MPI_UNSIGNED, i, |