Kernel: Add sigreturn() to "stdio" with all the other signal syscalls

This commit is contained in:
Andreas Kling 2020-01-12 10:32:56 +01:00
parent 7b53699e6f
commit a6cef2408c

View file

@ -1196,6 +1196,7 @@ void create_kernel_info_page()
int Process::sys$sigreturn(RegisterDump& registers)
{
REQUIRE_PROMISE(stdio);
SmapDisabler disabler;
//Here, we restore the state pushed by dispatch signal and asm_signal_trampoline.