[Lldb-commits] [lldb] r305197 - Introduce new command: thread backtrace unique

2017-06-12 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon Jun 12 11:25:24 2017 New Revision: 305197 URL: http://llvm.org/viewvc/llvm-project?rev=305197&view=rev Log: Introduce new command: thread backtrace unique This patch introduces a new thread backtrace command "unique". The command is based off of "thread backtrace all" but

[Lldb-commits] [PATCH] D33426: Introduce new command: thread backtrace unique

2017-06-12 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL305197: Introduce new command: thread backtrace unique (authored by labath). Changed prior to commit: https://reviews.llvm.org/D33426?vs=101664&id=102192#toc Repository: rL LLVM https://reviews.llvm

[Lldb-commits] [PATCH] D33426: Introduce new command: thread backtrace unique

2017-06-12 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. Committed as r305197. I needed to tweak the test logic a bit, as not even thread.StepOut() did exactly what we needed there, because it was resuming also all other threads even though it was not necessary. Take a look at the resulting commit if you want to see the differ