aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2012-05-02 22:28:58 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2012-05-08 11:15:18 -0500
commitf5df5baf11a32ae6a669ac945625d1c3e4deb76d (patch)
tree3e3992cd26e913dcc2a548b736ad906f0fc861cd
parent175003702a4d9ac6dd58413c348efefd309b778c (diff)
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>
-rw-r--r--include/qemu/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/qemu/cpu.h b/include/qemu/cpu.h
index 4291279bc5..78b65b35fc 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. */
};