diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-04-17 11:30:02 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2022-04-20 10:51:11 -0700 |
commit | 93756fdcf6f3f6482bd9f22d8189b6c4ee09303e (patch) | |
tree | 62b4bda427a4789f4fdc5a24183a57e67d614403 /include/exec/log.h | |
parent | 43b761618de7bb43bacc1c7c38dfdda878714a4c (diff) |
linux-user: Expand log_page_dump inline
We have extra stuff to log at the same time.
Hoist the qemu_log_lock/unlock to the caller and use fprintf.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220417183019.755276-23-richard.henderson@linaro.org>
Diffstat (limited to 'include/exec/log.h')
-rw-r--r-- | include/exec/log.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/exec/log.h b/include/exec/log.h index 06ab9841ee..ad0a40cfeb 100644 --- a/include/exec/log.h +++ b/include/exec/log.h @@ -42,19 +42,4 @@ static inline void log_cpu_state_mask(int mask, CPUState *cpu, int flags) } } -#ifdef NEED_CPU_H -#if defined(CONFIG_USER_ONLY) -/* page_dump() output to the log file: */ -static inline void log_page_dump(const char *operation) -{ - FILE *logfile = qemu_log_trylock(); - if (logfile) { - fprintf(logfile, "page layout changed following %s\n", operation); - page_dump(logfile); - } - qemu_log_unlock(logfile); -} -#endif -#endif - #endif |