1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:38:11 +00:00

pmap+SystemMonitor: Mark syscall regions with 'C'

This commit is contained in:
Andreas Kling 2021-02-02 19:58:46 +01:00
parent 823186031d
commit 47d0ca85e8
2 changed files with 7 additions and 4 deletions

View file

@ -89,6 +89,8 @@ ProcessMemoryMapWidget::ProcessMemoryMapWidget()
builder.append('X');
if (object.get("shared").to_bool())
builder.append('S');
if (object.get("syscall").to_bool())
builder.append('C');
if (object.get("stack").to_bool())
builder.append('T');
return builder.to_string();