mirror of
https://github.com/RGBCube/serenity
synced 2025-05-29 17:15:11 +00:00
Kernel: Remove unused variable Thread::m_userspace_stack_region
This commit is contained in:
parent
c21f384d17
commit
e23f05a157
2 changed files with 0 additions and 4 deletions
|
@ -126,9 +126,6 @@ Thread::~Thread()
|
||||||
if (selector())
|
if (selector())
|
||||||
gdt_free_entry(selector());
|
gdt_free_entry(selector());
|
||||||
|
|
||||||
if (m_userspace_stack_region)
|
|
||||||
m_process.deallocate_region(*m_userspace_stack_region);
|
|
||||||
|
|
||||||
ASSERT(m_process.m_thread_count);
|
ASSERT(m_process.m_thread_count);
|
||||||
m_process.m_thread_count--;
|
m_process.m_thread_count--;
|
||||||
}
|
}
|
||||||
|
|
|
@ -424,7 +424,6 @@ private:
|
||||||
u32 m_signal_mask { 0 };
|
u32 m_signal_mask { 0 };
|
||||||
u32 m_kernel_stack_base { 0 };
|
u32 m_kernel_stack_base { 0 };
|
||||||
u32 m_kernel_stack_top { 0 };
|
u32 m_kernel_stack_top { 0 };
|
||||||
Region* m_userspace_stack_region { nullptr };
|
|
||||||
OwnPtr<Region> m_kernel_stack_region;
|
OwnPtr<Region> m_kernel_stack_region;
|
||||||
VirtualAddress m_thread_specific_data;
|
VirtualAddress m_thread_specific_data;
|
||||||
SignalActionData m_signal_action_data[32];
|
SignalActionData m_signal_action_data[32];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue