diff options
author | Pavel Labath <labath@google.com> | 2015-05-22 08:46:18 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-05-22 08:46:18 +0000 |
commit | b84141a6fe584381e97adb2ed1fe9a2b6fd90fc7 (patch) | |
tree | aab7267f4b3399dde3edf7325e711c9ab4ccf8b7 /lldb/source/Commands/CommandObjectProcess.cpp | |
parent | bb457b973d4d8ce10b554c5409ebdc302aaf5012 (diff) | |
download | llvm-b84141a6fe584381e97adb2ed1fe9a2b6fd90fc7.zip llvm-b84141a6fe584381e97adb2ed1fe9a2b6fd90fc7.tar.gz llvm-b84141a6fe584381e97adb2ed1fe9a2b6fd90fc7.tar.bz2 |
Add real time signals support to LinuxSignals
Summary: This enables correct handling of real time signals by lldb.
Test Plan: Added a test that verifies handling of SIGRTMIN
Reviewers: tberghammer, ovyalov
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D9911
llvm-svn: 238009
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectProcess.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index c157411..a908c4b 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -1729,8 +1729,8 @@ public: void PrintSignalHeader (Stream &str) { - str.Printf ("NAME PASS STOP NOTIFY\n"); - str.Printf ("========== ===== ===== ======\n"); + str.Printf ("NAME PASS STOP NOTIFY\n"); + str.Printf ("=========== ===== ===== ======\n"); } void @@ -1740,7 +1740,7 @@ public: bool suppress; bool notify; - str.Printf ("%-10s ", sig_name); + str.Printf ("%-11s ", sig_name); if (signals.GetSignalInfo (signo, suppress, stop, notify)) { bool pass = !suppress; |