diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-08 20:09:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-08 20:09:07 (GMT) |
commit | 390f1d02846803abfd46d30b3bd27894a30698c6 (patch) | |
tree | aa0269135e97f1e92f0c33d970dac519d5025532 /src/H5G.c | |
parent | 3fff86acfa11ab756a8f72f3a30478677fb7bcf6 (diff) | |
download | hdf5-390f1d02846803abfd46d30b3bd27894a30698c6.zip hdf5-390f1d02846803abfd46d30b3bd27894a30698c6.tar.gz hdf5-390f1d02846803abfd46d30b3bd27894a30698c6.tar.bz2 |
[svn-r6837] Purpose:
Code cleanup.
Description:
Move many package or internal function prototypes and macro definitions
into tighter scope according to their current use.
Added more comments where appropriate.
Eliminate ancient, unused functions.
Added a couple "accessor" functions to get parts of data structures which
were moved out of scope.
Platforms tested:
h5committested
Diffstat (limited to 'src/H5G.c')
-rw-r--r-- | src/H5G.c | 25 |
1 files changed, 13 insertions, 12 deletions
@@ -89,21 +89,22 @@ #define H5F_PACKAGE /*suppress error about including H5Fpkg */ /* Packages needed by this file... */ -#include "H5private.h" -#include "H5Aprivate.h" -#include "H5Bprivate.h" -#include "H5Dprivate.h" -#include "H5Eprivate.h" -#include "H5Fpkg.h" /*file access */ -#include "H5FLprivate.h" /*Free Lists */ -#include "H5Gpkg.h" -#include "H5HLprivate.h" -#include "H5Iprivate.h" -#include "H5MMprivate.h" -#include "H5Oprivate.h" +#include "H5private.h" /* Generic Functions */ +#include "H5Aprivate.h" /* Attributes */ +#include "H5Bprivate.h" /* B-trees */ +#include "H5Dprivate.h" /* Dataset functions */ +#include "H5Eprivate.h" /* Error handling */ +#include "H5Fpkg.h" /* File access */ +#include "H5FLprivate.h" /* Free Lists */ +#include "H5Gpkg.h" /* Groups */ +#include "H5HLprivate.h" /* Local Heaps */ +#include "H5Iprivate.h" /* IDs */ +#include "H5MMprivate.h" /* Memory management */ +#include "H5Oprivate.h" /* Object headers */ #define H5G_INIT_HEAP 8192 #define H5G_RESERVED_ATOMS 0 + #define PABLO_MASK H5G_mask /* Interface initialization */ |