diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 76457d1..5d7f3c1 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -2178,6 +2178,11 @@ public: m_dumper_options.json = true; break; } + case 'E': { + m_dumper_options.only_events = true; + m_dumper_options.show_events = true; + break; + } case 'C': { m_continue = true; break; |