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

Function syscall_timerfd_gettime

source/kernel/syscall.cpp:1609–1614  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1607}
1608
1609static U32 syscall_timerfd_gettime(CPU* cpu, U32 eipCount) {
1610 SYS_LOG1(SYSCALL_FILE, cpu, "timerfd_settime fd=%d value=%x", ARG1, ARG2);
1611 U32 result = cpu->thread->process->timerfd_gettime(ARG1, ARG2);
1612 SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result);
1613 return result;
1614}
1615
1616static U32 syscall_utimensat_time64(CPU* cpu, U32 eipCount) {
1617 BString path = cpu->memory->readString(ARG2);

Callers

nothing calls this directly

Calls 1

timerfd_gettimeMethod · 0.80

Tested by

no test coverage detected