Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-26 | Everywhere: Remove a bunch of redundant 'AK::' namespace prefixes | Linus Groh | |
This is basically just for consistency, it's quite strange to see multiple AK container types next to each other, some with and some without the namespace prefix - we're 'using AK::Foo;' a lot and should leverage that. :^) | |||
2020-12-26 | Kernel: Allow 'elevating' unveil permissions if implicitly inherited from '/' | AnotherTest | |
This can happen when an unveil follows another with a path that is a sub-path of the other one: ```c++ unveil("/home/anon/.config/whoa.ini", "rw"); unveil("/home/anon", "r"); // this would fail, as "/home/anon" inherits // the permissions of "/", which is None. ``` | |||
2020-12-26 | Kernel: Implement unveil() as a prefix-tree | AnotherTest | |
Fixes #4530. |