summaryrefslogtreecommitdiffstats
path: root/tester/covoar/qemu-log.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/qemu-log.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/qemu-log.h')
-rw-r--r--tester/covoar/qemu-log.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/tester/covoar/qemu-log.h b/tester/covoar/qemu-log.h
new file mode 100644
index 0000000..cbca05e
--- /dev/null
+++ b/tester/covoar/qemu-log.h
@@ -0,0 +1,23 @@
+
+/*
+ * Qemu log file format.
+ */
+
+#ifndef QEMU_LOG_H
+#define QEMU_LOG_H
+
+#define QEMU_LOG_SECTION_END "----------------"
+#define QEMU_LOG_IN_KEY "IN: "
+
+/*!
+ * This structure breaks apart the log line information
+ * into the components address, instruction and data.
+ */
+typedef struct {
+ unsigned long address;
+ char instruction[10];
+ char data[20];
+} QEMU_LOG_IN_Block_t;
+
+
+#endif /* QEMU_LOG_H */