mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-11 18:50:50 +00:00
Kernel: Make Thread::m_kernel_stack_region a NonnullOwnPtr
This OwnPtr is always non-null, so let's enforce it statically.
This commit is contained in:
parent
fd90e10600
commit
91b80da4b4
Notes:
sideshowbarker
2024-07-17 21:41:54 +09:00
Author: https://github.com/IdanHo
Commit: 91b80da4b4
Pull-request: https://github.com/SerenityOS/serenity/pull/11613
1 changed files with 1 additions and 1 deletions
|
@ -1339,7 +1339,7 @@ private:
|
|||
SignalBlockerSet m_signal_blocker_set;
|
||||
FlatPtr m_kernel_stack_base { 0 };
|
||||
FlatPtr m_kernel_stack_top { 0 };
|
||||
OwnPtr<Memory::Region> m_kernel_stack_region;
|
||||
NonnullOwnPtr<Memory::Region> m_kernel_stack_region;
|
||||
VirtualAddress m_thread_specific_data;
|
||||
Optional<Memory::VirtualRange> m_thread_specific_range;
|
||||
Array<SignalActionData, NSIG> m_signal_action_data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue