From 35dcfc0c115da262622fdc811d089155f26a2abe Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Fri, 18 Feb 2022 10:50:07 +0100 Subject: [PATCH] libafl_on_thread_hook takes an u32 --- linux-user/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 6f07769587..1cbb083e3c 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -6568,7 +6568,7 @@ typedef struct { //// --- Begin LibAFL code --- extern __thread CPUArchState *libafl_qemu_env; -void (*libafl_on_thread_hook)(int); +void (*libafl_on_thread_hook)(uint32_t); //// --- End LibAFL code ---