diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-12-05 12:25:14 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-12-19 08:20:16 +0000 |
commit | d0e165ae2bdf107f3c63bf11138097869d91ef2e (patch) | |
tree | 1a2dc2ff27c2c39eb196fdb66799d064208f3581 /linux-user/mmap.c | |
parent | 5a67bb96b0c4ea9f089b97edf88f3f06a4611850 (diff) |
linux-user: add target_mmap_complete tracepoint
For full details we also want to see where the mmaps end up.
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-4-alex.bennee@linaro.org>
Diffstat (limited to 'linux-user/mmap.c')
-rw-r--r-- | linux-user/mmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/mmap.c b/linux-user/mmap.c index f4f10deaea..0b1b43ac3c 100644 --- a/linux-user/mmap.c +++ b/linux-user/mmap.c @@ -538,8 +538,8 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, int prot, the_end1: page_set_flags(start, start + len, prot | PAGE_VALID); the_end: + trace_target_mmap_complete(start); #ifdef DEBUG_MMAP - printf("ret=0x" TARGET_ABI_FMT_lx "\n", start); page_dump(stdout); printf("\n"); #endif |