cpu: Move thread_kicked to CPUState

Change field type to bool.

Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
Andreas Färber 2012-05-02 17:49:49 +02:00
parent 814e612eaf
commit 216fc9a44b
3 changed files with 10 additions and 6 deletions

View file

@ -66,6 +66,7 @@ struct CPUState {
#ifdef _WIN32
HANDLE hThread;
#endif
bool thread_kicked;
/* TODO Move common fields from CPUArchState here. */
};