]> Git Repo - qemu.git/blame - include/sysemu/cpus.h
MIG_CMD_PACKAGED: Send a packaged chunk of migration stream
[qemu.git] / include / sysemu / cpus.h
CommitLineData
296af7c9
BS
1#ifndef QEMU_CPUS_H
2#define QEMU_CPUS_H
3
7277e027 4/* cpus.c */
88401cbc 5bool qemu_in_vcpu_thread(void);
d3b12f5d 6void qemu_init_cpu_loop(void);
296af7c9
BS
7void resume_all_vcpus(void);
8void pause_all_vcpus(void);
b4a3d965 9void cpu_stop_current(void);
296af7c9 10
17a4663e
BS
11void cpu_synchronize_all_states(void);
12void cpu_synchronize_all_post_reset(void);
13void cpu_synchronize_all_post_init(void);
14
8156be56
PB
15void qtest_clock_warp(int64_t dest);
16
54fb7bf6 17#ifndef CONFIG_USER_ONLY
296af7c9
BS
18/* vl.c */
19extern int smp_cores;
20extern int smp_threads;
54fb7bf6
EH
21#else
22/* *-user doesn't have configurable SMP topology */
23#define smp_cores 1
24#define smp_threads 1
25#endif
26
9a78eead 27void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg);
296af7c9
BS
28
29#endif
This page took 0.328364 seconds and 4 git commands to generate.