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

Function syscall_fchdir

source/kernel/syscall.cpp:741–746  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

739}
740
741static U32 syscall_fchdir(CPU* cpu, U32 eipCount) {
742 SYS_LOG1(SYSCALL_PROCESS, cpu, "fchdir: fd=%d", ARG1);
743 U32 result = cpu->thread->process->fchdir(ARG1);
744 SYS_LOG(SYSCALL_PROCESS, cpu, " result=%d(0x%X)\n", result, result);
745 return result;
746}
747
748static U32 syscall_llseek(CPU* cpu, U32 eipCount) {
749 SYS_LOG1(SYSCALL_FILE, cpu, "llseek: fildes=%d offset=%.8X%.8X pResult=%X whence=%d", ARG1, ARG2, ARG3, ARG4, ARG5);

Callers

nothing calls this directly

Calls 1

fchdirMethod · 0.80

Tested by

no test coverage detected