diff options
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index 42a1540986e..ab2f8173203 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1964,6 +1964,11 @@ Debugger::FormatPrompt s.Printf("0x%4.4" PRIx64, thread->GetID()); var_success = true; } + else if (::strncmp (var_name_begin, "protocol_id}", strlen("protocol_id}")) == 0) + { + s.Printf("0x%4.4" PRIx64, thread->GetProtocolID()); + var_success = true; + } else if (::strncmp (var_name_begin, "index}", strlen("index}")) == 0) { s.Printf("%u", thread->GetIndexID()); |