[Lldb-commits] [lldb] [lldb] Implement a statusline in LLDB (PR #121860)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 22 22:34:15 PST 2025
================
@@ -0,0 +1,165 @@
+//===-- Statusline.cpp ---------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "lldb/Core/Statusline.h"
+#include "lldb/Core/Debugger.h"
+#include "lldb/Core/FormatEntity.h"
+#include "lldb/Host/ThreadLauncher.h"
+#include "lldb/Interpreter/CommandInterpreter.h"
+#include "lldb/Symbol/SymbolContext.h"
+#include "lldb/Target/StackFrame.h"
+#include "lldb/Utility/AnsiTerminal.h"
+#include "lldb/Utility/LLDBLog.h"
+#include "lldb/Utility/Log.h"
+#include "lldb/Utility/StreamString.h"
+#include "llvm/Support/Locale.h"
+
+#include <sys/ioctl.h>
+#include <termios.h>
----------------
JDevlieghere wrote:
I removed the corresponding code so this isn't necessary any longer.
https://github.com/llvm/llvm-project/pull/121860
More information about the lldb-commits
mailing list