diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-03-19 23:29:23 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-03-19 23:29:23 (GMT) |
commit | 02be089f0c99850da11b0e693235df90f6d08c16 (patch) | |
tree | 992073bf8f39fb143c7779afc2fd1d090a73a32d /src/H5FDmpiposix.c | |
parent | 43c2e1bab7662ef781545b4d82a2112a6d04823a (diff) | |
download | hdf5-02be089f0c99850da11b0e693235df90f6d08c16.zip hdf5-02be089f0c99850da11b0e693235df90f6d08c16.tar.gz hdf5-02be089f0c99850da11b0e693235df90f6d08c16.tar.bz2 |
[svn-r6501] Purpose:
New Feature
Description:
Added support for the lock and unlock function calls for file
drivers. Only FPHDF5 uses this feature. All of these drivers don't
define lock or unlock methods.
Platforms tested:
Linux, Modi4, Sol
Misc. update:
Diffstat (limited to 'src/H5FDmpiposix.c')
-rw-r--r-- | src/H5FDmpiposix.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5FDmpiposix.c b/src/H5FDmpiposix.c index 9c826dc..19cb760 100644 --- a/src/H5FDmpiposix.c +++ b/src/H5FDmpiposix.c @@ -214,7 +214,9 @@ static const H5FD_class_t H5FD_mpiposix_g = { H5FD_mpiposix_read, /*read */ H5FD_mpiposix_write, /*write */ H5FD_mpiposix_flush, /*flush */ - H5FD_FLMAP_SINGLE, /*fl_map */ + NULL, /*lock */ + NULL, /*unlock */ + H5FD_FLMAP_SINGLE /*fl_map */ }; /* Global var to allow elimination of redundant metadata writes |