diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-02-12 04:52:59 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-02-12 04:52:59 (GMT) |
commit | 9ab525f8a4babdd2ff22ee72577997838476d275 (patch) | |
tree | 9ee1f32bc50303d99f2cc76604933c8da5825678 /src/H5F.c | |
parent | c8299b347ac56f96b33db7afa38422cb17f45ccd (diff) | |
download | hdf5-9ab525f8a4babdd2ff22ee72577997838476d275.zip hdf5-9ab525f8a4babdd2ff22ee72577997838476d275.tar.gz hdf5-9ab525f8a4babdd2ff22ee72577997838476d275.tar.bz2 |
[svn-r257] H5F.c:
Added modification entry to H5F_open header. Should have been done
when i added the access template argument.
H5Fprivate.h:
The hardcode setting to "define MPIO as the default IO
when HAVE_PARALLEL is set" cause all test programs to fail since
none of them is coded with the needed MPI_Initialize. Change it
back to the previous setting of using sequential I/O allows user
to use sequential I/O by default and use MPIO only if he/she explicitely
asks for it via access template setting.
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -510,6 +510,8 @@ H5F_dest(H5F_t *f) * The CREATE_PARMS argument is optional. A null pointer will * cause the default file creation parameters to be used. * + * The ACCESS_PARMS argument is not used yet. + * * The TYPE argument determins the low-level type of file that * is opened. The special value H5F_LOW_DFLT uses the default * method which is defined at compile time. @@ -565,6 +567,10 @@ H5F_dest(H5F_t *f) * assumed to be a family of files. The TYPE argument is ignored and * H5F_LOW_FAM is used instead. * + * Albert Cheng, 5 Feb 1998 + * Added the access_parms argument to pass down access template + * information. + * *------------------------------------------------------------------------- */ H5F_t * |