Exemplo n.º 1
0
 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));
     }
 }
Exemplo n.º 2
0
 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);
 }
Exemplo n.º 3
0
 public BREAKPOINT_INFO(Context context, Breakpoint breakpoint)
 {
     Context    = context;
     Breakpoint = breakpoint;
 }