diff options
| author | Richard Henderson | 2022-04-17 20:30:02 +0200 |
|---|---|---|
| committer | Richard Henderson | 2022-04-20 19:51:11 +0200 |
| commit | 93756fdcf6f3f6482bd9f22d8189b6c4ee09303e (patch) | |
| tree | 62b4bda427a4789f4fdc5a24183a57e67d614403 /include | |
| parent | bsd-user: Expand log_page_dump inline (diff) | |
| download | qemu-93756fdcf6f3f6482bd9f22d8189b6c4ee09303e.tar.gz qemu-93756fdcf6f3f6482bd9f22d8189b6c4ee09303e.tar.xz qemu-93756fdcf6f3f6482bd9f22d8189b6c4ee09303e.zip | |
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')
| -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 |
