mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
SystemMonitor: Unveil /usr/local/bin so symbolization works on ports
This commit is contained in:
parent
ed6d842f85
commit
27111cfc6c
1 changed files with 5 additions and 0 deletions
|
@ -139,6 +139,11 @@ int main(int argc, char** argv)
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (unveil("/usr/local/bin", "r") < 0) {
|
||||
perror("unveil");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (unveil("/bin/Profiler", "rx") < 0) {
|
||||
perror("unveil");
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue