diff options
Diffstat (limited to 'Kernel/Syscall.cpp')
-rw-r--r-- | Kernel/Syscall.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/Syscall.cpp b/Kernel/Syscall.cpp index 3e38b66df8..1b2059a3dc 100644 --- a/Kernel/Syscall.cpp +++ b/Kernel/Syscall.cpp @@ -229,6 +229,8 @@ static dword handle(RegisterDump& regs, dword function, dword arg1, dword arg2, return current->sys$get_shared_buffer_size((int)arg1); case Syscall::SC_sendto: return current->sys$sendto((const SC_sendto_params*)arg1); + case Syscall::SC_recvfrom: + return current->sys$recvfrom((const SC_recvfrom_params*)arg1); default: kprintf("<%u> int0x82: Unknown function %u requested {%x, %x, %x}\n", current->pid(), function, arg1, arg2, arg3); break; |