1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

Kernel+LibELF: Store termination signal in coredump ProcessInfo

This commit is contained in:
Linus Groh 2021-01-03 21:46:38 +01:00 committed by Andreas Kling
parent b5437216e2
commit 0571a17f57
3 changed files with 4 additions and 0 deletions

View file

@ -51,6 +51,7 @@ struct [[gnu::packed]] NotesEntry {
struct [[gnu::packed]] ProcessInfo {
NotesEntryHeader header;
int pid;
u8 termination_signal;
char executable_path[]; // Null terminated
};