Kernel: Make signals more POSIX
This commit is contained in:
@@ -212,7 +212,7 @@ namespace Kernel
|
||||
current.set_started();
|
||||
start_thread(current.rsp(), current.rip());
|
||||
case Thread::State::Executing:
|
||||
while (!current.m_signal_queue.empty())
|
||||
while (current.has_signal_to_execute())
|
||||
current.handle_next_signal();
|
||||
continue_thread(current.rsp(), current.rip());
|
||||
case Thread::State::Terminating:
|
||||
|
||||
Reference in New Issue
Block a user