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

Function syscall_exit_group

source/kernel/syscall.cpp:1362–1367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1360}
1361
1362static U32 syscall_exit_group(CPU* cpu, U32 eipCount) {
1363 SYS_LOG1(SYSCALL_SYSTEM, cpu, "exit_group: code=%d", ARG1);
1364 U32 result = cpu->thread->process->exitgroup(cpu->thread, ARG1);
1365 SYS_LOG(SYSCALL_SYSTEM, cpu, " result=%d(0x%X)\n", result, result);
1366 return result;
1367}
1368
1369static U32 syscall_epoll_create(CPU* cpu, U32 eipCount) {
1370 SYS_LOG1(SYSCALL_PROCESS, cpu, "epoll_create: size=%d", ARG1);

Callers

nothing calls this directly

Calls 1

exitgroupMethod · 0.80

Tested by

no test coverage detected