mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r8130] Purpose:
Bug fix Description: Address the failure in the FORTRAN builds by making some more of the MPI-related typedefs in the library available outside of parallel builds. Platforms tested: Linux 2.4 (verbena) w/FORTRAN & C++
This commit is contained in:
parent
c3b2c41327
commit
d05f6cde52
2
src/H5.c
2
src/H5.c
@ -1749,7 +1749,6 @@ H5_trace (const double *returning, const char *func, const char *type, ...)
|
||||
}
|
||||
break;
|
||||
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
case 't':
|
||||
if (ptr) {
|
||||
if (vp) {
|
||||
@ -1772,7 +1771,6 @@ H5_trace (const double *returning, const char *func, const char *type, ...)
|
||||
}
|
||||
}
|
||||
break;
|
||||
#endif /* H5_HAVE_PARALLEL */
|
||||
|
||||
default:
|
||||
fprintf (out, "BADTYPE(D%c)", type[1]);
|
||||
|
@ -21,14 +21,14 @@
|
||||
#ifndef H5FDmpi_H
|
||||
#define H5FDmpi_H
|
||||
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
|
||||
/* Type of I/O for data transfer properties */
|
||||
typedef enum H5FD_mpio_xfer_t {
|
||||
H5FD_MPIO_INDEPENDENT = 0, /*zero is the default*/
|
||||
H5FD_MPIO_COLLECTIVE
|
||||
} H5FD_mpio_xfer_t;
|
||||
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
|
||||
/* Sub-class the H5FD_class_t to add more specific functions for MPI-based VFDs */
|
||||
typedef struct H5FD_class_mpi_t {
|
||||
H5FD_class_t super; /* Superclass information & methods */
|
||||
|
Loading…
x
Reference in New Issue
Block a user