mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:48:11 +00:00
Kernel: Make Thread::m_block_timer a NonnullRefPtr
Every thread has a block timer, so let's encode that in the type.
This commit is contained in:
parent
226fe4b57d
commit
96909f5200
1 changed files with 1 additions and 1 deletions
|
@ -1371,7 +1371,7 @@ private:
|
|||
Atomic<bool> m_have_any_unmasked_pending_signals { false };
|
||||
Atomic<u32> m_nested_profiler_calls { 0 };
|
||||
|
||||
RefPtr<Timer> m_block_timer;
|
||||
NonnullRefPtr<Timer> m_block_timer;
|
||||
|
||||
bool m_is_profiling_suppressed { false };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue