MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / debug_break

Method debug_break

pydevd_attach_to_process/winappdbg/process.py:678–687  ·  view source on GitHub ↗

Triggers the system breakpoint in the process. @raise WindowsError: On error an exception is raised.

(self)

Source from the content-addressed store, hash-verified

676 win32.FlushInstructionCache(self.get_handle())
677
678 def debug_break(self):
679 """
680 Triggers the system breakpoint in the process.
681
682 @raise WindowsError: On error an exception is raised.
683 """
684 # The exception is raised by a new thread.
685 # When continuing the exception, the thread dies by itself.
686 # This thread is hidden from the debugger.
687 win32.DebugBreakProcess(self.get_handle())
688
689 def is_wow64(self):
690 """

Callers 2

do_breakMethod · 0.80
loopMethod · 0.80

Calls 1

get_handleMethod · 0.95

Tested by

no test coverage detected