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

Function syscall_fstatfs64

source/kernel/syscall.cpp:1434–1439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1432}
1433
1434static U32 syscall_fstatfs64(CPU* cpu, U32 eipCount) {
1435 SYS_LOG1(SYSCALL_FILE, cpu, "fstatfs64: fd=%d len=%d buf=%X", ARG1, ARG2, ARG3);
1436 U32 result = cpu->thread->process->fstatfs64(ARG1, ARG3);
1437 SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result);
1438 return result;
1439}
1440
1441static U32 syscall_tgkill(CPU* cpu, U32 eipCount) {
1442 SYS_LOG1(SYSCALL_SIGNAL, cpu, "tgkill: threadGroupId=%d threadId=%d signal=%d", ARG1, ARG2, ARG3);

Callers

nothing calls this directly

Calls 1

fstatfs64Method · 0.80

Tested by

no test coverage detected