diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-12-18 19:16:17 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-12-18 19:16:17 (GMT) |
commit | e100695eb0c207e9087696ccd3ca923b2ff248e2 (patch) | |
tree | 3b0a7b88619faf50bce86d316c7384f7ad1218da /src/H5FDmpio.c | |
parent | ddbc06fce64bc49ff6b3e83da3ff74d08251fc2c (diff) | |
download | hdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.zip hdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.tar.gz hdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.tar.bz2 |
[svn-r13068] Ran bin/reconfigure. Some of the scripts have been changed or haven't
been run in a while, so many of the source files were updated with
tracing macros, etc. No code changes by me.
Tested on kagiso and smirom.
Diffstat (limited to 'src/H5FDmpio.c')
-rw-r--r-- | src/H5FDmpio.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5FDmpio.c b/src/H5FDmpio.c index 73bc2dc..8178b7a 100644 --- a/src/H5FDmpio.c +++ b/src/H5FDmpio.c @@ -319,7 +319,7 @@ H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info) herr_t ret_value; FUNC_ENTER_API(H5Pset_fapl_mpio, FAIL) - H5TRACE3("e","iMcMi",fapl_id,comm,info); + H5TRACE3("e", "iMcMi", fapl_id, comm, info); if(fapl_id==H5P_DEFAULT) HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "can't set values in default property list") @@ -390,7 +390,7 @@ H5Pget_fapl_mpio(hid_t fapl_id, MPI_Comm *comm/*out*/, MPI_Info *info/*out*/) herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(H5Pget_fapl_mpio, FAIL) - H5TRACE3("e","ixx",fapl_id,comm,info); + H5TRACE3("e", "ixx", fapl_id, comm, info); if(NULL == (plist = H5P_object_verify(fapl_id,H5P_FILE_ACCESS))) HGOTO_ERROR(H5E_PLIST, H5E_BADTYPE, FAIL, "not a file access list") @@ -464,7 +464,7 @@ H5Pset_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t xfer_mode) herr_t ret_value; FUNC_ENTER_API(H5Pset_dxpl_mpio, FAIL) - H5TRACE2("e","iDt",dxpl_id,xfer_mode); + H5TRACE2("e", "iDt", dxpl_id, xfer_mode); if(dxpl_id==H5P_DEFAULT) HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "can't set values in default property list") @@ -514,7 +514,7 @@ H5Pget_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t *xfer_mode/*out*/) herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(H5Pget_dxpl_mpio, FAIL) - H5TRACE2("e","ix",dxpl_id,xfer_mode); + H5TRACE2("e", "ix", dxpl_id, xfer_mode); if(NULL == (plist = H5P_object_verify(dxpl_id,H5P_DATASET_XFER))) HGOTO_ERROR(H5E_PLIST, H5E_BADTYPE, FAIL, "not a dxpl") @@ -661,7 +661,7 @@ H5Pset_dxpl_mpio_chunk_opt_num(hid_t dxpl_id, unsigned num_chunk_per_proc) herr_t ret_value; FUNC_ENTER_API(H5Pset_dxpl_mpio_chunk_opt_num, FAIL) - H5TRACE2("e","iIu",dxpl_id,num_chunk_per_proc); + H5TRACE2("e", "iIu", dxpl_id, num_chunk_per_proc); if(dxpl_id==H5P_DEFAULT) HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "can't set values in default property list") @@ -708,7 +708,7 @@ H5Pset_dxpl_mpio_chunk_opt_ratio(hid_t dxpl_id, unsigned percent_num_proc_per_ch herr_t ret_value; FUNC_ENTER_API(H5Pset_dxpl_mpio_chunk_opt_ratio, FAIL) - H5TRACE2("e","iIu",dxpl_id,percent_num_proc_per_chunk); + H5TRACE2("e", "iIu", dxpl_id, percent_num_proc_per_chunk); if(dxpl_id==H5P_DEFAULT) HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "can't set values in default property list") |