diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-02-11 16:41:22 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-02-16 10:44:27 +0000 |
commit | 4fde1eba0f98779d4fdb64818071f72bb1672438 (patch) | |
tree | 408a041b912ad03c221697db374ff8154fc3989d | |
parent | 59a6fa6e67d2335d867c66c59d992847e5b62879 (diff) | |
download | hqemu-4fde1eba0f98779d4fdb64818071f72bb1672438.zip hqemu-4fde1eba0f98779d4fdb64818071f72bb1672438.tar.gz |
qemu-log: Rename cpu_str_to_log_mask to qemu_str_to_log_mask
Rename cpu_str_to_log_mask() to qemu_str_to_log_mask(), since
the qemu_log functionality is no longer restricted to TCG CPU
debug logging.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | bsd-user/main.c | 2 | ||||
-rw-r--r-- | cpus.c | 2 | ||||
-rw-r--r-- | include/qemu/log.h | 2 | ||||
-rw-r--r-- | linux-user/main.c | 2 | ||||
-rw-r--r-- | monitor.c | 2 | ||||
-rw-r--r-- | qemu-log.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index 26604b4..4b12e65 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -865,7 +865,7 @@ int main(int argc, char **argv) if (log_mask) { int mask; - mask = cpu_str_to_log_mask(log_mask); + mask = qemu_str_to_log_mask(log_mask); if (!mask) { qemu_print_log_usage(stdout); exit(1); @@ -1179,7 +1179,7 @@ void set_cpu_log(const char *optarg) { int mask; - mask = cpu_str_to_log_mask(optarg); + mask = qemu_str_to_log_mask(optarg); if (!mask) { qemu_print_log_usage(stdout); exit(1); diff --git a/include/qemu/log.h b/include/qemu/log.h index 59511a3..10792ce 100644 --- a/include/qemu/log.h +++ b/include/qemu/log.h @@ -155,7 +155,7 @@ static inline void cpu_set_log(int log_flags) } void qemu_set_log_filename(const char *filename); -int cpu_str_to_log_mask(const char *str); +int qemu_str_to_log_mask(const char *str); /* Print a usage message listing all the valid logging categories * to the specified FILE*. diff --git a/linux-user/main.c b/linux-user/main.c index 00b0125..862619b 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -3099,7 +3099,7 @@ static void handle_arg_log(const char *arg) { int mask; - mask = cpu_str_to_log_mask(arg); + mask = qemu_str_to_log_mask(arg); if (!mask) { qemu_print_log_usage(stdout); exit(1); @@ -975,7 +975,7 @@ static void do_log(Monitor *mon, const QDict *qdict) if (!strcmp(items, "none")) { mask = 0; } else { - mask = cpu_str_to_log_mask(items); + mask = qemu_str_to_log_mask(items); if (!mask) { help_cmd(mon, "log"); return; @@ -136,7 +136,7 @@ static int cmp1(const char *s1, int n, const char *s2) } /* takes a comma separated list of log masks. Return 0 if error. */ -int cpu_str_to_log_mask(const char *str) +int qemu_str_to_log_mask(const char *str) { const CPULogItem *item; int mask; |