[Lldb-commits] [lldb] r167097 - in /lldb/trunk: include/lldb/API/SBProcess.h source/API/SBProcess.cpp

Sean Callanan scallanan at apple.com
Tue Oct 30 19:12:08 PDT 2012


Author: spyffe
Date: Tue Oct 30 21:12:08 2012
New Revision: 167097

URL: http://llvm.org/viewvc/llvm-project?rev=167097&view=rev
Log:
Rmoved a duplicate version of SetSelectedThreadByID
that confused external clients.

<rdar://problem/12599528>

Modified:
    lldb/trunk/include/lldb/API/SBProcess.h
    lldb/trunk/source/API/SBProcess.cpp

Modified: lldb/trunk/include/lldb/API/SBProcess.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBProcess.h?rev=167097&r1=167096&r2=167097&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBProcess.h (original)
+++ lldb/trunk/include/lldb/API/SBProcess.h Tue Oct 30 21:12:08 2012
@@ -122,9 +122,6 @@
     SetSelectedThread (const lldb::SBThread &thread);
 
     bool
-    SetSelectedThreadByID (uint32_t tid); // DEPRECATED
-
-    bool
     SetSelectedThreadByID (lldb::tid_t tid);
     
     bool

Modified: lldb/trunk/source/API/SBProcess.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBProcess.cpp?rev=167097&r1=167096&r2=167097&view=diff
==============================================================================
--- lldb/trunk/source/API/SBProcess.cpp (original)
+++ lldb/trunk/source/API/SBProcess.cpp Tue Oct 30 21:12:08 2012
@@ -419,12 +419,6 @@
 }
 
 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));





More information about the lldb-commits mailing list