diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2015-08-19 16:20:19 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-08-19 16:29:53 +0100 |
commit | 71baf787d8fa2a5d186f22d8154069fd212be37f (patch) | |
tree | f9b4fa7d477fab0cd549106ef5f96791fdfceb27 /user-exec.c | |
parent | 38e20cac669083e2e10a2a9a9602cb99ec19299e (diff) |
osdep.h: Remove qemu_printf
qemu_printf is an ancient remnant which has been a simple #define to
printf for over a decade, and is used in only a few places. Expand
it out in those places and remove the #define.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'user-exec.c')
-rw-r--r-- | user-exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user-exec.c b/user-exec.c index ed9a07f159..8ad89a466b 100644 --- a/user-exec.c +++ b/user-exec.c @@ -92,8 +92,8 @@ static inline int handle_cpu_signal(uintptr_t pc, unsigned long address, int ret; #if defined(DEBUG_SIGNAL) - qemu_printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", - pc, address, is_write, *(unsigned long *)old_set); + printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", + pc, address, is_write, *(unsigned long *)old_set); #endif /* XXX: locking issue */ if (is_write && h2g_valid(address) |