From 0cac4ca3916ac24ab6139d03cbfd18db9e715bfe Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 25 Nov 2014 21:00:58 +0000 Subject: Import LLDB as of upstream SVN r216948 (git 50f7fe44) This corresponds with the branchpoint for the 3.5 release. A number of files not required for the FreeBSD build have been removed. Sponsored by: DARPA, AFRL --- include/lldb/Interpreter/CommandInterpreter.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'include/lldb/Interpreter/CommandInterpreter.h') diff --git a/include/lldb/Interpreter/CommandInterpreter.h b/include/lldb/Interpreter/CommandInterpreter.h index bcb9b5538c842..c33d71a6dbbb7 100644 --- a/include/lldb/Interpreter/CommandInterpreter.h +++ b/include/lldb/Interpreter/CommandInterpreter.h @@ -252,7 +252,7 @@ public: // This version just returns matches, and doesn't compute the substring. It is here so the // Help command can call it for the first argument. - // word_complete tells whether a the completions are considered a "complete" response (so the + // word_complete tells whether the completions are considered a "complete" response (so the // completer should complete the quote & put a space after the word. int @@ -332,6 +332,9 @@ public: void Initialize (); + + void + Clear (); void SetScriptLanguage (lldb::ScriptLanguage lang); @@ -476,12 +479,15 @@ protected: std::string &line); virtual ConstString - GetControlSequence (char ch) + IOHandlerGetControlSequence (char ch) { if (ch == 'd') return ConstString("quit\n"); return ConstString(); } + + virtual bool + IOHandlerInterrupt (IOHandler &io_handler); size_t GetProcessOutput (); -- cgit v1.2.3