diff options
Diffstat (limited to 'doc/html')
-rw-r--r-- | doc/html/ExternalFiles.html | 4 | ||||
-rw-r--r-- | doc/html/MemoryManagement.html | 2 | ||||
-rw-r--r-- | doc/html/RM_H5G.html | 2 | ||||
-rw-r--r-- | doc/html/RM_H5P.html | 6 | ||||
-rw-r--r-- | doc/html/compat.html | 10 | ||||
-rw-r--r-- | doc/html/ddl.html | 6 | ||||
-rw-r--r-- | doc/html/review1a.html | 4 |
7 files changed, 17 insertions, 17 deletions
diff --git a/doc/html/ExternalFiles.html b/doc/html/ExternalFiles.html index c3197af..0213ea8 100644 --- a/doc/html/ExternalFiles.html +++ b/doc/html/ExternalFiles.html @@ -64,10 +64,10 @@ <h3>Single Address Space</h3> <p>The simplest form of hdf5 file is a single file containing only - hdf5 data. The file begins with the boot block, which is + hdf5 data. The file begins with the super block, which is followed until the end of the file by hdf5 data. The next most complicated file allows non-hdf5 data (user defined data or - internal wrappers) to appear before the boot block and after the + internal wrappers) to appear before the super block and after the end of the hdf5 data. The hdf5 data is treated as a single linear address space in both cases. diff --git a/doc/html/MemoryManagement.html b/doc/html/MemoryManagement.html index 93782b5..c93dc10 100644 --- a/doc/html/MemoryManagement.html +++ b/doc/html/MemoryManagement.html @@ -338,7 +338,7 @@ <p>The file contains an unsorted, doubly-linked list of free blocks. The address of the head of the list appears in the - boot block. Each free block contains the following fields: + super block. Each free block contains the following fields: <center> <table border cellpadding=4 width="60%"> diff --git a/doc/html/RM_H5G.html b/doc/html/RM_H5G.html index fb47ab3..c6bac14 100644 --- a/doc/html/RM_H5G.html +++ b/doc/html/RM_H5G.html @@ -129,7 +129,7 @@ nodes (nodes with out-degree greater than zero) must be groups while the leaf nodes (nodes with out-degree zero) are either empty groups or objects of some other type. Exactly one object in every non-empty file is the root object. The root object always has a -positive in-degree because it is pointed to by the file boot block. +positive in-degree because it is pointed to by the file super block. <p> An object name consists of one or more components separated from diff --git a/doc/html/RM_H5P.html b/doc/html/RM_H5P.html index 41f4022..ef80062 100644 --- a/doc/html/RM_H5P.html +++ b/doc/html/RM_H5P.html @@ -430,7 +430,7 @@ facilitate moving easily between them.</i> <dt><strong>Name:</strong> <a name="Property-GetVersion">H5Pget_version</a> <dt><strong>Signature:</strong> <dd><em>herr_t </em><code>H5Pget_version</code>(<em>hid_t</em> <code>plist</code>, - <em>int *</em> <code>boot</code>, + <em>int *</em> <code>super</code>, <em>int *</em> <code>freelist</code>, <em>int *</em> <code>stab</code>, <em>int *</em> <code>shhdr</code> @@ -446,8 +446,8 @@ facilitate moving easily between them.</i> <dl> <dt><em>hid_t</em> <code>plist</code> <dd>IN: Identifier of the file creation property list. - <dt><em>int *</em> <code>boot</code> - <dd>OUT: Pointer to location to return boot block version number. + <dt><em>int *</em> <code>super</code> + <dd>OUT: Pointer to location to return super block version number. <dt><em>int *</em> <code>freelist</code> <dd>OUT: Pointer to location to return global freelist version number. <dt><em>int *</em> <code>stab</code> diff --git a/doc/html/compat.html b/doc/html/compat.html index 2992476..fd46ca4 100644 --- a/doc/html/compat.html +++ b/doc/html/compat.html @@ -211,11 +211,11 @@ </tr> <tr> <td>User-defined block which is truncated by the size of the - HDF4 file header so that the HDF5 boot block file address + HDF4 file header so that the HDF5 super block file address doesn't change.</td> </tr> <tr> - <td>The HDF5 boot block and data, unmodified by adding the + <td>The HDF5 super block and data, unmodified by adding the HDF4 wrapper.</td> </tr> <tr> @@ -234,9 +234,9 @@ an out of date wrapper. <p>If there is no user block then we have a problem. The HDF5 - boot block must be moved to make room for the HDF4 file header. - But moving just the boot block causes problems because all file - addresses stored in the file are relative to the boot block + super block must be moved to make room for the HDF4 file header. + But moving just the super block causes problems because all file + addresses stored in the file are relative to the super block address. The only option is to shift the entire file contents by 512 bytes to open up a user block (too bad we don't have hooks into the Unix i-node stuff so we could shift the entire diff --git a/doc/html/ddl.html b/doc/html/ddl.html index c16a60c..4f1542f 100644 --- a/doc/html/ddl.html +++ b/doc/html/ddl.html @@ -93,13 +93,13 @@ This section contains a brief explanation of the symbols used in the DDL. <dir> <pre> -<file> ::= HDF5 <file_name> { <file_boot_block><FONT SIZE=1.7>opt</FONT> <root_group> } +<file> ::= HDF5 <file_name> { <file_super_block><FONT SIZE=1.7>opt</FONT> <root_group> } <file_name> ::= <identifier> -<file_boot_block> ::= BOOT_BLOCK { <boot_block_content> } +<file_super_block> ::= BOOT_BLOCK { <super_block_content> } -<boot_block_content> ::= TBD +<super_block_content> ::= TBD <root_group> ::= GROUP "/" { <unamed_datatype>* <object_id><FONT SIZE=1.7>opt</FONT> <group_attribute>* <group_member>* } diff --git a/doc/html/review1a.html b/doc/html/review1a.html index 78a5a84..3df8af7 100644 --- a/doc/html/review1a.html +++ b/doc/html/review1a.html @@ -13,7 +13,7 @@ a directed graph with a single entry point into the graph which is the <i>Root Object</i>. The root object is usually a group. All objects have at least one predecessor (the <i>Root - Object</i> always has the HDF5 file boot block as a + Object</i> always has the HDF5 file super block as a predecessor). The number of predecessors of a group is also known as the <i>hard link count</i> or just <i>link count</i>. Unlike Unix directories, HDF5 groups have no ".." entry since @@ -23,7 +23,7 @@ <p>A special optimization is that a file may contain a single non-group object and no group(s). The object has one - predecessor which is the file boot block. However, once a root + predecessor which is the file super block. However, once a root group is created it never dissappears (although I suppose it could if we wanted). |