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

Method pid_attach

api/python/debuggercontroller.py:1085–1094  ·  view source on GitHub ↗

The PID to attach to. (read/write) ``pid_attach`` is only useful for connecting to a running process using PID. :getter: returns the remote port :setter: sets the remote port

(self)

Source from the content-addressed store, hash-verified

1083
1084 @property
1085 def pid_attach(self) -> int:
1086 """
1087 The PID to attach to. (read/write)
1088
1089 ``pid_attach`` is only useful for connecting to a running process using PID.
1090
1091 :getter: returns the remote port
1092 :setter: sets the remote port
1093 """
1094 return dbgcore.BNDebuggerGetPIDAttach(self.handle)
1095
1096 @remote_port.setter
1097 def pid_attach(self, pid: int) -> None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected