[Lldb-commits] [PATCH] D150158: Add optional to debugserver's "tell me about all binaries in the process" packet, to limit it to just load addresses and names
Alex Langford via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon May 8 18:45:56 PDT 2023
bulbazord accepted this revision.
bulbazord added a comment.
This revision is now accepted and ready to land.
I have no problem with removing mod_date since you're only removing the requirement in the Darwin-specific code. Also, be sure to remove the portion of the commit message that says this introduces a regression since you've fixed the test now. It would be confusing for future code archeologists.
LGTM!
================
Comment at: lldb/tools/debugserver/source/MacOSX/MachProcess.mm:1141
}
- return FormatDynamicLibrariesIntoJSON(image_infos);
+ return FormatDynamicLibrariesIntoJSON(image_infos, true);
}
----------------
nit: Could you add a comment specifying what the bool argument is for?
```
return FormatDynamicLibrariesIntoJSON(image_infos, /* report_load_commands = */ true);
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D150158/new/
https://reviews.llvm.org/D150158
More information about the lldb-commits
mailing list