diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2014-06-23 19:30:49 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2014-06-23 19:30:49 +0000 |
commit | 802dc402282aad5ab19bac69f271446bd31ae084 (patch) | |
tree | 0e3ed10bf58a4d794c66de5a300ef1d38e943139 /lldb/scripts/Python/interface | |
parent | 16a9eab3998d43dd967103adbe8f528c3334d8b8 (diff) | |
download | bcm5719-llvm-802dc402282aad5ab19bac69f271446bd31ae084.tar.gz bcm5719-llvm-802dc402282aad5ab19bac69f271446bd31ae084.zip |
Add API control of the signal disposition.
See http://reviews.llvm.org/D4221 for details.
This commit allows you to control the signals that lldb will suppress, stop or forward using the Python and C++ APIs.
Change by Russell Harmon.
Xcode build system changes (and any mistakes) by Todd Fiala. Tested on MacOSX 10.9.3 and Xcode 6 beta. (Xcode 5 is hitting the dependency checker crasher on all my systems).
llvm-svn: 211526
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBProcess.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBProcess.i b/lldb/scripts/Python/interface/SBProcess.i index d023b2472cc..5cd99c0296c 100644 --- a/lldb/scripts/Python/interface/SBProcess.i +++ b/lldb/scripts/Python/interface/SBProcess.i @@ -240,6 +240,9 @@ public: lldb::SBError Signal (int signal); + lldb::SBUnixSignals + GetUnixSignals(); + %feature("docstring", " Returns a stop id that will increase every time the process executes. If include_expression_stops is true, then stops caused by expression evaluation |