From 747385ae7dd652427e9c7ca37d2e80790fd36fb8 Mon Sep 17 00:00:00 2001 From: Scott <55210664+scottmpowell@users.noreply.github.com> Date: Fri, 19 Jul 2024 13:01:54 -0400 Subject: [PATCH] update function from _libafl_exit_call2 to _libafl_sync_exit_call2 (#2392) Co-authored-by: Scott Powell --- libafl_qemu/runtime/libafl_qemu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl_qemu/runtime/libafl_qemu.h b/libafl_qemu/runtime/libafl_qemu.h index 4ea4fd4233..071708f702 100644 --- a/libafl_qemu/runtime/libafl_qemu.h +++ b/libafl_qemu/runtime/libafl_qemu.h @@ -248,7 +248,7 @@ LIBAFL_DEFINE_FUNCTIONS(backdoor, LIBAFL_BACKDOOR_OPCODE) _libafl_sync_exit_call2(LIBAFL_QEMU_COMMAND_INPUT_VIRT, buf_vaddr, max_len) #define LIBAFL_QEMU_INPUT_PHYS(buf_paddr, max_len) \ - _libafl_exit_call2(LIBAFL_QEMU_COMMAND_INPUT_PHYS, buf_paddr, max_len) + _libafl_sync_exit_call2(LIBAFL_QEMU_COMMAND_INPUT_PHYS, buf_paddr, max_len) #define LIBAFL_QEMU_END(status) _libafl_sync_exit_call1(LIBAFL_QEMU_COMMAND_END, status)