diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-02-11 16:41:25 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-02-16 10:45:46 +0000 |
commit | 38dad9e574746981dfbac52b3bbbd6d894f31d26 (patch) | |
tree | 9facbc37ad39b0d2b1e0d9e67cb189d2aa6cb8a7 /include | |
parent | b946bffab5e0d359accfcc78faead20fd69f26e8 (diff) |
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/qemu/log.h b/include/qemu/log.h index 5dcbe11d47..5a46555112 100644 --- a/include/qemu/log.h +++ b/include/qemu/log.h @@ -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 |