]>
Commit | Line | Data |
---|---|---|
296af7c9 BS |
1 | #ifndef QEMU_CPUS_H |
2 | #define QEMU_CPUS_H | |
3 | ||
4 | /* cpu-common.c */ | |
5 | int qemu_init_main_loop(void); | |
6 | void resume_all_vcpus(void); | |
7 | void pause_all_vcpus(void); | |
8 | ||
9 | /* vl.c */ | |
10 | extern int smp_cores; | |
11 | extern int smp_threads; | |
12 | extern int debug_requested; | |
13 | void vm_state_notify(int running, int reason); | |
14 | bool tcg_cpu_exec(void); | |
15 | void set_numa_modes(void); | |
16 | void set_cpu_log(const char *optarg); | |
17 | ||
18 | #endif |