mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
include/qemu: Add TCGCPUOps typedef to typedefs.h
QEMU coding style recommends using structure typedefs. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
93c6091bfa
commit
1764ad70ce
26 changed files with 29 additions and 31 deletions
|
@ -90,9 +90,6 @@ typedef enum MMUAccessType {
|
|||
|
||||
typedef struct CPUWatchpoint CPUWatchpoint;
|
||||
|
||||
/* see tcg-cpu-ops.h */
|
||||
struct TCGCPUOps;
|
||||
|
||||
/* see accel-cpu.h */
|
||||
struct AccelCPUClass;
|
||||
|
||||
|
@ -177,7 +174,7 @@ struct CPUClass {
|
|||
const struct SysemuCPUOps *sysemu_ops;
|
||||
|
||||
/* when TCG is not available, this pointer is NULL */
|
||||
const struct TCGCPUOps *tcg_ops;
|
||||
const TCGCPUOps *tcg_ops;
|
||||
|
||||
/*
|
||||
* if not NULL, this is called in order for the CPUClass to initialize
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue