summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-09-11 12:48:13 (GMT)
committerGitHub <noreply@github.com>2023-09-11 12:48:13 (GMT)
commitfbeddf2c9c6141f4ed6e5638711ce8aa2b58b7c1 (patch)
tree1464673c827bbe822846a2120477999f423ea83d /src
parentfbb9ad25963c5ca8c2f7827c30e9543df5528778 (diff)
downloadhdf5-fbeddf2c9c6141f4ed6e5638711ce8aa2b58b7c1.zip
hdf5-fbeddf2c9c6141f4ed6e5638711ce8aa2b58b7c1.tar.gz
hdf5-fbeddf2c9c6141f4ed6e5638711ce8aa2b58b7c1.tar.bz2
Add missing row for the ROS3 VFD in table #3415 (#3517)
Diffstat (limited to 'src')
-rw-r--r--src/H5Fmodule.h2
-rw-r--r--src/H5Fpublic.h2
-rw-r--r--src/H5Ppublic.h97
3 files changed, 3 insertions, 98 deletions
diff --git a/src/H5Fmodule.h b/src/H5Fmodule.h
index 3e3be07..8a3f8df 100644
--- a/src/H5Fmodule.h
+++ b/src/H5Fmodule.h
@@ -998,7 +998,7 @@
* Additional parameters may be added to these functions in the future.
*
* \subsubsection subsubsec_file_alternate_drivers_split The Split Driver
- * The Split driver, H5FD_SPLIT, is a limited case of the Multi driver where only two files are
+ * The Split driver is a limited case of the Multi driver where only two files are
* created. One file holds metadata, and the other file holds raw data.
* The function #H5Pset_fapl_split is used to manage Split file access properties. See the example
* below.
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index f800b4c..34a92ac 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -1730,7 +1730,7 @@ H5_DLL herr_t H5Fset_dset_no_attrs_hint(hid_t file_id, hbool_t minimize);
* pass the same values for \p file_id and \p flag.
*
* This function is available only when the HDF5 library is configured with parallel support
- * (\Code{--enable-parallel}). It is useful only when used with the #H5FD_MPIO driver
+ * (\Code{--enable-parallel | HDF5_ENABLE_PARALLEL}). It is useful only when used with the #H5FD_MPIO driver
* (see H5Pset_fapl_mpio()).
* \endparblock
*
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h
index 9a455c7..a58d97f 100644
--- a/src/H5Ppublic.h
+++ b/src/H5Ppublic.h
@@ -3354,102 +3354,7 @@ H5_DLL herr_t H5Pget_core_write_tracking(hid_t fapl_id, hbool_t *is_enabled, siz
* Valid driver identifiers distributed with HDF5 are listed and
* described in the following table.
*
- * <table>
- * <tr>
- * <th>Driver Name</th>
- * <th>Driver Identifier</th>
- * <th>Description</th>
- * <th>Related Function</th>
- * </tr>
- * <tr>
- * <td>POSIX</td>
- * <td>#H5FD_SEC2</td>
- * <td>This driver uses POSIX file-system functions like read and
- * write to perform I/O to a single, permanent file on local disk
- * with no system buffering. This driver is POSIX-compliant and
- * is the default file driver for all systems.</td>
- * <td>H5Pset_fapl_sec2()</td>
- * </tr>
- * <tr>
- * <td>Direct</td>
- * <td>#H5FD_DIRECT</td>
- * <td>This is the #H5FD_SEC2 driver, except data is written to or
- * read from the file synchronously without being cached by the
- * system.</td>
- * <td>H5Pset_fapl_direct()</td>
- * </tr>
- * <tr>
- * <td>Log</td>
- * <td>#H5FD_LOG</td>
- * <td>This is the #H5FD_SEC2 driver with logging capabilities.</td>
- * <td>H5Pset_fapl_log()</td>
- * </tr>
- * <tr>
- * <td>Windows</td>
- * <td>#H5FD_WINDOWS</td>
- * <td>This driver was modified in HDF5-1.8.8 to be a wrapper of the
- * POSIX driver, #H5FD_SEC2. This change should not affect user
- * applications.</td>
- * <td>H5Pset_fapl_windows()</td>
- * </tr>
- * <tr>
- * <td>STDIO</td>
- * <td>#H5FD_STDIO</td>
- * <td>This driver uses functions from the standard C stdio.h to
- * perform I/O to a single, permanent file on local disk with
- * additional system buffering.</td>
- * <td>H5Pset_fapl_stdio()</td>
- * </tr>
- * <tr>
- * <td>Memory</td>
- * <td>#H5FD_CORE</td>
- * <td>With this driver, an application can work with a file in
- * memory for faster reads and writes. File contents are kept in
- * memory until the file is closed. At closing, the memory
- * version of the file can be written back to disk or abandoned.
- * </td>
- * <td>H5Pset_fapl_core()</td>
- * </tr>
- * <tr>
- * <td>Family</td>
- * <td>#H5FD_FAMILY</td>
- * <td>With this driver, the HDF5 file's address space is partitioned
- * into pieces and sent to separate storage files using an
- * underlying driver of the user's choice. This driver is for
- * systems that do not support files larger than 2 gigabytes.
- * </td>
- * <td>H5Pset_fapl_family()</td>
- * </tr>
- * <tr>
- * <td>Multi</td>
- * <td>#H5FD_MULTI</td>
- * <td>With this driver, data can be stored in multiple files
- * according to the type of data. I/O might work better if
- * data is stored in separate files based on the type of data.
- * The Split driver is a special case of this driver.</td>
- * <td>H5Pset_fapl_multi()</td>
- * </tr>
- * <tr>
- * <td>Parallel</td>
- * <td>#H5FD_MPIO</td>
- * <td>This is the standard HDF5 file driver for parallel file
- * systems. This driver uses the MPI standard for both
- * communication and file I/O.</td>
- * <td>H5Pset_fapl_mpio()</td>
- * </tr>
- * <tr>
- * <td>Parallel POSIX</td>
- * <td>H5FD_MPIPOSIX</td>
- * <td>This driver is no longer available.</td>
- * <td></td>
- * </tr>
- * <tr>
- * <td>Stream</td>
- * <td>H5FD_STREAM</td>
- * <td>This driver is no longer available.</td>
- * <td></td>
- * </tr>
- * </table>
+ * \snippet{doc} tables/fileDriverLists.dox supported_file_driver_table
*
* This list does not include custom drivers that might be
* defined and registered by a user.