MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / syscall_recvmsg

Function syscall_recvmsg

source/kernel/syscall.cpp:1788–1793  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1786}
1787
1788U32 syscall_recvmsg(CPU* cpu, U32 eipCount) {
1789 SYS_LOG1(SYSCALL_SOCKET, cpu, "recvmsg socket=%d message=%X flags=%X", ARG1, ARG2, ARG3);
1790 U32 result = krecvmsg(cpu->thread, ARG1, ARG2, ARG3);
1791 SYS_LOG(SYSCALL_SOCKET, cpu, " result=%d(0x%X)\n", result, result);
1792 return result;
1793}
1794
1795U32 syscall_shutdown(CPU* cpu, U32 eipCount) {
1796 SYS_LOG1(SYSCALL_SOCKET, cpu, "shutdown socket=%d how=%d", ARG1, ARG2);

Callers

nothing calls this directly

Calls 1

krecvmsgFunction · 0.85

Tested by

no test coverage detected