#define QEMU_CPU_H
#include "qemu/object.h"
+#include "qemu-thread.h"
/**
* SECTION:cpu
/**
* CPUClass:
- * @reset: Callback to reset the #CPU to its initial state.
+ * @reset: Callback to reset the #CPUState to its initial state.
*
* Represents a CPU family or model.
*/
Object parent_obj;
/*< public >*/
- /* TODO Move common fields from CPUState here. */
+ struct QemuThread *thread;
+#ifdef _WIN32
+ HANDLE hThread;
+#endif
+
+ /* TODO Move common fields from CPUArchState here. */
};