diff options
author | Greg Clayton <gclayton@apple.com> | 2014-02-24 22:50:57 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-02-24 22:50:57 +0000 |
commit | e68f5d6b69f5328ec16178740abb39975d6b3224 (patch) | |
tree | 4082c39ae76f6264aa72730ff2210e3c91be8911 /lldb/source/Interpreter/ScriptInterpreterPython.cpp | |
parent | 301bafed782050edb8b4b7096f7b923953c26212 (diff) | |
download | bcm5719-llvm-e68f5d6b69f5328ec16178740abb39975d6b3224.tar.gz bcm5719-llvm-e68f5d6b69f5328ec16178740abb39975d6b3224.zip |
Fixed the command line LLDB so that "CTRL+C" will interrupt a running process again.
llvm-svn: 202086
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterPython.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index 389355d9bf9..c1d28e88afc 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -781,7 +781,13 @@ public: { } - + + virtual void + Cancel () + { + + } + virtual void Interrupt () { |