ramana-nvr updated this revision to Diff 154059.

https://reviews.llvm.org/D48865

Files:
  source/Commands/CommandObjectThread.cpp


Index: source/Commands/CommandObjectThread.cpp
===================================================================
--- source/Commands/CommandObjectThread.cpp
+++ source/Commands/CommandObjectThread.cpp
@@ -1183,7 +1183,7 @@
           thread->GetStackFrameAtIndex(m_options.m_frame_idx).get();
       if (frame == nullptr) {
         result.AppendErrorWithFormat(
-            "Frame index %u is out of range for thread %u.\n",
+            "Frame index %u is out of range for thread index %u.\n",
             m_options.m_frame_idx, m_options.m_thread_idx);
         result.SetStatus(eReturnStatusFailed);
         return false;
@@ -1279,13 +1279,13 @@
         new_plan_sp->SetOkayToDiscard(false);
       } else {
         result.AppendErrorWithFormat(
-            "Frame index %u of thread %u has no debug information.\n",
+            "Frame index %u of thread index %u has no debug information.\n",
             m_options.m_frame_idx, m_options.m_thread_idx);
         result.SetStatus(eReturnStatusFailed);
         return false;
       }
 
-      process->GetThreadList().SetSelectedThreadByID(m_options.m_thread_idx);
+      process->GetThreadList().SetSelectedThreadByID(thread->GetID());
 
       StreamString stream;
       Status error;


Index: source/Commands/CommandObjectThread.cpp
===================================================================
--- source/Commands/CommandObjectThread.cpp
+++ source/Commands/CommandObjectThread.cpp
@@ -1183,7 +1183,7 @@
           thread->GetStackFrameAtIndex(m_options.m_frame_idx).get();
       if (frame == nullptr) {
         result.AppendErrorWithFormat(
-            "Frame index %u is out of range for thread %u.\n",
+            "Frame index %u is out of range for thread index %u.\n",
             m_options.m_frame_idx, m_options.m_thread_idx);
         result.SetStatus(eReturnStatusFailed);
         return false;
@@ -1279,13 +1279,13 @@
         new_plan_sp->SetOkayToDiscard(false);
       } else {
         result.AppendErrorWithFormat(
-            "Frame index %u of thread %u has no debug information.\n",
+            "Frame index %u of thread index %u has no debug information.\n",
             m_options.m_frame_idx, m_options.m_thread_idx);
         result.SetStatus(eReturnStatusFailed);
         return false;
       }
 
-      process->GetThreadList().SetSelectedThreadByID(m_options.m_thread_idx);
+      process->GetThreadList().SetSelectedThreadByID(thread->GetID());
 
       StreamString stream;
       Status error;
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to