summaryrefslogtreecommitdiffstats
path: root/src/H5FDlog.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-05-08 23:09:59 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-05-08 23:09:59 (GMT)
commit5c354908b92a67ada5205303300b0e90d20bfffc (patch)
treee812984eeb3ba721eef3a95f71ef01fe5d816da3 /src/H5FDlog.h
parent04152995a9dbeed0bb4def400456bf3a9118d9aa (diff)
downloadhdf5-5c354908b92a67ada5205303300b0e90d20bfffc.zip
hdf5-5c354908b92a67ada5205303300b0e90d20bfffc.tar.gz
hdf5-5c354908b92a67ada5205303300b0e90d20bfffc.tar.bz2
[svn-r2223] Added logging version of sec2 file driver. This is _reallly_ useful for
tracking the actual I/O locations and space used in a file during an application.
Diffstat (limited to 'src/H5FDlog.h')
-rw-r--r--src/H5FDlog.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/H5FDlog.h b/src/H5FDlog.h
new file mode 100644
index 0000000..1e98c1a
--- /dev/null
+++ b/src/H5FDlog.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright © 2000 NCSA
+ * All rights reserved.
+ *
+ * Programmer: Quincey Koziol <koziol@ncsa.uiuc.edu>
+ * Monday, April 17, 2000
+ *
+ * Purpose: The public header file for the log driver.
+ */
+#ifndef H5FDlog_H
+#define H5FDlog_H
+
+#include <H5Ipublic.h>
+
+#define H5FD_QAK (H5FD_log_init())
+
+__DLL__ hid_t H5FD_log_init(void);
+__DLL__ herr_t H5Pset_fapl_log(hid_t fapl_id, const char *logfile, int verbosity);
+
+#endif
+