diff options
author | Andreas Färber <afaerber@suse.de> | 2012-05-02 22:28:58 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-05-08 11:15:18 -0500 |
commit | f5df5baf11a32ae6a669ac945625d1c3e4deb76d (patch) | |
tree | 3e3992cd26e913dcc2a548b736ad906f0fc861cd /include/qemu | |
parent | 175003702a4d9ac6dd58413c348efefd309b778c (diff) | |
download | hqemu-f5df5baf11a32ae6a669ac945625d1c3e4deb76d.zip hqemu-f5df5baf11a32ae6a669ac945625d1c3e4deb76d.tar.gz |
cpu: Update documentation and comment
State struct CPU had been renamed to CPUState, former CPUState to
CPUArchState.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/qemu/cpu.h b/include/qemu/cpu.h index 4291279..78b65b3 100644 --- a/include/qemu/cpu.h +++ b/include/qemu/cpu.h @@ -39,7 +39,7 @@ typedef struct CPUState CPUState; /** * 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. */ @@ -61,7 +61,7 @@ struct CPUState { Object parent_obj; /*< public >*/ - /* TODO Move common fields from CPUState here. */ + /* TODO Move common fields from CPUArchState here. */ }; |