diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-09-15 17:17:51 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-09-15 17:17:51 +0000 |
commit | 76abb3b559a89358c54e957597b8b2d4f04eacae (patch) | |
tree | 342000ad29d593f4c48320017308e7ffaea31d8d /lldb/tools/debugserver/source/MacOSX/MachThread.cpp | |
parent | 07d4b1c455e822c04dfebf8c199f2323eeae2a8f (diff) | |
download | bcm5719-llvm-76abb3b559a89358c54e957597b8b2d4f04eacae.tar.gz bcm5719-llvm-76abb3b559a89358c54e957597b8b2d4f04eacae.zip |
Add comment regarding method call to DNBArchProtocol::NotifyException().
llvm-svn: 139800
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/MachThread.cpp')
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachThread.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachThread.cpp b/lldb/tools/debugserver/source/MacOSX/MachThread.cpp index 84dd7db4a4c..729f32fd7db 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachThread.cpp +++ b/lldb/tools/debugserver/source/MacOSX/MachThread.cpp @@ -549,6 +549,7 @@ MachThread::NotifyException(MachException::Data& exc) { // 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()) |