master
c 11 lines 201 Bytes
Raw
1 /*
2 * SPDX-License-Identifier: GPL-2.0-or-later
3 */
4
5 #include "qemu/osdep.h"
6 #include "hw/core/cpu.h"
7
8 void async_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data)
9 {
10 abort();
11 }