|
@@ -102,7 +102,7 @@ struct SysemuCPUOps;
|
|
/**
|
|
/**
|
|
* CPUClass:
|
|
* CPUClass:
|
|
* @class_by_name: Callback to map -cpu command line model name to an
|
|
* @class_by_name: Callback to map -cpu command line model name to an
|
|
- * instantiatable CPU type.
|
|
|
|
|
|
+ * instantiatable CPU type.
|
|
* @parse_features: Callback to parse command line arguments.
|
|
* @parse_features: Callback to parse command line arguments.
|
|
* @reset_dump_flags: #CPUDumpFlags to use for reset logging.
|
|
* @reset_dump_flags: #CPUDumpFlags to use for reset logging.
|
|
* @has_work: Callback for checking if there is work to do.
|
|
* @has_work: Callback for checking if there is work to do.
|
|
@@ -772,9 +772,10 @@ void cpu_reset(CPUState *cpu);
|
|
* @typename: The CPU base type.
|
|
* @typename: The CPU base type.
|
|
* @cpu_model: The model string without any parameters.
|
|
* @cpu_model: The model string without any parameters.
|
|
*
|
|
*
|
|
- * Looks up a CPU #ObjectClass matching name @cpu_model.
|
|
|
|
|
|
+ * Looks up a concrete CPU #ObjectClass matching name @cpu_model.
|
|
*
|
|
*
|
|
- * Returns: A #CPUClass or %NULL if not matching class is found.
|
|
|
|
|
|
+ * Returns: A concrete #CPUClass or %NULL if no matching class is found
|
|
|
|
+ * or if the matching class is abstract.
|
|
*/
|
|
*/
|
|
ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
|
|
ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
|
|
|
|
|