mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-29 05:13:54 -06:00
include: move CPU-related definitions out of qemu-common.h
Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
b01501db18
commit
4b4629d9d2
7 changed files with 26 additions and 24 deletions
|
@ -23,17 +23,6 @@
|
|||
#include "qemu/option.h"
|
||||
#include "qemu/host-utils.h"
|
||||
|
||||
void cpu_ticks_init(void);
|
||||
|
||||
/* icount */
|
||||
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);
|
||||
|
||||
#include "qemu/bswap.h"
|
||||
|
||||
/* FIXME: Remove NEED_CPU_H. */
|
||||
|
@ -100,19 +89,6 @@ bool tcg_enabled(void);
|
|||
|
||||
void cpu_exec_init_all(void);
|
||||
|
||||
/* Unblock cpu */
|
||||
void qemu_cpu_kick_self(void);
|
||||
|
||||
/* work queue */
|
||||
struct qemu_work_item {
|
||||
struct qemu_work_item *next;
|
||||
void (*func)(void *data);
|
||||
void *data;
|
||||
int done;
|
||||
bool free;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Sends a (part of) iovec down a socket, yielding when the socket is full, or
|
||||
* Receives data into a (part of) iovec from a socket,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue