[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
Greg Clayton
gclayton at apple.com
Fri Jul 23 15:50:33 PDT 2010
Fixed in r109281
On Jul 23, 2010, at 2:42 PM, Stephen Wilson wrote:
>
> 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