1#ifndef QEMU_CPUS_H 2#define QEMU_CPUS_H 3 4/* cpus.c */ 5int qemu_init_main_loop(void); 6void qemu_main_loop_start(void); 7void resume_all_vcpus(void); 8void pause_all_vcpus(void); 9 10/* vl.c */ 11extern int smp_cores; 12extern int smp_threads; 13extern int debug_requested; 14extern int vmstop_requested; 15void vm_state_notify(int running, int reason); 16bool cpu_exec_all(void); 17void set_numa_modes(void); 18void set_cpu_log(const char *optarg); 19void list_cpus(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...), 20 const char *optarg); 21 22#endif 23