mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:07:34 +00:00
Kernel: Stop using *LockRefPtr for Kernel::Timer
This commit is contained in:
parent
83b409083b
commit
496d918e92
9 changed files with 42 additions and 39 deletions
|
@ -1083,7 +1083,7 @@ public:
|
|||
#endif
|
||||
|
||||
private:
|
||||
Thread(NonnullRefPtr<Process>, NonnullOwnPtr<Memory::Region>, NonnullLockRefPtr<Timer>, NonnullOwnPtr<KString>);
|
||||
Thread(NonnullRefPtr<Process>, NonnullOwnPtr<Memory::Region>, NonnullRefPtr<Timer>, NonnullOwnPtr<KString>);
|
||||
|
||||
BlockResult block_impl(BlockTimeout const&, Blocker&);
|
||||
|
||||
|
@ -1235,7 +1235,7 @@ private:
|
|||
Atomic<bool> m_have_any_unmasked_pending_signals { false };
|
||||
Atomic<u32> m_nested_profiler_calls { 0 };
|
||||
|
||||
NonnullLockRefPtr<Timer> m_block_timer;
|
||||
NonnullRefPtr<Timer> const m_block_timer;
|
||||
|
||||
bool m_is_profiling_suppressed { false };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue