[Lldb-commits] [lldb] r234373 - Fix compilation failure caused by r234366.

Chaoren Lin chaorenl at google.com
Tue Apr 7 15:50:35 PDT 2015


Author: chaoren
Date: Tue Apr  7 17:50:35 2015
New Revision: 234373

URL: http://llvm.org/viewvc/llvm-project?rev=234373&view=rev
Log:
Fix compilation failure caused by r234366.

Modified:
    lldb/trunk/source/Plugins/Process/POSIX/POSIXThread.cpp

Modified: lldb/trunk/source/Plugins/Process/POSIX/POSIXThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/POSIX/POSIXThread.cpp?rev=234373&r1=234372&r2=234373&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/POSIX/POSIXThread.cpp (original)
+++ lldb/trunk/source/Plugins/Process/POSIX/POSIXThread.cpp Tue Apr  7 17:50:35 2015
@@ -515,7 +515,7 @@ POSIXThread::BreakNotify(const ProcessMe
         // If we have an operating system plug-in, we might have set a thread specific breakpoint using the
         // operating system thread ID, so we can't make any assumptions about the thread ID so we must always
         // report the breakpoint regardless of the thread.
-        if (bp_site->ValidForThisThread(this) || thread.GetProcess()->GetOperatingSystem () != NULL)
+        if (bp_site->ValidForThisThread(this) || GetProcess()->GetOperatingSystem () != NULL)
             SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id));
         else
         {





More information about the lldb-commits mailing list