mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
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:
parent
b946bffab5
commit
38dad9e574
3 changed files with 11 additions and 11 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue