[Lldb-commits] [lldb] r184241 - Temporarily disable checking of watchpoint hit on FreeBSD on trace message.

Matt Kopec Matt.Kopec at intel.com
Tue Jun 18 14:35:32 PDT 2013


Author: mkopec
Date: Tue Jun 18 16:35:32 2013
New Revision: 184241

URL: http://llvm.org/viewvc/llvm-project?rev=184241&view=rev
Log:
Temporarily disable checking of watchpoint hit on FreeBSD on trace message.

Patch from Ed Maste.

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=184241&r1=184240&r2=184241&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/POSIX/POSIXThread.cpp (original)
+++ lldb/trunk/source/Plugins/Process/POSIX/POSIXThread.cpp Tue Jun 18 16:35:32 2013
@@ -417,6 +417,7 @@ POSIXThread::WatchNotify(const ProcessMe
 void
 POSIXThread::TraceNotify(const ProcessMessage &message)
 {
+#ifndef __FreeBSD__
     RegisterContextPOSIX* reg_ctx = GetRegisterContextPOSIX();
     if (reg_ctx)
     {
@@ -431,6 +432,7 @@ POSIXThread::TraceNotify(const ProcessMe
             }
         }
     }
+#endif
     SetStopInfo (StopInfo::CreateStopReasonToTrace(*this));
 }
 





More information about the lldb-commits mailing list