Skip to content
Snippets Groups Projects
Commit 8405ec6a authored by Mads Ynddal's avatar Mads Ynddal Committed by Stefan Hajnoczi
Browse files

simpletrace: annotate magic constants from QEMU code


It wasn't clear where the constants and structs came from, so I added
comments to help.

Reviewed-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: default avatarMads Ynddal <m.ynddal@samsung.com>
Message-id: 20230926103436.25700-3-mads@ynddal.dk
Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
parent 2c109f21
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,11 @@
__all__ = ['Analyzer', 'process', 'run']
# This is the binary format that the QEMU "simple" trace backend
# emits. There is no specification documentation because the format is
# not guaranteed to be stable. Trace files must be parsed with the
# same trace-events-all file and the same simpletrace.py file that
# QEMU was built with.
header_event_id = 0xffffffffffffffff
header_magic = 0xf2b177cb0aa429b4
dropped_event_id = 0xfffffffffffffffe
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment