summaryrefslogtreecommitdiffstats
path: root/test/h5test.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2002-05-29 18:40:29 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2002-05-29 18:40:29 (GMT)
commit770c707da1bb5acc443a24db4d59784914a3481b (patch)
tree9bf69813ca822dc0a701462cc88db440d546fc1a /test/h5test.c
parentf1ce8aa94641254c52de9db5e0f327ed5910b94e (diff)
downloadhdf5-770c707da1bb5acc443a24db4d59784914a3481b.zip
hdf5-770c707da1bb5acc443a24db4d59784914a3481b.tar.gz
hdf5-770c707da1bb5acc443a24db4d59784914a3481b.tar.bz2
[svn-r5481] Description:
Renamed pio_info_g as h5_io_info_g to better reflect its general purpose. Platforms tested: eirene(pp)
Diffstat (limited to 'test/h5test.c')
-rw-r--r--test/h5test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/h5test.c b/test/h5test.c
index e227709..c6382dc 100644
--- a/test/h5test.c
+++ b/test/h5test.c
@@ -61,7 +61,7 @@
#endif
char *paraprefix = NULL; /* for command line option para-prefix */
#ifdef H5_HAVE_PARALLEL
-MPI_Info pio_info_g=MPI_INFO_NULL;/* MPI INFO object to run the PIO */
+MPI_Info h5_io_info_g=MPI_INFO_NULL;/* MPI INFO object for IO */
#endif
/*
@@ -603,8 +603,8 @@ h5_set_info_object(void)
envp = HDstrdup(envp);
/* create an INFO object if not created yet */
- if (pio_info_g==MPI_INFO_NULL)
- MPI_Info_create (&pio_info_g);
+ if (h5_io_info_g==MPI_INFO_NULL)
+ MPI_Info_create (&h5_io_info_g);
/* parse only one setting. Need to extend it to handle multiple */
/* settings. LATER */
@@ -613,7 +613,7 @@ h5_set_info_object(void)
if (valp != NULL){
/* change '=' to NULL, move valp down one */
*valp++ = NULL;
- if (MPI_SUCCESS!=MPI_Info_set(pio_info_g, namep, valp)){
+ if (MPI_SUCCESS!=MPI_Info_set(h5_io_info_g, namep, valp)){
printf("MPI_Info_set failed\n");
ret_value = -1;
}