mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
Kernel: Remove reduntant kernel/user signal stacks.
Due to the changes in signal handling m_kernel_stack_for_signal_handler_region and m_signal_stack_user_region are no longer necessary, and so, have been removed. I've also removed the similarly reduntant m_tss_to_resume_kernel.
This commit is contained in:
parent
dfb538a413
commit
e529042895
Notes:
sideshowbarker
2024-07-19 12:10:56 +09:00
Author: https://github.com/DrewStratford
Commit: e529042895
Pull-request: https://github.com/SerenityOS/serenity/pull/535
4 changed files with 1 additions and 10 deletions
|
@ -124,9 +124,6 @@ Thread::~Thread()
|
|||
|
||||
if (m_kernel_stack_region)
|
||||
m_process.deallocate_region(*m_kernel_stack_region);
|
||||
|
||||
if (m_kernel_stack_for_signal_handler_region)
|
||||
m_process.deallocate_region(*m_kernel_stack_for_signal_handler_region);
|
||||
}
|
||||
|
||||
void Thread::unblock()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue