]> git.proxmox.com Git - mirror_qemu.git/blame - accel/tcg/tcg-accel-ops.h
accel/tcg: Rename tcg_cpus_exec() -> tcg_cpu_exec()
[mirror_qemu.git] / accel / tcg / tcg-accel-ops.h
CommitLineData
a77dabc3 1/*
45e077d7
CF
2 * QEMU TCG vCPU common functionality
3 *
4 * Functionality common to all TCG vcpu variants: mttcg, rr and icount.
a77dabc3
CF
5 *
6 * Copyright 2020 SUSE LLC
7 *
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
10 */
11
52581c71
MA
12#ifndef TCG_ACCEL_OPS_H
13#define TCG_ACCEL_OPS_H
a77dabc3
CF
14
15#include "sysemu/cpus.h"
16
cca2f62e 17void tcg_cpu_destroy(CPUState *cpu);
f4cf2ef9 18int tcg_cpu_exec(CPUState *cpu);
b86f59c7 19void tcg_handle_interrupt(CPUState *cpu, int mask);
6cc9d67c 20void tcg_cpu_init_cflags(CPUState *cpu, bool parallel);
a77dabc3 21
52581c71 22#endif /* TCG_ACCEL_OPS_H */