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

Function syscall_fstat64

source/kernel/syscall.cpp:1009–1014  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1007}
1008
1009static U32 syscall_fstat64(CPU* cpu, U32 eipCount) {
1010 SYS_LOG1(SYSCALL_FILE, cpu, "fstat64: fildes=%d buf=%X", ARG1, ARG2);
1011 U32 result = cpu->thread->process->fstat64(ARG1, ARG2);
1012 SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result);
1013 return result;
1014}
1015
1016static U32 syscall_lchown32(CPU* cpu, U32 eipCount) {
1017 BString path = cpu->memory->readString(ARG1);

Callers

nothing calls this directly

Calls 1

fstat64Method · 0.80

Tested by

no test coverage detected