[Lldb-commits] [lldb] r109235 - in /lldb/trunk: include/lldb/Target/Thread.h source/Plugins/Process/MacOSX-User/source/MacOSX/MachException.cpp source/Plugins/Process/MacOSX-User/source/MacOSX/MachException.h source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp source/Target/Thread.cpp
Stephen Wilson
wilsons at start.ca
Fri Jul 23 14:42:20 PDT 2010
Hi Greg,
Greg Clayton <gclayton at apple.com> writes:
> + case 5: // EXC_SOFTWARE
> + exc_desc = "EXC_SOFTWARE";
> + if (m_details.exception.data[0] == EXC_SOFT_SIGNAL && m_details.exception.data_count == 2)
> + {
> + SetStopReasonWithSignal(m_details.exception.data[1]);
> + exc_translated = true;
> + }
> + break;
Build failure on linux. Looks like EXC_SOFT_SIGNAL needs to be replaced
by the appropriate magic constant.
Take care,
Steve
More information about the lldb-commits
mailing list