summaryrefslogtreecommitdiffstats
path: root/lldb/include/lldb/Interpreter/CommandInterpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include/lldb/Interpreter/CommandInterpreter.h')
-rw-r--r--lldb/include/lldb/Interpreter/CommandInterpreter.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/lldb/include/lldb/Interpreter/CommandInterpreter.h b/lldb/include/lldb/Interpreter/CommandInterpreter.h
index a7a67d2ca1b..73bd7d6e622 100644
--- a/lldb/include/lldb/Interpreter/CommandInterpreter.h
+++ b/lldb/include/lldb/Interpreter/CommandInterpreter.h
@@ -242,8 +242,6 @@ public:
bool repeat_on_empty_command = true,
bool no_context_switching = false);
- bool WasInterrupted() const;
-
//------------------------------------------------------------------
/// Execute a list of commands in sequence.
///
@@ -524,24 +522,6 @@ private:
StringList &commands_help,
CommandObject::CommandMap &command_map);
- // An interruptible wrapper around the stream output
- void PrintCommandOutput(Stream &stream, llvm::StringRef str,
- bool interruptible);
-
- // A very simple state machine which models the command handling transitions
- enum class CommandHandlingState {
- eIdle,
- eInProgress,
- eInterrupted,
- };
-
- std::atomic<CommandHandlingState> m_command_state{
- CommandHandlingState::eIdle};
-
- void StartHandlingCommand();
- void FinishHandlingCommand();
- bool InterruptCommand();
-
Debugger &m_debugger; // The debugger session that this interpreter is
// associated with
ExecutionContextRef m_exe_ctx_ref; // The current execution context to use
OpenPOWER on IntegriCloud