]>
Commit | Line | Data |
---|---|---|
1 | #ifndef QEMU_CPUS_H | |
2 | #define QEMU_CPUS_H | |
3 | ||
4 | /* cpus.c */ | |
5 | void qemu_init_cpu_loop(void); | |
6 | void resume_all_vcpus(void); | |
7 | void pause_all_vcpus(void); | |
8 | void cpu_stop_current(void); | |
9 | ||
10 | void cpu_synchronize_all_states(void); | |
11 | void cpu_synchronize_all_post_reset(void); | |
12 | void cpu_synchronize_all_post_init(void); | |
13 | ||
14 | /* vl.c */ | |
15 | extern int smp_cores; | |
16 | extern int smp_threads; | |
17 | void set_numa_modes(void); | |
18 | void set_cpu_log(const char *optarg); | |
19 | void set_cpu_log_filename(const char *optarg); | |
20 | void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg); | |
21 | ||
22 | #endif |