Rmoved a duplicate version of SetSelectedThreadByID
authorSean Callanan <scallanan@apple.com>
Wed, 31 Oct 2012 02:12:08 +0000 (02:12 +0000)
committerSean Callanan <scallanan@apple.com>
Wed, 31 Oct 2012 02:12:08 +0000 (02:12 +0000)
that confused external clients.

<rdar://problem/12599528>

llvm-svn: 167097

lldb/include/lldb/API/SBProcess.h
lldb/source/API/SBProcess.cpp

index fdd65e4..0664d7f 100644 (file)
@@ -122,9 +122,6 @@ public:
     SetSelectedThread (const lldb::SBThread &thread);
 
     bool
-    SetSelectedThreadByID (uint32_t tid); // DEPRECATED
-
-    bool
     SetSelectedThreadByID (lldb::tid_t tid);
     
     bool
index 933117a..51cc340 100644 (file)
@@ -419,12 +419,6 @@ SBProcess::SetSelectedThread (const SBThread &thread)
 }
 
 bool
-SBProcess::SetSelectedThreadByID (uint32_t tid)
-{
-    return SetSelectedThreadByID ((lldb::tid_t)tid);
-}
-
-bool
 SBProcess::SetSelectedThreadByID (lldb::tid_t tid)
 {
     LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));