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:
parent
dfb538a413
commit
e529042895
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