[Lldb-commits] [lldb] r139800 - /lldb/trunk/tools/debugserver/source/MacOSX/MachThread.cpp
Johnny Chen
johnny.chen at apple.com
Thu Sep 15 10:17:51 PDT 2011
Author: johnny
Date: Thu Sep 15 12:17:51 2011
New Revision: 139800
URL: http://llvm.org/viewvc/llvm-project?rev=139800&view=rev
Log:
Add comment regarding method call to DNBArchProtocol::NotifyException().
Modified:
lldb/trunk/tools/debugserver/source/MacOSX/MachThread.cpp
Modified: lldb/trunk/tools/debugserver/source/MacOSX/MachThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/MacOSX/MachThread.cpp?rev=139800&r1=139799&r2=139800&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/MacOSX/MachThread.cpp (original)
+++ lldb/trunk/tools/debugserver/source/MacOSX/MachThread.cpp Thu Sep 15 12:17:51 2011
@@ -549,6 +549,7 @@
{
// Allow the arch specific protocol to process (MachException::Data &)exc
// first before possible reassignment of m_stop_exception with exc.
+ // See also MachThread::GetStopException().
bool handled = m_arch_ap->NotifyException(exc);
if (m_stop_exception.IsValid())
More information about the lldb-commits
mailing list