mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
exec.h: fix coding style and change cpu_has_work to return bool
Before the next patch, fix coding style of the areas affected. Change the type of the return value from cpu_has_work() and qemu_cpu_has_work() to bool. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
d8108fb187
commit
f3e270377a
15 changed files with 24 additions and 24 deletions
|
|
@ -847,7 +847,7 @@ void cpu_reset_interrupt(CPUState *env, int mask);
|
|||
|
||||
void cpu_exit(CPUState *s);
|
||||
|
||||
int qemu_cpu_has_work(CPUState *env);
|
||||
bool qemu_cpu_has_work(CPUState *env);
|
||||
|
||||
/* Breakpoint/watchpoint flags */
|
||||
#define BP_MEM_READ 0x01
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue