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

Function syscall_timerfd_settime

source/kernel/syscall.cpp:1602–1607  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1600}
1601
1602static U32 syscall_timerfd_settime(CPU* cpu, U32 eipCount) {
1603 SYS_LOG1(SYSCALL_FILE, cpu, "timerfd_settime fd=%d flags=%X newValue=%X oldValue=%x", ARG1, ARG2, ARG3, ARG4);
1604 U32 result = cpu->thread->process->timerfd_settime(ARG1, ARG2, ARG3, ARG4);
1605 SYS_LOG(SYSCALL_FILE, cpu, " result=%d(0x%X)\n", result, result);
1606 return result;
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);

Callers

nothing calls this directly

Calls 1

timerfd_settimeMethod · 0.80

Tested by

no test coverage detected