1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:17:44 +00:00

LibCoredump: Add Coredump::Inspector

The coredump Inspector implements the ProcessInspector interface for
a coredump. It is implemented using Coredump::Reader.
This commit is contained in:
Itamar 2021-11-20 12:31:48 +02:00 committed by Linus Groh
parent ac762fbbc3
commit 1c0a7cde63
5 changed files with 125 additions and 2 deletions

View file

@ -15,7 +15,7 @@
namespace Coredump {
OwnPtr<Reader> Reader::create(const String& path)
OwnPtr<Reader> Reader::create(StringView path)
{
auto file_or_error = MappedFile::map(path);
if (file_or_error.is_error())