MCPcopy Create free account
hub / github.com/Vector35/debugger / pause_and_wait

Method pause_and_wait

api/python/debuggercontroller.py:1016–1022  ·  view source on GitHub ↗

Pause a running target. The call is blocking and only returns when the target stops.

(self)

Source from the content-addressed store, hash-verified

1014 return DebugStopReason(dbgcore.BNDebuggerRunToAndWait(self.handle, addr_list, len(address)))
1015
1016 def pause_and_wait(self) -> None:
1017 """
1018 Pause a running target.
1019
1020 The call is blocking and only returns when the target stops.
1021 """
1022 dbgcore.BNDebuggerPauseAndWait(self.handle)
1023
1024 @property
1025 def adapter_type(self) -> str:

Callers 1

test_threadMethod · 0.95

Calls

no outgoing calls

Tested by 1

test_threadMethod · 0.76