1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:58:14 +00:00

Kernel: Move process thread lists into protected data

This commit is contained in:
Andreas Kling 2021-03-11 14:12:55 +01:00
parent 1b2ea12062
commit 4916b5c130
4 changed files with 22 additions and 4 deletions

View file

@ -86,6 +86,7 @@ class Thread
AK_MAKE_NONMOVABLE(Thread);
friend class Process;
friend class ProtectedProcessBase;
friend class Scheduler;
friend class ThreadReadyQueue;