diff options
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/include/lldb/Host/common/NativeProcessProtocol.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/include/lldb/Host/common/NativeProcessProtocol.h b/lldb/include/lldb/Host/common/NativeProcessProtocol.h index 77bcf788bbd..2d48717c4fb 100644 --- a/lldb/include/lldb/Host/common/NativeProcessProtocol.h +++ b/lldb/include/lldb/Host/common/NativeProcessProtocol.h @@ -430,6 +430,8 @@ protected: NativeProcessProtocol(lldb::pid_t pid, int terminal_fd, NativeDelegate &delegate); + void SetID(lldb::pid_t pid) { m_pid = pid; } + // interface for state handling void SetState(lldb::StateType state, bool notify_delegates = true); |