diff --git a/softmmu/cpus.c b/softmmu/cpus.c index 5a584a8d57..59bc58f572 100644 --- a/softmmu/cpus.c +++ b/softmmu/cpus.c @@ -305,7 +305,10 @@ void cpu_handle_guest_debug(CPUState *cpu) cpu_single_step(cpu, 0); } } else { - gdb_set_stop_cpu(cpu); + /* Begin LibAFL changes */ + // With LibAFL Breakpoints there is no gdb attached. + // gdb_set_stop_cpu(cpu); + /* End LibAFL changes */ qemu_system_debug_request(); cpu->stopped = true; }