Statistics
| Branch: | Revision:

root / cpus.h @ fb5590f7

History | View | Annotate | Download (549 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 d3b12f5d Paolo Bonzini
void qemu_init_cpu_loop(void);
6 296af7c9 Blue Swirl
void resume_all_vcpus(void);
7 296af7c9 Blue Swirl
void pause_all_vcpus(void);
8 b4a3d965 Jan Kiszka
void cpu_stop_current(void);
9 296af7c9 Blue Swirl
10 17a4663e Blue Swirl
void cpu_synchronize_all_states(void);
11 17a4663e Blue Swirl
void cpu_synchronize_all_post_reset(void);
12 17a4663e Blue Swirl
void cpu_synchronize_all_post_init(void);
13 17a4663e Blue Swirl
14 296af7c9 Blue Swirl
/* vl.c */
15 296af7c9 Blue Swirl
extern int smp_cores;
16 296af7c9 Blue Swirl
extern int smp_threads;
17 296af7c9 Blue Swirl
void set_numa_modes(void);
18 296af7c9 Blue Swirl
void set_cpu_log(const char *optarg);
19 c235d738 Matthew Fernandez
void set_cpu_log_filename(const char *optarg);
20 9a78eead Stefan Weil
void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg);
21 296af7c9 Blue Swirl
22 296af7c9 Blue Swirl
#endif