mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 20:35:41 +00:00
cpu: drop old comments describing members
These comments are obviously stale. Backports commit 6fda014e1a65474c4877b36cc42e8a0f377817a4 from qemu
This commit is contained in:
parent
3017797f7d
commit
6f9b7a9363
|
@ -317,14 +317,14 @@ struct CPUState {
|
||||||
struct kvm_run *kvm_run;
|
struct kvm_run *kvm_run;
|
||||||
|
|
||||||
/* TODO Move common fields from CPUArchState here. */
|
/* TODO Move common fields from CPUArchState here. */
|
||||||
int cpu_index; /* used by alpha TCG */
|
int cpu_index;
|
||||||
uint32_t halted; /* used by alpha, cris, ppc TCG */
|
uint32_t halted;
|
||||||
union {
|
union {
|
||||||
uint32_t u32;
|
uint32_t u32;
|
||||||
icount_decr_u16 u16;
|
icount_decr_u16 u16;
|
||||||
} icount_decr;
|
} icount_decr;
|
||||||
uint32_t can_do_io;
|
uint32_t can_do_io;
|
||||||
int32_t exception_index; /* used by m68k TCG */
|
int32_t exception_index;
|
||||||
|
|
||||||
/* Used to keep track of an outstanding cpu throttle thread for migration
|
/* Used to keep track of an outstanding cpu throttle thread for migration
|
||||||
* autoconverge
|
* autoconverge
|
||||||
|
|
Loading…
Reference in a new issue