Fix the signal dispatch handler is callable from user-space.

This commit is contained in:
Jonas 'Sortie' Termansen 2017-04-12 22:01:34 +02:00
parent 10453f0269
commit 86ac3d3725
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ void Init()
RegisterRawHandler(47, irq15, false, false);
RegisterRawHandler(128, syscall_handler, true, true);
RegisterRawHandler(129, yield_cpu_handler, true, false);
RegisterRawHandler(130, isr130, true, true);
RegisterRawHandler(130, isr130, false, true);
RegisterRawHandler(131, isr131, true, true);
RegisterRawHandler(132, thread_exit_handler, true, false);