diff options
author | Pavel Labath <labath@google.com> | 2015-05-29 10:13:03 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-05-29 10:13:03 +0000 |
commit | c4e25c96483643748e6fcf669a776603697365ef (patch) | |
tree | 8234c8e68e0e3ee4f7ea7aedf0629623f3171c93 /lldb/source/Plugins/Process/Linux/NativeThreadLinux.h | |
parent | 43a298cb36f8e05e9335bd3deb3214ef5bb99df8 (diff) | |
download | bcm5719-llvm-c4e25c96483643748e6fcf669a776603697365ef.tar.gz bcm5719-llvm-c4e25c96483643748e6fcf669a776603697365ef.zip |
Report inferior SIGSEGV as a signal instead of an exception on linux
Summary:
Previously, we reported inferior receiving SIGSEGV (or SIGILL, SIGFPE, SIGBUS) as an "exception"
to LLDB, presumably to match OSX behaviour. Beside the fact that we were basically lying to the
user, this was also causing problems with inferiors which handle SIGSEGV by themselves, since
LLDB was unable to reinject this signal back into the inferior.
This commit changes LLGS to report SIGSEGV as a signal. This has necessitated some changes in the
test-suite, which had previously used eStopReasonException to locate threads that crashed. Now it
uses platform-specific logic, which in the case of linux searches for eStopReasonSignaled with
signal=SIGSEGV.
I have also added the ability to set the description of StopInfoUnixSignal using the description
field of the gdb-remote packet. The linux stub uses this to display additional information about
the segfault (invalid address, address access protected, etc.).
Test Plan: All tests pass on linux and osx.
Reviewers: ovyalov, clayborg, emaste
Subscribers: emaste, lldb-commits
Differential Revision: http://reviews.llvm.org/D10057
llvm-svn: 238549
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeThreadLinux.h')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeThreadLinux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h index d78e99c166c..289387bad72 100644 --- a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h +++ b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h @@ -60,7 +60,7 @@ namespace process_linux { SetStepping (); void - SetStoppedBySignal (uint32_t signo); + SetStoppedBySignal(uint32_t signo, const siginfo_t *info = nullptr); /// Return true if the thread is stopped. /// If stopped by a signal, indicate the signo in the signo argument. |