summaryrefslogtreecommitdiffstats
path: root/doc/html/RM_H5F.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/RM_H5F.html')
-rw-r--r--doc/html/RM_H5F.html72
1 files changed, 61 insertions, 11 deletions
diff --git a/doc/html/RM_H5F.html b/doc/html/RM_H5F.html
index a242e2a..220a307 100644
--- a/doc/html/RM_H5F.html
+++ b/doc/html/RM_H5F.html
@@ -14,7 +14,10 @@ HDF5/H5F Draft API Specification
<a href="RM_H5E.html">H5E</a>&nbsp;&nbsp;
H5F&nbsp;&nbsp;
<a href="RM_H5G.html">H5G</a>&nbsp;&nbsp;
+<a href="RM_H5I.html">H5I</a>&nbsp;&nbsp;
<a href="RM_H5P.html">H5P</a>&nbsp;&nbsp;
+<a href="RM_H5R.html">H5R</a>&nbsp;&nbsp;
+<a href="RM_H5RA.html">H5RA</a>&nbsp;&nbsp;
<a href="RM_H5S.html">H5S</a>&nbsp;&nbsp;
<a href="RM_H5T.html">H5T</a>&nbsp;&nbsp;
<a href="RM_H5Z.html">H5Z</a>&nbsp;&nbsp;
@@ -46,6 +49,7 @@ documented below.
<ul>
<li><a href="#File-Flush">H5Fflush</a>
<li><a href="#File-Close">H5Fclose</a>
+ <li><a href="#File-Reopen">H5Freopen</a>
</ul>
</td><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td valign=top>
<ul>
@@ -102,7 +106,7 @@ documented below.
</dl>
<dt><strong>Returns:</strong>
<dd>Returns a file identifier if successful;
- otherwise FAIL (-1).
+ otherwise returns a negative value.
</dl>
@@ -166,7 +170,7 @@ documented below.
</dl>
<dt><strong>Returns:</strong>
<dd>Returns a file identifier if successful;
- otherwise FAIL (-1).
+ otherwise returns a negative value.
</dl>
@@ -174,7 +178,8 @@ documented below.
<dl>
<dt><strong>Name:</strong> <a name="File-Flush">H5Fflush</a>
<dt><strong>Signature:</strong>
- <dd><em>herr_t </em><code>H5Fflush</code>(<em>hid_t </em><code>object_id</code>
+ <dd><em>herr_t </em><code>H5Fflush</code>(<em>hid_t </em><code>object_id</code>,
+ <em>H5F_scope_t</em> <code>scope</code>
)
<dt><strong>Purpose:</strong>
<dd>Flushes all buffers associated with a file to disk.
@@ -186,14 +191,29 @@ documented below.
<code>object_id</code> can be any object associated with the file,
including the file itself, a dataset, a group, an attribute, or
a named data type.
+ <p>
+ <code>scope</code> specifies whether the scope of the flushing
+ action is global or local. Valid values are
+ <center>
+ <table border=0>
+ <tr><td align=left valign=bottom><code>H5F_SCOPE_GLOBAL</code></td>
+ <td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
+ <td align=left valign=bottom>Flushes the entire virtual file.</td></tr>
+ <tr><td align=left valign=bottom><code>H5F_SCOPE_LOCAL</code></td>
+ <td></td>
+ <td align=left valign=bottom>Flushes only the specified file.</td></tr>
+ </table>
+ </center>
<dt><strong>Parameters:</strong>
<dl>
<dt><em>const char *</em><code>object_id</code>
<dd>Identifier of object used to identify the file.
+ <dt><em>H5F_scope_t</em> <code>scope</code>
+ <dd>Specifies the scope of the flushing action.
</dl>
<dt><strong>Returns:</strong>
- <dd>Returns SUCCEED (0) if successful;
- otherwise returns FAIL (-1).
+ <dd>Returns a non-negative value if successful;
+ otherwise returns a negative value.
</dl>
@@ -215,7 +235,7 @@ documented below.
</dl>
<dt><strong>Returns:</strong>
<dd>Returns <code>TRUE</code> or <code>FALSE</code> if successful.
- Otherwise returns FAIL (-1).
+ Otherwise returns a negative value.
</dl>
@@ -247,7 +267,7 @@ documented below.
</dl>
<dt><strong>Returns:</strong>
<dd>Returns a file creation property list identifier if successful;
- otherwise FAIL (-1).
+ otherwise returns a negative value.
</dl>
@@ -276,7 +296,7 @@ documented below.
</dl>
<dt><strong>Returns:</strong>
<dd>Returns a file access property list identifier if successful;
- otherwise FAIL (-1).
+ otherwise returns a negative value.
</dl>
@@ -299,8 +319,35 @@ documented below.
<dd>Identifier of a file to terminate access to.
</dl>
<dt><strong>Returns:</strong>
- <dd>Returns SUCCEED (0) if successful;
- otherwise FAIL (-1).
+ <dd>Returns a non-negative value if successful;
+ otherwise returns a negative value.
+</dl>
+
+
+<hr>
+<dl>
+<dt><strong>Name:</strong> <a name="File-Reopen">H5Freopen</a>
+<dt><strong>Signature:</strong>
+ <dd><em>hid__t </em><code>H5Freopen</code>(<em>hid_t</em> <code>file_id</code>
+ )
+<dt><strong>Purpose:</strong>
+ <dd>Reopens an HDF5 file.
+<dt><strong>Description:</strong>
+ <dd><code>H5Freopen</code> reopens an HDF5 file. The new
+ file identifier which is returned points to the same file
+ as the specified file idetifier, <code>file_id</code>.
+ Both identifiers share caches and other information.
+ The only difference between the identifiers is that the
+ new identifier is not mounted anywhere and no files are
+ mounted on it.
+<dt><strong>Parameters:</strong>
+ <dl>
+ <dt><em>hid_t</em> <code>file_id</code>
+ <dd>Identifier of a file to terminate access to.
+ </dl>
+<dt><strong>Returns:</strong>
+ <dd>Returns a new file identifier if successful;
+ otherwise returns a negative value.
</dl>
@@ -313,7 +360,10 @@ documented below.
<a href="RM_H5E.html">H5E</a>&nbsp;&nbsp;
H5F&nbsp;&nbsp;
<a href="RM_H5G.html">H5G</a>&nbsp;&nbsp;
+<a href="RM_H5I.html">H5I</a>&nbsp;&nbsp;
<a href="RM_H5P.html">H5P</a>&nbsp;&nbsp;
+<a href="RM_H5R.html">H5R</a>&nbsp;&nbsp;
+<a href="RM_H5RA.html">H5RA</a>&nbsp;&nbsp;
<a href="RM_H5S.html">H5S</a>&nbsp;&nbsp;
<a href="RM_H5T.html">H5T</a>&nbsp;&nbsp;
<a href="RM_H5Z.html">H5Z</a>&nbsp;&nbsp;
@@ -328,7 +378,7 @@ H5F&nbsp;&nbsp;
<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a>
<br>
-Last modified: 14 August 1998
+Last modified: 27 October 1998
</body>
</html>