summaryrefslogtreecommitdiffstats
path: root/tester/covoar/rtemscov_header.h
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-05-09 21:50:37 +1000
committerChris Johns <chrisj@rtems.org>2014-06-18 16:48:08 +1200
commit100f517ab37265acdf067e36b6860020ec8b2184 (patch)
tree2316c8b888e11dcbcfbfc66a0c1e31991ea20656 /tester/covoar/rtemscov_header.h
parent4.11: Add ntp patch. (diff)
downloadrtems-tools-100f517ab37265acdf067e36b6860020ec8b2184.tar.bz2
covoar: Merger the covoar source from rtems-testing.git.
Use waf to build covoar.
Diffstat (limited to 'tester/covoar/rtemscov_header.h')
-rw-r--r--tester/covoar/rtemscov_header.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/tester/covoar/rtemscov_header.h b/tester/covoar/rtemscov_header.h
new file mode 100644
index 0000000..5b3e263
--- /dev/null
+++ b/tester/covoar/rtemscov_header.h
@@ -0,0 +1,32 @@
+/*! @file rtemscov_header.h
+ * @brief rtemscov_header Implementation
+ *
+ * This file contains the implementation of the functions supporting
+ * RTEMS Common Coverage Map file format.
+ *
+ */
+
+#ifndef __RTEMS_Coverage_Header_h
+#define __RTEMS_Coverage_Header_h
+
+#define MAX_DESC_STR 32
+
+/*!
+ *
+ * This structure contains XXX
+ */
+
+typedef struct prof_header_s{
+ /** the version of header file */
+ int ver;
+ /** The length of header */
+ int header_length;
+ /** starting address */
+ int start;
+ /** ending address */
+ int end;
+ /** The description info for profiling file */
+ char desc[MAX_DESC_STR];
+} rtems_coverage_map_header_t;
+
+#endif