summaryrefslogtreecommitdiffstats
path: root/src/H5PLpkg.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2013-03-14 20:00:48 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2013-03-14 20:00:48 (GMT)
commite37ee97a58733d3739d5e2588bdea9a1453fa023 (patch)
treedeefa3b1f0dbfe037026c2dbb3b8a365d6da018a /src/H5PLpkg.h
parent08359be858ae9e4595dab1f4a7718017d9af7663 (diff)
downloadhdf5-e37ee97a58733d3739d5e2588bdea9a1453fa023.zip
hdf5-e37ee97a58733d3739d5e2588bdea9a1453fa023.tar.gz
hdf5-e37ee97a58733d3739d5e2588bdea9a1453fa023.tar.bz2
[svn-r23350] I cleaned up some code and added comments for my previous checkin of the DESY project.
Tested on koala.
Diffstat (limited to 'src/H5PLpkg.h')
-rw-r--r--src/H5PLpkg.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5PLpkg.h b/src/H5PLpkg.h
index adbe38a..dae4c59 100644
--- a/src/H5PLpkg.h
+++ b/src/H5PLpkg.h
@@ -29,6 +29,7 @@
/* Local typedefs */
/****************************/
+/* Type for the list of info for opened plugin libraries */
typedef struct H5PL_table_t {
H5PL_type_t pl_type; /* plugin type */
int pl_id; /* ID for the plugin */
@@ -39,10 +40,12 @@ typedef struct H5PL_table_t {
/* Local variables */
/****************************/
+/* Table for opened plugin libraries */
static size_t H5PL_table_alloc_g = 0;
static size_t H5PL_table_used_g = 0;
static H5PL_table_t *H5PL_table_g = NULL;
+/* Table of location paths for plugin libraries */
static char *path_table[MAX_PATH_NUM];
static size_t num_paths = 0;
static htri_t path_found = FALSE;