[Lldb-commits] [lldb] [lldb] Do not bump memory modificator ID when "internal" debugger memory is updated (PR #129092)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 11 09:50:12 PDT 2025
================
@@ -1827,6 +1827,33 @@ class CommandObjectMultiwordProcessTrace : public CommandObjectMultiword {
~CommandObjectMultiwordProcessTrace() override = default;
};
+// CommandObjectProcessDumpModificationId
+class CommandObjectProcessDumpModificationId : public CommandObjectParsed {
+public:
+ CommandObjectProcessDumpModificationId(CommandInterpreter &interpreter)
+ : CommandObjectParsed(interpreter, "process dump-modification-id",
----------------
jimingham wrote:
I don't think it's a good idea to clutter up the lldb command interface with debugging specific commands. Maybe you could do this by adding a `-d` flag to `process status` that dumps this info?
https://github.com/llvm/llvm-project/pull/129092
More information about the lldb-commits
mailing list