File tree 5 files changed +13
-13
lines changed
5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 28
28
#include "hw/boards.h"
29
29
#include "sysemu/cpus.h"
30
30
#include "qemu/error-report.h"
31
- #include "accel-softmmu .h"
31
+ #include "accel-system .h"
32
32
33
33
int accel_init_machine (AccelState * accel , MachineState * ms )
34
34
{
@@ -99,8 +99,8 @@ static const TypeInfo accel_ops_type_info = {
99
99
.class_size = sizeof (AccelOpsClass ),
100
100
};
101
101
102
- static void accel_softmmu_register_types (void )
102
+ static void accel_system_register_types (void )
103
103
{
104
104
type_register_static (& accel_ops_type_info );
105
105
}
106
- type_init (accel_softmmu_register_types );
106
+ type_init (accel_system_register_types );
Original file line number Diff line number Diff line change 7
7
* See the COPYING file in the top-level directory.
8
8
*/
9
9
10
- #ifndef ACCEL_SOFTMMU_H
11
- #define ACCEL_SOFTMMU_H
10
+ #ifndef ACCEL_SYSTEM_H
11
+ #define ACCEL_SYSTEM_H
12
12
13
13
void accel_init_ops_interfaces (AccelClass * ac );
14
14
15
- #endif /* ACCEL_SOFTMMU_H */
15
+ #endif /* ACCEL_SYSTEM_H */
Original file line number Diff line number Diff line change 30
30
#include "hw/core/accel-cpu.h"
31
31
32
32
#ifndef CONFIG_USER_ONLY
33
- #include "accel-softmmu .h"
33
+ #include "accel-system .h"
34
34
#endif /* !CONFIG_USER_ONLY */
35
35
36
36
static const TypeInfo accel_type = {
Original file line number Diff line number Diff line change 1
1
specific_ss.add(files (' accel-target.c' ))
2
- system_ss.add(files (' accel-softmmu .c' , ' accel-blocker.c' ))
2
+ system_ss.add(files (' accel-system .c' , ' accel-blocker.c' ))
3
3
user_ss.add(files (' accel-user.c' ))
4
4
5
5
subdir (' tcg' )
Original file line number Diff line number Diff line change 1
- sysemu_stubs_ss = ss.source_set()
2
- sysemu_stubs_ss .add(when : ' CONFIG_XEN' , if_false : files (' xen-stub.c' ))
3
- sysemu_stubs_ss .add(when : ' CONFIG_KVM' , if_false : files (' kvm-stub.c' ))
4
- sysemu_stubs_ss .add(when : ' CONFIG_TCG' , if_false : files (' tcg-stub.c' ))
1
+ system_stubs_ss = ss.source_set()
2
+ system_stubs_ss .add(when : ' CONFIG_XEN' , if_false : files (' xen-stub.c' ))
3
+ system_stubs_ss .add(when : ' CONFIG_KVM' , if_false : files (' kvm-stub.c' ))
4
+ system_stubs_ss .add(when : ' CONFIG_TCG' , if_false : files (' tcg-stub.c' ))
5
5
6
- specific_ss.add_all(when : [' CONFIG_SYSTEM_ONLY' ], if_true : sysemu_stubs_ss )
6
+ specific_ss.add_all(when : [' CONFIG_SYSTEM_ONLY' ], if_true : system_stubs_ss )
You can’t perform that action at this time.
0 commit comments