diff options
author | Alex Bennée | 2019-12-05 13:25:13 +0100 |
---|---|---|
committer | Alex Bennée | 2019-12-19 09:20:16 +0100 |
commit | 5a67bb96b0c4ea9f089b97edf88f3f06a4611850 (patch) | |
tree | 706cb046a28240e0c957eb9a50abace57f258dbd /linux-user/trace-events | |
parent | linux-user: convert target_mprotect debug to tracepoint (diff) | |
download | qemu-5a67bb96b0c4ea9f089b97edf88f3f06a4611850.tar.gz qemu-5a67bb96b0c4ea9f089b97edf88f3f06a4611850.tar.xz qemu-5a67bb96b0c4ea9f089b97edf88f3f06a4611850.zip |
linux-user: convert target_mmap debug to tracepoint
It is a pain to re-compile when you need to debug and tracepoints are
a fairly low impact way to instrument QEMU.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20191205122518.10010-3-alex.bennee@linaro.org>
Diffstat (limited to 'linux-user/trace-events')
-rw-r--r-- | linux-user/trace-events | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/trace-events b/linux-user/trace-events index 8419243de4..8d8d4c3c68 100644 --- a/linux-user/trace-events +++ b/linux-user/trace-events @@ -14,3 +14,4 @@ user_s390x_restore_sigregs(void *env, uint64_t sc_psw_addr, uint64_t env_psw_add # mmap.c target_mprotect(uint64_t start, uint64_t len, int flags) "start=0x%"PRIx64 " len=0x%"PRIx64 " prot=0x%x" +target_mmap(uint64_t start, uint64_t len, int pflags, int mflags, int fd, uint64_t offset) "start=0x%"PRIx64 " len=0x%"PRIx64 " prot=0x%x flags=0x%x fd=%d offset=0x%"PRIx64 |