1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:35:07 +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:
Drew Stratford 2019-09-06 22:50:12 +12:00 committed by Andreas Kling
parent dfb538a413
commit e529042895
4 changed files with 1 additions and 10 deletions

View file

@ -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()