diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-08-06 21:32:33 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-08-06 21:32:33 (GMT) |
commit | acd04a1aa67b182623f26979515ab8dd5b978f11 (patch) | |
tree | 7a65e24c03e9e2d7db021e6f89603f5bab458a78 /doc | |
parent | de875442351b3ddd204b65d371536e63de6be8ff (diff) | |
download | hdf5-acd04a1aa67b182623f26979515ab8dd5b978f11.zip hdf5-acd04a1aa67b182623f26979515ab8dd5b978f11.tar.gz hdf5-acd04a1aa67b182623f26979515ab8dd5b978f11.tar.bz2 |
[svn-r579] Changes since 19980806
----------------------
./config/solaris2.5
Hopefully set up now so it honors the CC and CFLAGS variables
and understands solaris cc flags.
./test/big.c
Checks to see if creating lots of large sparse files exceeds
the user disk quota and skips the test. It also checks that
we can actually open ~64 files at once.
./doc/html/Files.html
./src/H5A.c
./src/H5Aprivate.h
./src/H5F.c
./src/H5Fpublic.h
Added the H5Fflush() function which takes any object as an
argument as long as the object is in some way associated with
a file. This required an H5A_entof()
./src/H5.c
./src/H5Flow.c
The `%a' format of HDfprintf() now allows a field width and
justification flag etc, like the other formats. The old
H5F_addr_print() was recoded to call HDfprintf() instead of
vice versa.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/html/Files.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/html/Files.html b/doc/html/Files.html index 791cc1f..9c13cec 100644 --- a/doc/html/Files.html +++ b/doc/html/Files.html @@ -74,6 +74,13 @@ opened by <code>H5Fcreate()</code> or <code>H5Fopen()</code>. After closing a file the <em>file_id</em> should not be used again. This function returns zero for success or a negative value for failure. + + <br><br> + <dt><code>herr_t H5Fflush (hid_t <em>object_id</em>)</code> + <dd>This function will cause all buffers associated with a file + to be immediately flushed to the file. The <em>object_id</em> + can be any object which is associated with a file, including + the file itself. </dl> <h2>4. File Property Lists</h2> @@ -523,7 +530,7 @@ <address><a href="mailto:matzke@llnl.gov">Robb Matzke</a></address> <!-- Created: Tue Jan 27 09:11:27 EST 1998 --> <!-- hhmts start --> -Last modified: Tue Jun 9 15:03:44 EDT 1998 +Last modified: Thu Aug 6 16:17:08 EDT 1998 <!-- hhmts end --> </body> </html> |