diff options
-rw-r--r-- | bsd-user/main.c | 2 | ||||
-rw-r--r-- | cpus.c | 5 | ||||
-rw-r--r-- | include/qemu/log.h | 2 | ||||
-rw-r--r-- | include/sysemu/cpus.h | 1 | ||||
-rw-r--r-- | linux-user/main.c | 4 | ||||
-rw-r--r-- | monitor.c | 2 | ||||
-rw-r--r-- | qemu-log.c | 2 | ||||
-rw-r--r-- | vl.c | 2 |
8 files changed, 7 insertions, 13 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index ae24723710..76ab35909c 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -861,7 +861,7 @@ int main(int argc, char **argv) } /* init debug */ - cpu_set_log_filename(log_file); + qemu_set_log_filename(log_file); if (log_mask) { int mask; const CPULogItem *item; @@ -1191,11 +1191,6 @@ void set_cpu_log(const char *optarg) cpu_set_log(mask); } -void set_cpu_log_filename(const char *optarg) -{ - cpu_set_log_filename(optarg); -} - void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg) { /* XXX: implement xxx_cpu_list for targets that still miss it */ diff --git a/include/qemu/log.h b/include/qemu/log.h index 58f69cb494..4760e04c5e 100644 --- a/include/qemu/log.h +++ b/include/qemu/log.h @@ -154,7 +154,7 @@ static inline void cpu_set_log(int log_flags) #endif } -void cpu_set_log_filename(const char *filename); +void qemu_set_log_filename(const char *filename); int cpu_str_to_log_mask(const char *str); #endif diff --git a/include/sysemu/cpus.h b/include/sysemu/cpus.h index f7f6854259..60e44bb70c 100644 --- a/include/sysemu/cpus.h +++ b/include/sysemu/cpus.h @@ -25,7 +25,6 @@ extern int smp_threads; void set_numa_modes(void); void set_cpu_log(const char *optarg); -void set_cpu_log_filename(const char *optarg); void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg); #endif diff --git a/linux-user/main.c b/linux-user/main.c index 7902f3beb2..4beb5c9ae5 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -3113,7 +3113,7 @@ static void handle_arg_log(const char *arg) static void handle_arg_log_filename(const char *arg) { - cpu_set_log_filename(arg); + qemu_set_log_filename(arg); } static void handle_arg_set_env(const char *arg) @@ -3480,7 +3480,7 @@ int main(int argc, char **argv, char **envp) #endif /* init debug */ - cpu_set_log_filename(log_file); + qemu_set_log_filename(log_file); optind = parse_args(argc, argv); /* Zero out regs */ @@ -964,7 +964,7 @@ static int client_migrate_info(Monitor *mon, const QDict *qdict, static void do_logfile(Monitor *mon, const QDict *qdict) { - cpu_set_log_filename(qdict_get_str(qdict, "filename")); + qemu_set_log_filename(qdict_get_str(qdict, "filename")); } static void do_log(Monitor *mon, const QDict *qdict) diff --git a/qemu-log.c b/qemu-log.c index 30c9ab01bd..9a7e5675a1 100644 --- a/qemu-log.c +++ b/qemu-log.c @@ -86,7 +86,7 @@ void qemu_set_log(int log_flags, bool use_own_buffers) } } -void cpu_set_log_filename(const char *filename) +void qemu_set_log_filename(const char *filename) { g_free(logfilename); logfilename = g_strdup(filename); @@ -3865,7 +3865,7 @@ int main(int argc, char **argv, char **envp) */ if (log_mask) { if (log_file) { - set_cpu_log_filename(log_file); + qemu_set_log_filename(log_file); } set_cpu_log(log_mask); } |