Statistics
| Branch: | Revision:

root / cpus.h @ bd023f95

History | View | Annotate | Download (546 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 296af7c9 Blue Swirl
10 296af7c9 Blue Swirl
/* vl.c */
11 296af7c9 Blue Swirl
extern int smp_cores;
12 296af7c9 Blue Swirl
extern int smp_threads;
13 296af7c9 Blue Swirl
extern int debug_requested;
14 7277e027 Blue Swirl
extern int vmstop_requested;
15 296af7c9 Blue Swirl
void vm_state_notify(int running, int reason);
16 472fb0c4 Jan Kiszka
bool cpu_exec_all(void);
17 296af7c9 Blue Swirl
void set_numa_modes(void);
18 296af7c9 Blue Swirl
void set_cpu_log(const char *optarg);
19 262353cb Blue Swirl
void list_cpus(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
20 262353cb Blue Swirl
               const char *optarg);
21 296af7c9 Blue Swirl
22 296af7c9 Blue Swirl
#endif