public void HandleBreakpointEvent(Target target, Breakpoint breakpoint, IntPtr hThread, Context context, string eventName) { try { this.PyProcess.breakpoint_hit(target.PyTarget, eventName, context.GetIP(), context, hThread); } catch (Exception e) { _pyBoss.PrintError(e, string.Format("'Process' handler for instance '{0}' failed during attempt to call 'breakpoint_hit()':", _name)); } }
public void ProcessBreakpointEvent(Breakpoint breakpoint, IntPtr hThread, ref Context context, string eventName) { // Ask the process manager handle the breakpoint event _process.HandleBreakpointEvent(this, breakpoint, hThread, context, eventName); }
public BREAKPOINT_INFO(Context context, Breakpoint breakpoint) { Context = context; Breakpoint = breakpoint; }