summaryrefslogtreecommitdiffstats
path: root/src/H5trace.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-04-02 18:42:19 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-04-02 18:42:19 (GMT)
commiteccf5307099a419ac73d26ab31c4ed2ac6a26a5b (patch)
tree46b7dd04e355df9052eb0686a5573802d81b0be4 /src/H5trace.c
parentf6d0ea3b1b94b27d323f7a33684f67f298366cd8 (diff)
downloadhdf5-eccf5307099a419ac73d26ab31c4ed2ac6a26a5b.zip
hdf5-eccf5307099a419ac73d26ab31c4ed2ac6a26a5b.tar.gz
hdf5-eccf5307099a419ac73d26ab31c4ed2ac6a26a5b.tar.bz2
[svn-r23523] - Add event queue objects
- Use those event queues for the FF API routines - update underlying VL layer and IOD plugin to manage event queues - updates tests
Diffstat (limited to 'src/H5trace.c')
-rw-r--r--src/H5trace.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/H5trace.c b/src/H5trace.c
index 92736d4..24b052e 100644
--- a/src/H5trace.c
+++ b/src/H5trace.c
@@ -1250,6 +1250,14 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
fprintf(out, "%ld (file driver)", (long)obj);
break;
+ case H5I_VOL:
+ fprintf(out, "%ld (file VOL plugin)", (long)obj);
+ break;
+
+ case H5I_EQ:
+ fprintf(out, "%ld (event queue)", (long)obj);
+ break;
+
case H5I_GENPROP_CLS:
fprintf(out, "%ld (genprop class)", (long)obj);
break;
@@ -1431,6 +1439,14 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
fprintf(out, "H5I_VFL");
break;
+ case H5I_VOL:
+ fprintf(out, "H5I_VOL");
+ break;
+
+ case H5I_EQ:
+ fprintf(out, "H5I_EQ");
+ break;
+
case H5I_GENPROP_CLS:
fprintf(out, "H5I_GENPROP_CLS");
break;