qemu-log: Rename CPULogItem, cpu_log_items to QEMULogItem, qemu_log_items

Rename the typedef CPULogItem and the public array cpu_log_items
to names that better reflect the fact that the qemu_log functionality
isn't restricted to TCG CPU debug logs any more.

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>
This commit is contained in:
Peter Maydell 2013-02-11 16:41:25 +00:00 committed by Blue Swirl
parent b946bffab5
commit 38dad9e574
3 changed files with 11 additions and 11 deletions

View file

@ -135,13 +135,13 @@ static inline void qemu_log_try_set_file(FILE *f)
}
/* define log items */
typedef struct CPULogItem {
typedef struct QEMULogItem {
int mask;
const char *name;
const char *help;
} CPULogItem;
} QEMULogItem;
extern const CPULogItem cpu_log_items[];
extern const QEMULogItem qemu_log_items[];
/* This is the function that actually does the work of
* changing the log level; it should only be accessed via