diff options
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r-- | lldb/source/Target/Thread.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index 510988a1591..97a55fb7434 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -617,20 +617,8 @@ Thread::MatchesSpec (const ThreadSpec *spec) { if (spec == NULL) return true; - - if (!spec->TIDMatches(GetID())) - return false; - if (!spec->IndexMatches(GetIndexID())) - return false; - - if (!spec->NameMatches (GetName())) - return false; - - if (!spec->QueueNameMatches (GetQueueName())) - return false; - - return true; + return spec->ThreadPassesBasicTests(this); } void |