Statistics
| Branch: | Revision:

root / cpus.h @ a74cdab4

History | View | Annotate | Download (607 Bytes)

1 296af7c9 Blue Swirl
#ifndef QEMU_CPUS_H
2 296af7c9 Blue Swirl
#define QEMU_CPUS_H
3 296af7c9 Blue Swirl
4 7277e027 Blue Swirl
/* cpus.c */
5 296af7c9 Blue Swirl
int qemu_init_main_loop(void);
6 7277e027 Blue Swirl
void qemu_main_loop_start(void);
7 296af7c9 Blue Swirl
void resume_all_vcpus(void);
8 296af7c9 Blue Swirl
void pause_all_vcpus(void);
9 b4a3d965 Jan Kiszka
void cpu_stop_current(void);
10 296af7c9 Blue Swirl
11 17a4663e Blue Swirl
void cpu_synchronize_all_states(void);
12 17a4663e Blue Swirl
void cpu_synchronize_all_post_reset(void);
13 17a4663e Blue Swirl
void cpu_synchronize_all_post_init(void);
14 17a4663e Blue Swirl
15 296af7c9 Blue Swirl
/* vl.c */
16 296af7c9 Blue Swirl
extern int smp_cores;
17 296af7c9 Blue Swirl
extern int smp_threads;
18 296af7c9 Blue Swirl
void vm_state_notify(int running, int reason);
19 472fb0c4 Jan Kiszka
bool cpu_exec_all(void);
20 296af7c9 Blue Swirl
void set_numa_modes(void);
21 296af7c9 Blue Swirl
void set_cpu_log(const char *optarg);
22 9a78eead Stefan Weil
void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg);
23 296af7c9 Blue Swirl
24 296af7c9 Blue Swirl
#endif