1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

Kernel: Remove unused Process::in_group()

This commit is contained in:
Anthony Iacono 2022-08-22 15:54:59 -04:00 committed by Andreas Kling
parent 434d77cd43
commit ec3d8a7a18
2 changed files with 0 additions and 8 deletions

View file

@ -84,12 +84,6 @@ UNMAP_AFTER_INIT void Process::initialize()
create_signal_trampoline(); create_signal_trampoline();
} }
bool Process::in_group(GroupID gid) const
{
auto credentials = this->credentials();
return credentials->gid() == gid || credentials->extra_gids().contains_slow(gid);
}
void Process::kill_threads_except_self() void Process::kill_threads_except_self()
{ {
InterruptDisabler disabler; InterruptDisabler disabler;

View file

@ -246,8 +246,6 @@ public:
return with_protected_data([](auto& protected_data) { return protected_data.umask; }); return with_protected_data([](auto& protected_data) { return protected_data.umask; });
} }
bool in_group(GroupID) const;
// Breakable iteration functions // Breakable iteration functions
template<IteratorFunction<Process&> Callback> template<IteratorFunction<Process&> Callback>
static void for_each(Callback); static void for_each(Callback);