I am consistently seeing the error message "Got into OnDebugTrap with LastBreakpoint error" when using the KVM backend. I suspect the trap flag needs to be explicitly disabled [here](https://github.com/0vercl0k/wtf/blob/ebdccdd03efc7df9c6145fee3fcee973624eac85/src/wtf/kvm_backend.cc#L1583C1-L1587C6): Instead of: ```c++ if (TraceType_ == TraceType_t::Rip) { TrapFlag(true); } else { KvmDebugPrint("Turning off RFLAGS.TF\n"); } ``` do: ```c++ if (TraceType_ == TraceType_t::Rip) { TrapFlag(true); } else { KvmDebugPrint("Turning off RFLAGS.TF\n"); TrapFlag(false); } ```