aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectProcess.cpp
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2015-05-22 08:46:18 +0000
committerPavel Labath <labath@google.com>2015-05-22 08:46:18 +0000
commitb84141a6fe584381e97adb2ed1fe9a2b6fd90fc7 (patch)
treeaab7267f4b3399dde3edf7325e711c9ab4ccf8b7 /lldb/source/Commands/CommandObjectProcess.cpp
parentbb457b973d4d8ce10b554c5409ebdc302aaf5012 (diff)
downloadllvm-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.cpp6
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;