|
|
The BNodeContainer is used to store B-Trees. Currently only one B-Tree is in use by this filesystem and it is used to store the location of file data. The fsBNodeContainer structure contains two other structures. The fsBlockHeader structure and the BTreeContainer structure.
struct fsBNodeContainer { struct fsBlockHeader bheader; struct BTreeContainer btc; }; |
All rights reserved.
|