diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-11 12:44:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-11 12:44:24 (GMT) |
commit | 6a41c76c043594b5c794d67b1f056852be98cf75 (patch) | |
tree | 4262aab12db5f5d7f4ead7fc825289ca056b70b6 /doc | |
parent | ed92f54f9bae998ffe1f686f4f4ea61cd4bbdade (diff) | |
download | hdf5-6a41c76c043594b5c794d67b1f056852be98cf75.zip hdf5-6a41c76c043594b5c794d67b1f056852be98cf75.tar.gz hdf5-6a41c76c043594b5c794d67b1f056852be98cf75.tar.bz2 |
[svn-r7335] Purpose:
Update docs
Description:
Updated docs with new H5G_stat_t structure.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/html/RM_H5G.html | 8 | ||||
-rw-r--r-- | doc/src/RM_H5G.html | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/RM_H5G.html b/doc/html/RM_H5G.html index 84acb60..ee7b596 100644 --- a/doc/html/RM_H5G.html +++ b/doc/html/RM_H5G.html @@ -748,8 +748,8 @@ create or access function. <code>H5Gget_objinfo</code> fills in the following data structure: <pre> typedef struct H5G_stat_t { - unsigned long fileno[2]; - unsigned long objno[2]; + unsigned long fileno; + haddr_t objno; unsigned nlink; int type; time_t mtime; @@ -757,8 +757,8 @@ create or access function. } H5G_stat_t </pre> The <code>fileno</code> and <code>objno</code> fields contain - four values which uniquely itentify an object among those - HDF5 files which are open: if all four values are the same + values which uniquely itentify an object among those + HDF5 files which are open: if both values are the same between two objects, then the two objects are the same (provided both files are still open). <ul> diff --git a/doc/src/RM_H5G.html b/doc/src/RM_H5G.html index 11f76ec..a4ca46a 100644 --- a/doc/src/RM_H5G.html +++ b/doc/src/RM_H5G.html @@ -533,8 +533,8 @@ then be trivial. <code>H5Gget_objinfo()</code> fills in the following data structure: <pre> typedef struct H5G_stat_t { - unsigned long fileno[2]; - unsigned long objno[2]; + unsigned long fileno; + haddr_t objno; unsigned nlink; H5G_obj_t type; time_t mtime; @@ -542,8 +542,8 @@ then be trivial. } H5G_stat_t </pre> The <code>fileno</code> and <code>objno</code> fields contain - four values which uniquely itentify an object among those - HDF5 files which are open: if all four values are the same + values which uniquely itentify an object among those + HDF5 files which are open: if both values are the same between two objects, then the two objects are the same (provided both files are still open). The <code>nlink</code> field is the number of hard links to |