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 void qtest_clock_warp(int64_t dest); 15 16 /* vl.c */ 17 extern int smp_cores; 18 extern int smp_threads; 19 void set_numa_modes(void); 20 void set_cpu_log(const char *optarg); 21 void set_cpu_log_filename(const char *optarg); 22 void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg); 23 24 #endif 25