mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 22:38:51 +00:00
Kernel: Expose region executable bit in /proc/PID/vm
Also show it in SystemMonitor's process memory map table (as 'X') :^)
This commit is contained in:
parent
ae2d72377d
commit
c5c1cc817e
Notes:
sideshowbarker
2024-07-19 10:47:03 +09:00
Author: https://github.com/awesomekling
Commit: c5c1cc817e
2 changed files with 3 additions and 0 deletions
|
@ -26,6 +26,8 @@ ProcessMemoryMapWidget::ProcessMemoryMapWidget(GWidget* parent)
|
|||
builder.append('R');
|
||||
if (object.get("writable").to_bool())
|
||||
builder.append('W');
|
||||
if (object.get("executable").to_bool())
|
||||
builder.append('X');
|
||||
if (object.get("shared").to_bool())
|
||||
builder.append('S');
|
||||
if (object.get("stack").to_bool())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue