[Lldb-commits] [lldb] [LLDB] Add SBProgress so Python scripts can also report progress (PR #119052)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 9 08:50:58 PST 2024
================
@@ -0,0 +1,34 @@
+//===-- SBProgress.cpp -------------------------------------------*- C++
+//-*-===//
+//
+// 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/API/SBProgress.h"
+#include "lldb/Core/Progress.h"
+#include "lldb/Utility/Instrumentation.h"
+
+using namespace lldb;
+
+SBProgress::SBProgress(const char *title, const char *details,
+ SBDebugger &debugger) {
+ LLDB_INSTRUMENT_VA(this, title, details, debugger)
----------------
JDevlieghere wrote:
Nit: There should be a newline after `LLDB_INSTRUMENT_VA`. Same below. Also looks like the destructor hasn't been implemented, which needs to be instrumented as well.
https://github.com/llvm/llvm-project/pull/119052
More information about the lldb-commits
mailing list