2010-03-29 21:23:50 +02:00
|
|
|
#ifndef QEMU_CPUS_H
|
|
|
|
#define QEMU_CPUS_H
|
|
|
|
|
2010-04-12 19:19:06 +02:00
|
|
|
/* cpus.c */
|
2010-03-29 21:23:50 +02:00
|
|
|
int qemu_init_main_loop(void);
|
2010-04-12 19:19:06 +02:00
|
|
|
void qemu_main_loop_start(void);
|
2010-03-29 21:23:50 +02:00
|
|
|
void resume_all_vcpus(void);
|
|
|
|
void pause_all_vcpus(void);
|
|
|
|
|
|
|
|
/* vl.c */
|
|
|
|
extern int smp_cores;
|
|
|
|
extern int smp_threads;
|
|
|
|
extern int debug_requested;
|
2010-04-12 19:19:06 +02:00
|
|
|
extern int vmstop_requested;
|
2010-03-29 21:23:50 +02:00
|
|
|
void vm_state_notify(int running, int reason);
|
2010-06-25 16:56:55 +02:00
|
|
|
bool cpu_exec_all(void);
|
2010-03-29 21:23:50 +02:00
|
|
|
void set_numa_modes(void);
|
|
|
|
void set_cpu_log(const char *optarg);
|
2010-10-22 23:03:33 +02:00
|
|
|
void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg);
|
2010-03-29 21:23:50 +02:00
|
|
|
|
|
|
|
#endif
|