mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
qemu-log: cleanup
Don't use global variables directly but via accessor functions. Rename globals. Convert macros to functions, add GCC format attributes. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
+2
-1
@@ -1306,8 +1306,9 @@ do { \
|
||||
fprintf(stderr, fmt , ## __VA_ARGS__); \
|
||||
cpu_dump_state(env, stderr, fprintf, 0); \
|
||||
qemu_log(fmt, ## __VA_ARGS__); \
|
||||
if (logfile) \
|
||||
if (qemu_log_enabled()) { \
|
||||
log_cpu_state(env, 0); \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
static int do_store_exclusive(CPUPPCState *env)
|
||||
|
||||
+4
-8
@@ -4378,8 +4378,7 @@ static void setup_frame(int sig, struct target_sigaction *ka,
|
||||
|
||||
sigsegv:
|
||||
unlock_user_struct(frame, frame_addr, 1);
|
||||
if (logfile)
|
||||
fprintf (logfile, "segfaulting from setup_frame\n");
|
||||
qemu_log("segfaulting from setup_frame\n");
|
||||
force_sig(TARGET_SIGSEGV);
|
||||
}
|
||||
|
||||
@@ -4447,8 +4446,7 @@ static void setup_rt_frame(int sig, struct target_sigaction *ka,
|
||||
|
||||
sigsegv:
|
||||
unlock_user_struct(rt_sf, rt_sf_addr, 1);
|
||||
if (logfile)
|
||||
fprintf (logfile, "segfaulting from setup_rt_frame\n");
|
||||
qemu_log("segfaulting from setup_rt_frame\n");
|
||||
force_sig(TARGET_SIGSEGV);
|
||||
|
||||
}
|
||||
@@ -4489,8 +4487,7 @@ long do_sigreturn(CPUPPCState *env)
|
||||
sigsegv:
|
||||
unlock_user_struct(sr, sr_addr, 1);
|
||||
unlock_user_struct(sc, sc_addr, 1);
|
||||
if (logfile)
|
||||
fprintf (logfile, "segfaulting from do_sigreturn\n");
|
||||
qemu_log("segfaulting from do_sigreturn\n");
|
||||
force_sig(TARGET_SIGSEGV);
|
||||
return 0;
|
||||
}
|
||||
@@ -4552,8 +4549,7 @@ long do_rt_sigreturn(CPUPPCState *env)
|
||||
|
||||
sigsegv:
|
||||
unlock_user_struct(rt_sf, rt_sf_addr, 1);
|
||||
if (logfile)
|
||||
fprintf (logfile, "segfaulting from do_rt_sigreturn\n");
|
||||
qemu_log("segfaulting from do_rt_sigreturn\n");
|
||||
force_sig(TARGET_SIGSEGV);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user