diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-03-06 03:52:40 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-03-06 03:52:40 (GMT) |
commit | 44da2314b56b3651221a15b4338d156a6d3b9222 (patch) | |
tree | c0a8f830f4a0182ee206fe661b86c24ef93ed705 /src/H5Fpublic.h | |
parent | 01cb507f8967fa6ac998d7378e5b08c375923b35 (diff) | |
download | hdf5-44da2314b56b3651221a15b4338d156a6d3b9222.zip hdf5-44da2314b56b3651221a15b4338d156a6d3b9222.tar.gz hdf5-44da2314b56b3651221a15b4338d156a6d3b9222.tar.bz2 |
[svn-r310] Fixed a type of H5F_LOW_MPIO. Chose _MPIO over _MPI since that
is more consistent with other names like STDIO.
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r-- | src/H5Fpublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h index d4a869b..db209d2 100644 --- a/src/H5Fpublic.h +++ b/src/H5Fpublic.h @@ -52,7 +52,7 @@ typedef enum H5F_driver_t { H5F_LOW_ERROR = -1, /*error return value */ H5F_LOW_STDIO = 0, /*use functions declared in stdio.h */ H5F_LOW_SEC2 = 1, /*use functions declared in unistd.h */ - H5F_LOW_MPI = 2, /*use indep or collective MPI-IO */ + H5F_LOW_MPIO = 2, /*use indep or collective MPI-IO */ H5F_LOW_CORE = 3, /*use malloc() and free() */ H5F_LOW_SPLIT = 4, /*separate meta data from raw data */ H5F_LOW_FAMILY = 5 /*split addr space over many files */ |