2010-03-29 23:23:50 +04:00
|
|
|
#ifndef QEMU_CPUS_H
|
|
|
|
#define QEMU_CPUS_H
|
|
|
|
|
2017-03-03 14:01:16 +03:00
|
|
|
#include "qemu/timer.h"
|
|
|
|
|
2010-04-12 21:19:06 +04:00
|
|
|
/* cpus.c */
|
2015-08-11 11:52:46 +03:00
|
|
|
bool qemu_in_vcpu_thread(void);
|
2011-09-13 12:30:52 +04:00
|
|
|
void qemu_init_cpu_loop(void);
|
2010-03-29 23:23:50 +04:00
|
|
|
void resume_all_vcpus(void);
|
|
|
|
void pause_all_vcpus(void);
|
2011-02-02 00:15:43 +03:00
|
|
|
void cpu_stop_current(void);
|
2016-03-15 18:47:38 +03:00
|
|
|
void cpu_ticks_init(void);
|
|
|
|
|
|
|
|
void configure_icount(QemuOpts *opts, Error **errp);
|
|
|
|
extern int use_icount;
|
|
|
|
extern int icount_align_option;
|
|
|
|
|
|
|
|
/* drift information for info jit command */
|
|
|
|
extern int64_t max_delay;
|
|
|
|
extern int64_t max_advance;
|
|
|
|
void dump_drift_info(FILE *f, fprintf_function cpu_fprintf);
|
|
|
|
|
|
|
|
/* Unblock cpu */
|
|
|
|
void qemu_cpu_kick_self(void);
|
2017-03-03 13:50:29 +03:00
|
|
|
void qemu_timer_notify_cb(void *opaque, QEMUClockType type);
|
2010-03-29 23:23:50 +04:00
|
|
|
|
2011-03-27 20:05:08 +04:00
|
|
|
void cpu_synchronize_all_states(void);
|
|
|
|
void cpu_synchronize_all_post_reset(void);
|
|
|
|
void cpu_synchronize_all_post_init(void);
|
2017-05-26 07:46:28 +03:00
|
|
|
void cpu_synchronize_all_pre_loadvm(void);
|
2011-03-27 20:05:08 +04:00
|
|
|
|
2012-03-28 17:42:04 +04:00
|
|
|
void qtest_clock_warp(int64_t dest);
|
|
|
|
|
2013-01-23 00:25:05 +04:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2010-03-29 23:23:50 +04:00
|
|
|
/* vl.c */
|
2016-09-16 18:50:24 +03:00
|
|
|
/* *-user doesn't have configurable SMP topology */
|
2010-03-29 23:23:50 +04:00
|
|
|
extern int smp_cores;
|
|
|
|
extern int smp_threads;
|
2013-01-23 00:25:05 +04:00
|
|
|
#endif
|
|
|
|
|
2010-10-23 01:03:33 +04:00
|
|
|
void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg);
|
2010-03-29 23:23:50 +04:00
|
|
|
|
2017-02-23 21:29:08 +03:00
|
|
|
void qemu_tcg_configure(QemuOpts *opts, Error **errp);
|
|
|
|
|
2010-03-29 23:23:50 +04:00
|
|
|
#endif
|