summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-07-23 13:58:00 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-07-23 13:58:00 (GMT)
commite3964f7c160879000bebb27b1845a157f117265d (patch)
tree20e74f4794bd3cd54fbab343fd6aab5d3a4e7bff /src/H5Fint.c
parenta487ca20d961937e39f7f46b183f1be1c33022d4 (diff)
parent1ebce1bfcf419ff6d0bf4cea2735cffb26b7a787 (diff)
downloadhdf5-e3964f7c160879000bebb27b1845a157f117265d.zip
hdf5-e3964f7c160879000bebb27b1845a157f117265d.tar.gz
hdf5-e3964f7c160879000bebb27b1845a157f117265d.tar.bz2
[svn-r25471] merge from trunk and resolve conflicts.
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c42
1 files changed, 41 insertions, 1 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index 2d0ef4e..00ab3ec 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -13,13 +13,19 @@
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+/****************/
+/* Module Setup */
+/****************/
+
#define H5F_PACKAGE /*suppress error about including H5Fpkg */
/* Interface initialization */
#define H5_INTERFACE_INIT_FUNC H5F_init_interface
-/* Packages needed by this file... */
+/***********/
+/* Headers */
+/***********/
#include "H5private.h" /* Generic Functions */
#include "H5Aprivate.h" /* Attributes */
#include "H5ACprivate.h" /* Metadata cache */
@@ -37,6 +43,15 @@
#include "H5VLnative.h" /* Native Plugin */
#include "H5VLprivate.h" /* VOL plugins */
+
+/****************/
+/* Local Macros */
+/****************/
+
+/******************/
+/* Local Typedefs */
+/******************/
+
/* Struct only used by functions H5F_get_objects and H5F_get_objects_cb */
typedef struct H5F_olist_t {
H5I_type_t obj_type; /* Type of object to look for */
@@ -53,6 +68,16 @@ typedef struct H5F_olist_t {
size_t max_nobjs; /* Maximum # of IDs to put into array */
} H5F_olist_t;
+
+/********************/
+/* Package Typedefs */
+/********************/
+
+
+/********************/
+/* Local Prototypes */
+/********************/
+
/* private prototypes */
static H5F_t *H5F_new(H5F_file_t *shared, unsigned flags, hid_t fcpl_id,
hid_t fapl_id, H5FD_t *lf);
@@ -60,6 +85,21 @@ static herr_t H5F_build_actual_name(const H5F_t *f, const H5P_genplist_t *fapl,
const char *name, char ** /*out*/ actual_name);
static herr_t H5F_dest(H5F_t *f, hid_t dxpl_id, hbool_t flush);
+
+/*********************/
+/* Package Variables */
+/*********************/
+
+
+/*****************************/
+/* Library Private Variables */
+/*****************************/
+
+
+/*******************/
+/* Local Variables */
+/*******************/
+
/* Declare a free list to manage the H5F_t struct */
H5FL_DEFINE(H5F_t);