summaryrefslogtreecommitdiffstats
path: root/testpar/t_shapesame.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-12-23 14:54:47 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-12-23 14:54:47 (GMT)
commitcbd0460b1b2c94611cb02f9d6f240b4d24ce8fe2 (patch)
tree32f2ad80e8d05c2bb5440f0459cb1bce8d8fb976 /testpar/t_shapesame.c
parent443bc1200f2ef81136b1ac2822873bc06ac926bd (diff)
downloadhdf5-cbd0460b1b2c94611cb02f9d6f240b4d24ce8fe2.zip
hdf5-cbd0460b1b2c94611cb02f9d6f240b4d24ce8fe2.tar.gz
hdf5-cbd0460b1b2c94611cb02f9d6f240b4d24ce8fe2.tar.bz2
[svn-r25921] - wrap MPI 3 usage with MPI_VERSION compile time check.
- build out unbuffered stdout/err for windows
Diffstat (limited to 'testpar/t_shapesame.c')
-rw-r--r--testpar/t_shapesame.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testpar/t_shapesame.c b/testpar/t_shapesame.c
index f96c669..d167687 100644
--- a/testpar/t_shapesame.c
+++ b/testpar/t_shapesame.c
@@ -5037,9 +5037,11 @@ int main(int argc, char **argv)
{
int mpi_size, mpi_rank; /* mpi variables */
+#ifndef H5_HAVE_WIN32_API
/* Un-buffer the stdout and stderr */
- setbuf(stderr, NULL);
- setbuf(stdout, NULL);
+ HDsetbuf(stderr, NULL);
+ HDsetbuf(stdout, NULL);
+#endif
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);