private void GdbStopped(StopReasonEnum stopReason, GDBBreakpoint breakpoint, UInt64 address, Int64 status) { _lastDebuggerStop = new DebuggerStop(stopReason, breakpoint, address, status); _gdbStopEventHandler.Set(); }
public DebuggerStop(StopReasonEnum stopReason, IBreakpoint breakpoint, UInt64 address, Int64 status) { _stopReason = stopReason; _breakpoint = breakpoint; _address = address; _status = status; }