summaryrefslogtreecommitdiffstats
path: root/tester/covoar/skyeye_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/skyeye_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/skyeye_header.h')
-rw-r--r--tester/covoar/skyeye_header.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/tester/covoar/skyeye_header.h b/tester/covoar/skyeye_header.h
new file mode 100644
index 0000000..d187239
--- /dev/null
+++ b/tester/covoar/skyeye_header.h
@@ -0,0 +1,21 @@
+/*! @file skyeye_header.h
+ * @brief skyeye_header Implementation
+ *
+ * This file contains the definition of the format
+ * for coverage files written by the Skyeye simulator.
+ */
+
+#ifndef __Skyeye_Header_h
+#define __Skyeye_Header_h
+
+#define MAX_DESC_STR 32
+
+typedef struct prof_header_s {
+ int ver; /** the version of header file */
+ int header_length; /** The length of header */
+ int prof_start;
+ int prof_end;
+ char desc[MAX_DESC_STR]; /** The description info for profiling file */
+} prof_header_t;
+
+#endif