mirror of
https://github.com/mii443/qemu.git
synced 2025-08-31 11:29:26 +00: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:
@ -32,7 +32,7 @@ int tb_invalidated_flag;
|
||||
|
||||
//#define CONFIG_DEBUG_EXEC
|
||||
|
||||
int qemu_cpu_has_work(CPUState *env)
|
||||
bool qemu_cpu_has_work(CPUState *env)
|
||||
{
|
||||
return cpu_has_work(env);
|
||||
}
|
||||
|
Reference in New Issue
Block a user