mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 22:17:42 +00:00
Refactor: Replace usages of FixedArray with Vector.
This commit is contained in:
parent
9c83d6ff46
commit
ec1080b18a
9 changed files with 27 additions and 23 deletions
|
@ -142,7 +142,7 @@ NonnullRefPtrVector<Process> Process::all_processes()
|
|||
|
||||
bool Process::in_group(gid_t gid) const
|
||||
{
|
||||
return m_gid == gid || m_extra_gids.contains(gid);
|
||||
return m_gid == gid || m_extra_gids.contains_slow(gid);
|
||||
}
|
||||
|
||||
Range Process::allocate_range(VirtualAddress vaddr, size_t size, size_t alignment)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue